cakephp のクラスの定義とか 個人的なメモに近いですが cakephp3.xx でコントーラーやらなんやらを作る際 名前空間や extends はそれにあったのを使う。 <?php namespace App\Shell; # src/Shel… muramatsuハック2017.10.13 458
Namespace declaration statement has to be the very first statement in the script in hogehoge のエラー Namespace declaration statement has to be the very first statement in the script in hogehoge Fatal error で上記のよ… muramatsuハック2017.10.06 979
cakephp で使うデータベースを設定する。 作ったプロジェクトの中に config ディレクトリがあるのでその中の app.conf を vim かなんかで書き換える datasource みたいな 階層(?) があるのでそこを基本的に書き換える ‘Datasou… muramatsuハック2017.09.28 3,534
cakephp 3.x を Amazon linux に入れる。 手順 yum install -y httpd24 php56 mysql56-server php56-mcrypt php56-intl php56-mbstring php56-mysqlnd php56-opca… muramatsuハック2017.09.21 487
centos6 で New Relic for ruby on rails を入れる。 基本はNew Relic のブラウザから APM を選択して ruby を選択してそれに従う #rails で hello という新しいプロジェクト作成 rails new hello プロジェクト内の Gemfile … muramatsuハック2017.09.14 238
centos6 で 任意のバージョンの ruby と rails を入れる。 gem か rbenv でインストールするのがベストかもしれないです。 環境 OS centos6 手順 #必要なものを yum install yum install vim git zlib zlib-devel o… muramatsuハック2017.09.14 1,756
Apache の Alias を設定する リクエストが有った URL を自動的に他の場所に移す Alias (リダイレクト と雰囲気は似てると思われます) それの設定 vim /etc/conf/httpd.conf DocumentRoot /var/www/… muramatsuハック2017.09.12 10,224
SSL 証明書情報 閲覧ソフト #https://www.owasp.org/index.php/O-Saft から Quick Download の欄の Stable Release の最新バージョンのリンクから wget でサーバーに引っ張ってくる… muramatsuハック2017.09.07 268
linux のコマンドの標準出力待ちを /dev/null で回避 /dev/null で出力エラーなどを捨てられる (apache みたいに表示する出力を何段階とかに調整できる場合も多々ですが) openssl などで接続だけする場合 標準入力待ちになってスクリプトに組み込む場合に o… muramatsuハック2017.09.07 1,714