0
1

More than 5 years have passed since last update.

CodeIgniterメモ

Last updated at Posted at 2016-03-19

OracleのQuery発行問題
CodeIgniterのoci8のDBドライバは、テーブル名やカラム名にダブルクォートで囲む。
DB_driver.phpの
$_escape_char='"'

$_escape_char=''に直す。

index.phpをなくす
httpd.confのmodule_rewriteをアンコメント
htdocsの下に.htaccessを作成
httpd.confのAllowOverride Allを設定

logが出力されないのはapplication/logフォルダの権限の問題

CodeIgniterには開発中に便利なデバッグ機能として
出力クラスに「アプリケーションのプロファイリング」結果を出力する機能があります。
やり方はcontrollerクラス内に下記の一文を追記するだけ。
$this->output->enable_profiler(TRUE);

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1