I have a codeigniter project that I successfully completed on Mac OS X Lion. When trying to start the same project in ubuntu, the localhost / project request results in a blank page without a source.
I added AllowOverride All to apache.conf to no avail. My last strategy was to put the die () operator in strategic places in the index and the included files, trying to find the line on which the code crashed. Using this method, I found in system / core / CodeIgniter.php that the die statement before the line "$ CI = new $ class ();" is executed, while one after it (and, presumably, all the following code) does not.
What can I do with this information to help me run this project locally?
Thanks!
source share