2016-01-01から1ヶ月間の記事一覧

CakePHPで検索条件の引き継ぎ

検索条件の引き継ぎでハマったのでメモ。 1. Searchプラグインの導入 public $components = array('Search.Prg'); 2. 検索処理の作成 public function search() { $this->Prg->commonProcess(); $this->Paginator->settings['conditions'] = $this->Post->pa…

nginxでBasic認証

nginxでBasic認証をかける時のメモ 1. Basic認証用のユーザー・パスワードを設定 # yum install httpd-tools # cd /etc/nginx/ # htpasswd -c .htpasswd username New password: Re-type new password: 2. Basic認証を有効化 /etc/nginx/conf.d/app.conf ser…