私はxamppで開発およびテストされたこのcodeigniterプロジェクトを持っていますが、顧客がxamppを使用した場合、彼のラップトップでは機能しませんでした。そのため、彼はappservをダウンロードし、xamppの代わりにそれを使用したいと考えています。システムは正常に表示されますが、彼はログインしません。codeigniterプロジェクトのdatabase.phpファイルにあるデータベースを変更し、httpd.confの役割を書き換える前にコメントを削除しましたが、それでも機能しません。
質問する
1126 次
2 に答える
0
set the CI environment to development in your index.php and error_reporting to E_ALL and see what's going wrong. If it's the database, or sessions, browser may have not accepting cookies etc.
Ok, you have probably a base path issue. check $config["base_path"] in application/config/config.php and set it to the directory name relative to web server root.
Like XAMMP has usually
c:\xampp\htdocs\
and the project url might be
c:\xampp\htdocs\projects\project_a
then your base_path would be
$config["base_path"] = "procjects\project_a";
于 2012-05-17T00:50:39.720 に答える