So, I have a website written using the CI framework. It worked great on the original host (Apache). It works fine locally (IIS 7 Express). We just bought a new VPS (Windows Server 2008 R2) and php was pre-installed (PHP Version 5.2.10), when I go to the site, I get a blank page.
After debugging, just printing “OK” so often, I defined CodeIgniter.php:
$CI = new $class();
Now, to try to solve the problem, I went to config.php and installed:
$config['log_threshold'] = 4;
However, I do not even get any log files. I noticed that permissions were not enabled for recording, so I switched to "c: \ inetput \ wwwroot" and set the maximum permissions for the user "IIS_IUSRS"
Unfortunately, a log file is not created. "index.php" is still empty, so I'm completely confused. This is my first experience with a CI application. Please, help!
Edit: Ensured that MySQL is installed and MySQL is enabled for PHP
Thank you, Chris
source share