Categories:
Administration (10)
Adware Spyware (7)
Apache (10)
Bluetooth (125)
DOS Commands (1)
Edge (28)
General (2)
Internet Explorer (217)
Media Center (12)
Media Player (11)
Mozilla Firefox (18)
PHP (15)
Programming (8)
Security (4)
Silverlight (15)
Tips (17)
Tools (218)
Tutorials (5)
Windows 10 (166)
Windows 7 (636)
Windows 8 (1091)
Windows Phone (33)
Windows Server 2008 (165)
Windows Server 2012 (84)
Windows Server 2016 (23)
Windows Vista (52)
Collections:
Other Resources:
Getting Blank Pages When Running PHP MySQL Pages
Why am I getting a blank page when running PHP scripts to access MySQL database?
✍: FYIcenter.com
1. Run your PHP application in a Web browser with a URL like http://localhost:8080/fyicenter/index.php. You get no page errors, but nothing in the browser window.
2. If you click View > Source menu, you will get something like:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=windows-1252"></HEAD> <BODY></BODY></HTML>
3. You are probably going to ask what happens to the application and which code generated this blank page.
4. Open in "notepad" Apache access log file at: C:\Program Files\Apache Software Foundation\Apache2.2\logs\access.log. The access record looks normal:
... "GET /fyicenter/index.php HTTP/1.1" 200 -
5. Open in "notepad" Apache error log file at: C:\Program Files\Apache Software Foundation\Apache2.2\logs\error.log. You should see a line like this:
... [error] [client 127.0.0.1] PHP Fatal error: Call to undefined function mysql_connect() in C:\Program Files \Apache Software Foundation\Apache2.2\htdocs\fyicenter \index.php on line 40
6. This error tells us that there is a problem in running MySQL functions in the PHP engine. Read our Configuring PHP for MySQL tutorial for fix this issue.
2016-07-04, 151387👍, 0💬
Popular Posts:
Can I remove startup application "RealPlay.exe - RealPlayer Tray Bar Application" to speedup my comp...
What is service "AEADIFilters" and program "AEADISRV.EXE" on Windows Vista? "AEADIFilters" is a syst...
Where to find information about what processes are running on Windows 7 and how to manage them? I wa...
What is service "AEADIFilters" and program "AEADISRV.EXE" on Windows Vista? "AEADIFilters" is a syst...
How to verify if your system is connected to the Internet? Windows system has two commands "ipconfig...