You are not logged in.
Pages: 1
I have install the CMS in the localhost and with my WAMP i create the database. After started the install (http://localhost/mysite/install.php) i get the message that de installation was completed. But when i visit the link http://localhost/mysite/site/index.php i see a total blanco page. Als when i visit the admin site...
Does anybody know what when wrong?
Thanks and greetings from Holland!
Offline
A completely blank screen is probably indicative of PHP's short_open_tag being off.
In testing this I did discover that there's currently an issue with the /site/index.php file that is installed when working in a WAMP environment. After turning short_open_tag to On in php.ini you'll want to replace the code for /site/index.php with:
<?
$server_root = str_replace("site/index.php","",strtr(__FILE__, "\\", "/"));
include "../core/launch.php";
?>
Offline
Pages: 1