Guest BiggestIdiotAlive Posted September 25, 2011 Report Posted September 25, 2011 Hello, my friend and me bought PHP tutorial from you, and we're(because we shared the money to buy blame financial crisis) can't set up project from zip files that we got(we want to see how all it works ), we made exactly the same database, but when we point to http://localhost/shoppingcart/html/(index.php) it shows... nothing blank page no error, no nothing, when we drop table, errors are shown on page but when we put database back puf! blank page again whit nothing on it, we tried on two different computers results are the same, any help? Thanks in advance P.S. its running on WAMP server, and everything else works fine on localhost
falkencreative Posted September 26, 2011 Report Posted September 26, 2011 I'll see if I can take a look at this later today.
falkencreative Posted September 27, 2011 Report Posted September 27, 2011 The first thing I would check is if you have any errors that aren't being showed. Do you have display_errors set up to show errors in your php.ini file? If not, try adding this snippet below to the top of the function.php file (below the opening <?php), and check to see if there is anything that shows up. If you are getting a completely blank page, it's probably a PHP error that isn't being shown. error_reporting(E_ALL); ini_set('display_errors', '1');
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now