I built a tiny application for a client using cakephp on my local machine running xampp over windows [in a folder "cake" inside htdocs]. Today i created a new folder on my client's live server named "cake" and uploaded the contents of "cake" folder on local machine to "cake" folder on live server for testing. I fired up my app using url: http://kianaretail.com/cake and I got an internal server error 500.
I went through several people suggesting addition of RewriteBase to .htaccess files in root, app and webroot folders pointing to the location. In my case it was "RewriteBase /cake" in root, "RewriteBase /cake/app" in app and "RewriteBase /cake/app/webroot" in webroot. But it did not work still. The problem still persists.
The same application runs fine on my local machine. Just messes up on live server.
Please help.
debug('test');
andexit;
- eg. is it making it to the first index.php? Is it making it to the webroot/index.php? Is it loading the Config/bootstrap.php file? ...etc. Once you've narrowed down where it's NOT reaching, that will greatly help in solving the problem. – Dave