spearchilduser Posted March 25, 2012 Share Posted March 25, 2012 im tryign to access phpmyadmin in xampp but i have a white screen the error logs arent showign any visable errors i can access all other pages and it will allow me to connect to the databases in the website just not view the page any thoughts ? Quote Link to comment https://forums.phpfreaks.com/topic/259674-white-screen/ Share on other sites More sharing options...
PFMaBiSmAd Posted March 25, 2012 Share Posted March 25, 2012 phpmyadmin is a popular database management script that is written in php and is installed on web servers to allow you to manage your mysql databases. mysql is a database server. You are likely trying to connect to a mysql database server in your php script. White pages can be caused by errors and the errors don't show up because php's error_reporting/display_errors/log_errors settings are not set appropriately, by using short open tags on servers that don't support them, or by code that simply does not output anything to the browser because it did not receive the input that it expected (plus about 3-4 less common reasons.) What have you done to investigate what your code and data are doing on the page that doesn't work? Your other pages that do work are irrelevant, because it is something specifically that you are doing on the page the doesn't work that is causing the problem. When you do a 'view source' of the white page, what do you get? Do you have php's error_reporting set to E_ALL (or even better a -1) and display_errors set to ON in your master php.ini on your development system and you have confirmed that they are properly set by using a phpinfo statement and you are also not modifying the values in a local php.ini, in a .htaccess file, or in your script so that all php detected errors will be reported and displayed? Are you sure your code is doing anything? Have you tried to echo something so that you know your code is taking the execution path you think it is? Lastly, we cannot help you with anything your code for a page is doing without seeing all the code that makes up that page (less any database credentials.) Quote Link to comment https://forums.phpfreaks.com/topic/259674-white-screen/#findComment-1330943 Share on other sites More sharing options...
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.