http://stackoverflow.com/questions/42281405/mamp-phpmyadmin-is-not-active#42287871
MAMP shows only two versions of PHPPHP7系が2つ表示されていたので、/Applications/MAMP/bin/php/ 内のフォルダを整理して(どうも降順で選択されるぽい)、無事php5系が表示されました。
正解に辿りつくのにめちゃくちゃ時間がかかった…
http://stackoverflow.com/questions/42281405/mamp-phpmyadmin-is-not-active#42287871
MAMP shows only two versions of PHPPHP7系が2つ表示されていたので、/Applications/MAMP/bin/php/ 内のフォルダを整理して(どうも降順で選択されるぽい)、無事php5系が表示されました。
'userModel' => 'AppUser',該当ブロックは以下の様になります。
public $components = array( 'Session', 'Flash', 'Acl', 'Auth' => array( 'loginAction' => array( 'controller' => 'app_users', 'action' => 'login', 'plugin' => false ), 'loginRedirect' => array( 'controller' => 'posts', 'action' => 'index' ), 'logoutRedirect' => array( 'controller' => 'pages', 'action' => 'display', 'home' ), 'flash' => array( 'element' => 'alert', 'key' => 'auth', 'params' => array( 'plugin' => 'BoostCake', 'class' => 'alert-error' ) ), 'authorize' => array( 'Actions' => array( 'actionPath' => 'controllers', 'userModel' => 'AppUser', ), ), //'authError' => 'Did you really think you are allowed to see that?', 'authenticate' => array( 'Form' => array( 'passwordHasher' => 'Blowfish', 'userModel' => 'AppUser', 'fields' => array( 'username' => 'username', //Default is 'username' in the userModel 'password' => 'password' //Default is 'password' in the userModel ), ), ), ), 'DebugKit.Toolbar' );'userModel' => 'AppUser',
public $components = array( 'Session', 'Flash', 'Acl', 'Auth' => array( 'loginAction' => array( 'controller' => 'app_users', 'action' => 'login', 'plugin' => false ), 'loginRedirect' => array( 'controller' => 'posts', 'action' => 'index' ), 'logoutRedirect' => array( 'controller' => 'pages', 'action' => 'display', 'home' ), 'flash' => array( 'element' => 'alert', 'key' => 'auth', 'params' => array( 'plugin' => 'BoostCake', 'class' => 'alert-error' ) ), 'authorize' => array( 'Actions' => array( 'actionPath' => 'controllers', 'userModel' => 'AppUser', ), ), //'authError' => 'Did you really think you are allowed to see that?', 'authenticate' => array( 'Form' => array( 'passwordHasher' => 'Blowfish', 'userModel' => 'AppUser', 'fields' => array( 'username' => 'username', //Default is 'username' in the userModel 'password' => 'password' //Default is 'password' in the userModel ), ), ), ), 'DebugKit.Toolbar' );
'userModel' => 'AppUser',at your settings for Auth Component Section in AppController.php.
public $components = array( 'Session', 'Flash', 'Acl', 'Auth' => array( 'loginAction' => array( 'controller' => 'app_users', 'action' => 'login', 'plugin' => false ), 'loginRedirect' => array( 'controller' => 'posts', 'action' => 'index' ), 'logoutRedirect' => array( 'controller' => 'pages', 'action' => 'display', 'home' ), 'flash' => array( 'element' => 'alert', 'key' => 'auth', 'params' => array( 'plugin' => 'BoostCake', 'class' => 'alert-error' ) ), 'authorize' => array( 'Actions' => array( 'actionPath' => 'controllers', 'userModel' => 'AppUser', ), ), //'authError' => 'Did you really think you are allowed to see that?', 'authenticate' => array( 'Form' => array( 'passwordHasher' => 'Blowfish', 'userModel' => 'AppUser', 'fields' => array( 'username' => 'username', //Default is 'username' in the userModel 'password' => 'password' //Default is 'password' in the userModel ), ), ), ), 'DebugKit.Toolbar' );
参照元:から説明を抜粋。
http://stackoverflow.com/questions/980556/can-i-use-one-model-inside-of-a-different-model-in-cakephp
App::import() ファイルを見つけてインポートします(それだけしかしません)。クラスを使用するにはインスタンスを作製する必要があります。 ClassRegistry::init() ファイルをロードして、インスタンスを作製します。何かをロードするにはimportよりもベターです。なぜならCakePHPが通常呼び出しの際に内部で行う手続きも実行されるからです。またクラスネームにエイリアスをつけることができます。便利です。 Controller::loadModel() 前述の ClassRegistry::init() を使用してモデルをロードします。$persistModel を使用したキャッシングにも対応します(する予定です?)。コントローラ内部でのみ動作します。
(追記7/7)やっぱりだめっぽい。以下のやりかたが良いようです。Controller::loadModel('AnotherModel'); $data = $this->AnotherModel->read(null, $id);
$anotherModel = ClassRegistry::init('AnotherModel'); data = $anotherModel->read(null, $id);
BUFFALOの無線LANルーター(WHR-G301N等)でブリッジ接続を設定するときの手順この記述が救いでした。 有線で中継器に192.168.11.100にアクセスして無事に設定ができました。
http://wp2.trojanbear.net/1286.html
"今回の設定で一番厄介なのは、BUFFALOの無線LANルーターのディップスイッチをOFFにすると(筆者註:ブリッジモードにする時も)問答無用で無線LANルーターのIPアドレスが192.168.11.100 になってしまう事です。"