#cakephp4
Explore tagged Tumblr posts
Photo
CakePHP
Are you looking for CakePHP 4.x course article ? If yes, this article will surely help you to get the exact what you want. - Online Web Tutor
Click here to go to Article
1 note
·
View note
Photo
Fresa Hiring Full-Stack Developer
Job Title:
Full-Stack Developer
Job Description:
We are hiring experienced professionals for the Full-Stack Developer role.
Job Summary:
- Sound hands-on experience on PHP: 7.4 - Strong core knowledge on anyone of the Frameworks CakePHP4 & Codeigniter3 (If having both the skillsets are an added advantage) - Should have excellent working experience on the MySQL database. - Posses outstanding knowledge and handling of LAMP Server. - Flexible to learn associated technologies.
Required Skillsets:
- Must have UG / PG degree in IT / CS / related to the field. - Welcoming applications only from experienced professionals. - Minimum 3+ years experience as Full Stack Developers. - Immediate Joiner only.
Job Type: Full-time, Regular / Permanent
Salary will be based on your experience and skillsets according to the said requirements.
Send your resumes to [email protected]
#fresa #freightsolutions #freightforwarding #FullStackDeveloper #jobs #bestfreightforwardingsoftware #softwaredeveloper #Developerjobs #freightforwardingsoftware #freightforwarders #hiring #freightmanagement #freightservices #PHP #MySQL #LAMP #freightbroker #freightliner #Frameworks
3 notes
·
View notes
Text
DigitalOceanでCakePHP4を動かす
DigitalOcean で CakePHP4をセットアップするまでの流れをMEMOしておきます。DigitalOceanの「Apps」でやる流れです。LaravelなどはSample…
View On WordPress
0 notes
Photo

@phpc : RT @cakephp: Happy holidays to those celebrating or taking some time off as we start to close off the year! There are some big plans for 2019! #CakeFest #Japan #CakePHP4 #CakePHP #oss #php #phpc #happyholidays https://t.co/f966IxvXoL
0 notes
Text
CakePHP4について語ろう! 第7回CakePHP MeetUp
[情報元:connpass] http://dlvr.it/Q2CNtj #セミナー募集中 http://yts.jp/seminar/
0 notes
Photo

Fresa Hiring Full-Stack Developer
Job Title:
Full-Stack Developer
Job Description:
We are hiring experienced professionals for the Full-Stack Developer role.
Job Summary:
- Sound hands-on experience on PHP: 7.4 - Strong core knowledge on anyone of the Frameworks CakePHP4 & Codeigniter3 (If having both the skillsets are an added advantage) - Should have excellent working experience on the MySQL database. - Posses outstanding knowledge and handling of LAMP Server. - Flexible to learn associated technologies.
Required Skillsets:
- Must have UG / PG degree in IT / CS / related to the field. - Welcoming applications only from experienced professionals. - Minimum of 2+ years experience as a Full Stack Developer. - Immediate Joiner only.
Job Type: Full-time, Regular / Permanent
Salary will be based on your experience and skillsets according to the said requirements.
To reach out - +91 93449 03406
#fresa #freightsolutions #freightforwarding #FullStackDeveloper #jobs #bestfreightforwardingsoftware #softwaredeveloper #Developerjobs #freightforwardingsoftware #freightforwarders #hiring #freightmanagement #freightservices #PHP #MySQL #LAMP #freightbroker #freightliner #Frameworks
0 notes
Text
2022年 あけましておめでとうございます
昨年後半でガラッとphpにフォーカスしたことで���CakePhp4とLaravel8は今年前半もガッツリやっていこうと思っています。ZBrush等 3D系の研究はしばらく休止するものの今年後半は、アナログな絵画と3D系の融合をやっていこうと思います。 本年もどうぞ虫カゴをよろしくお願いいたします。

