Going from CodeIgniter 1.7.2 to 2.0 returns blank page

I have a task to migrate a codeigniter webpage from 1.7.2 to 2.0 (2.2) and then I need to migrate to 3.0. I followed this guide .

After doing everything I have uploaded to ftp, I now get a blank page.

I think I have everything done like in the tutorial, but even if I missed something, I at least need an indication of it. But I am only getting a blank page.

I turned it on error_reporting

- nothing.

Set log_threshhold

to 1 and again - nothing.

+3


source to share


1 answer


It seems like you got a 500 error or something, so make an error message (not just on the encoder) on your webserver or htacces by adding

php_flag display_errors on

      



and check your php error log if available to you.

+1


source







All Articles