White Page after new installatiion

Permalink
Hello,

Iam really interested with Concrete 5 its a really pretty CMS.

Unfortunately, we were trying to install it on our existing domain directory and after finishing installation a white page appeared, with no code shown in the code tool.

Hope any one could help

Thank you

 
fudyartanto replied on at Permalink Reply
fudyartanto
Check your server configuration

Read this
http://www.concrete5.org/documentation/background/system_requiremen...

and try print all php error by setting "display_errors" to 1 and "error_reporting" to E_ALL
hope you will get some hint to solve your problem.
mutds replied on at Permalink Reply
Hello,

Please if you could tell me how to do that.

where should i enter this thing to display any logs or error.

Thank you
fudyartanto replied on at Permalink Reply
fudyartanto
Make sure your web server display the error.
To check current configuration you can print the error from php code by run phpinfo() method. Create empty file, example info.php then copy the code bellow
<?php
phpinfo();
?>

Make sure display_errors value should be On
then error_reporting should be E_ALL
You can set by edit the value from php.ini in your server. or maybe you can set by .htaccess. Googling it. to check please access your info.php

Try that step first, if you still not see any error come back here.