View On WordPress
0 notes
Text
CakePHP4でTailwindCSSを使う
CakePHP4のプロジェクトでTailwindCSS(バージョン2.2.17)をセットアップしたときのMEMOです。TailwindCSSは、すでに3がリリースされているようですが、3だとpurgeあたりがうまく動いてないっぽいので、その辺は何かわかったらまたMEMOします。 composer self-update && composer create-project --prefer-dist cakephp/app:4.2 CakeTailwindCSS cd CakeTailwindCSS CakePhpのルート mkdir TailwindCSS && cd TailwindCSS TailwindCSSの作業フォルダ作成 npm init -y でpackage.jsonを作成。 npm install -D [email protected]…
View On WordPress
0 notes
Text
CakePHP4のroutesでsetPass
CakePHP4のroutes設定時に第一引数、第二引数として「/」 で区切った文字列を渡したい場合、なんかsetPassとか使わう必要があったのでMEMO。 例:SomeControllerのsomeMethodに対してparam1とparam2の引数を渡したい場合、config/routes.phpで setPassで渡してあげる必要がありました。 $builder ->connect('/tokenLogin/{param1}/{param2}', ['controller' => 'Some', 'action' => 'someMethod']) ->setPass(['param1','param2']); 受け取り側(SomeController.php) public function someMethod($a = '', $b = ''){ dd(['This is…
View On WordPress
0 notes
Text
CakePHP4 のMigrationとSeeding
CakePHP4でのMigrationとSeedingのMEMOです。最初からつくる方法とある程度MySQLで構造やデータを作ってからそれを元につくる方法とがあります。 まず、config/app_local.php にてデータベース接続できるようにしておきます。コマンドを実行する際、この接続先に対して実行されます。ここでは後者の方法を前提にMEMOしておきます。 Migration : 既存のテーブルを元に作る場合 bin/cake bake migration_snapshot Initial 「Initial」部分は任意の名称かな。上記コマンドを実行するとconfig/Migrations に {タイムスタンプ}_Initial.php が作成されます。このマイグレーションファイルは、その時点での全てのテーブルの構造を読み取って作成してくれます。 Seeding :…
View On WordPress
0 notes
Text
CakePHP4 で JSON形式で出力
CakePHP4 の AppController でJSON形式で出力する _renderJson というメソッドを定義 class AppController extends Controller { (略) protected function _renderJson( $inOutput , $force = false) { // JSON で出力 $this->set('output', $inOutput); $this->viewBuilder() ->setClassName('Json') ->setOption('serialize', ['output']); if($force){ $this->viewBuilder()->setOption('jsonOptions', JSON_FORCE_OBJECT); } } } 呼び出しは $students…
View On WordPress
0 notes
Text
CakePHP4 瞬間MEMO
後で読み返しても、これなんだっけ?となるような書き方の可能性ありますが、CakePHP4を弄ってみて、ざっとメモを残したものを羅列しておきます。 Oven composerを使ってインストールするのが基本だが、ovenというブラウザでセットアップする方法もある https://github.com/CakeDC/oven localhost…

View On WordPress
0 notes
Text
Laravel8 のセットアップからlocalhostでのMySQLへのデータベース接続まで
Mac環境でLaravel8のプロジェクトをセットアップし、MySQLに新規ユーザー��作成して、データベース接続するところまでのMEMOです。(CakePHP4でほぼほぼ同様のMEMOがありますのでご参考に) Laravel8をセットアップしローカル環境で立ち上げる ターミナルを立ち上げてからcomposerでセットアップします。composerのセットアップまでは、ここでは省略しています。 ターミナルを立ち上げる。 cd {セットアップしたいところまでのパス} composer create-project laravel/laravel {プロジェクト名} "8.*" cd {プロジェクト名} php artisan -V Laravel Framework 8.65.0 php artisan serve…
View On WordPress
0 notes
Text
cakephp/cakephp[4.2.0, ..., 4.2.10] require ext-intl
cakephp/cakephp[4.2.0, …, 4.2.10] require ext-intl
CakePhp4をセットアップ中 Your requirements could not be resolved to an installable set of packages. Problem 1– cakephp/cakephp[4.2.0, …, 4.2.10] require ext-intl * -> it is missing from your system. Install or enable PHP’s intl と出たら、 php.ini で extension=intl を有効にしてintlを追加するとインストールが完了できるようになります。
View On WordPress
0 notes
Text
Dokuwiki でサイドバーにインデックスメニューを表示するまで
Dokuwiki を使ってプラグイン「indexmenu」をインストールし、サイドバーに全体の構成を表示するまで Dokuwiki のサイトからダウンロード。 ※ ダウンロードする際、Janguagesを日本語だけにし、左下の「start download」をクリック。 解凍したフォルダを例えば、「CakePHP4 のセットアップからlocalhostでのMySQLへのデータベース接続まで」でセットアップしたwebrootに移動し、フォルダ名を例えば「doc」とする。 初期セットアップのために http://localhost:8765/doc/install.php へアクセスする。 スーパーユーザーを作成してログイン。 管理>検索とインストールで「indexmenu」���入れて 作者Samuele Togniniの IndexMenu Plugin をインストール URLに…
View On WordPress
0 notes
Text
CakePHP4 のセットアップからlocalhostでのMySQLへのデータベース接続まで
Mac環境でCakePHP4のシンプルなアプリケーション(スケルトン)をセットアップし、MySQLをインストールしてデータベース接続するところまでのMEMOです。 CakePHP4をセットアップしローカル環境で立ち上げる ターミナルを立ち上げてからcomposerでセットアップします。composerのセットアップまでは省略しています。 ターミナルを立ち上げる。 cd {セットアップしたいところまでのパス} composer self-update && composer create-project --prefer-dist cakephp/app:4.2 {プロジェクト名} ※ 「4.2」部分は「*」とか「4.2.10」とか「4.2.*」とかだとエラーになりました。 cd {プロジェクト名} bin/cake server -p 8765…
View On WordPress
0 notes