Page 1 of 1
After Install
Posted: Thu Feb 22, 2007 7:11 pm
by jrguzmanb
Hi,
I perform 3 intallations without problems, but I access the front-end of the site and i can´t see anything, somebody know, why happend this situation?
any help is appraised.
Re: After Install
Posted: Thu Feb 22, 2007 8:20 pm
by Milhaus
Hi, I am by no means an expert, so please read the following with this info in mind...
I would try following:
- Look at the source of the front-end. Search for any erorrs.
- If there aren't any, try switch CMSMS to debug mode in config.php file.
- Try to catch PHP errors. Things to do this may differ, my host suggesting following script:
Code: Select all
error_reporting(E_ALL); // nastavi uroven reportovani
function obsluha_chyb($errno, $errmsg, $filename, $linenum, $vars) {
if (error_reporting()) {
// pokud je nastavena nenulova uroven reportovani - pred funkci neni znak @
echo $filename.' :: '.$linenum.' :: '.$errmsg."<br />\n";
}
}
set_error_handler("obsluha_chyb");
if ($tohle) {print "neco";}
Please provide us more info (version of PHP, Apache, MySQL, important settings like safe_mode...), so we can better help (probably not me, but someone smarter).
Milhaus