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 Quote
falkencreative Posted September 26, 2011 Report Posted September 26, 2011 I'll see if I can take a look at this later today. Quote
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'); Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.