dhobo Posted June 5, 2013 Share Posted June 5, 2013 Hello, I upgraded from Presta 1.4 to Presta 1.5.4, the admin section seems to work perfect; all data is still there. But in the frontend I get immediately a blank page. I did some debugging, and I come to the following code in classes/controller/FrontController.php on lines 428 and further: echo "ic5<br>"; $this->context->smarty->assign(array( 'HOOK_HEADER' => Hook::exec('displayHeader'), 'HOOK_TOP' => Hook::exec('displayTop'), 'HOOK_LEFT_COLUMN' => ($this->display_column_left ? Hook::exec('displayLeftColumn') : ''), 'HOOK_RIGHT_COLUMN' => ($this->display_column_right ? Hook::exec('displayRightColumn', array('cart' => $this->context->cart)) : ''), )); echo "ic6<br>"; as you see, I added 2 echo statements. the "ic5" is visible on my screen, the "ic6" isn't. So I think that the error (or at least one of the errors) is in this part of code. Anyone any clue what might be wrong here ? Link to comment Share on other sites More sharing options...
vekia Posted June 5, 2013 Share Posted June 5, 2013 hello what error code you've got? Link to comment Share on other sites More sharing options...
dhobo Posted June 5, 2013 Author Share Posted June 5, 2013 none. FireBug tells me "500 Internal Server Error" Link to comment Share on other sites More sharing options...
vekia Posted June 5, 2013 Share Posted June 5, 2013 And what about PHP error log, have you got an access to this file? 500 internal server error is usually related to the php script parse / htaccess errors Link to comment Share on other sites More sharing options...
Recommended Posts