View Single Post
  #13  
Old 5th June 2015, 16:09
ArcticWolf ArcticWolf is offline
Senior Member
 
Join Date: Oct 2008
Posts: 41
Default
check your apache error log. My guess is something is missing you need.
personally i find having no error display an pain when trying to setup an site..
http://php.about.com/od/troubleshoot..._reporting.htm
adding this in say index.php might help even temp, just should not run display errors once the site is live :P
Code:
ini_set('display_errors',1);
error_reporting(E_ALL);
Reply With Quote