Linux - SoftwareThis forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
So this afternoon one of our developers came to me and reported some funky problems with phpmyadmin. He demonstrated for me that the login screen had changed and that when he logged in he could click on a database and and when he tried to change the number of records shown or when he would try to jump to a different page that nothing would change, the page would just refresh.
Very strange indeed. I had no idea what was going on and couldn't find anything online to explain this. I figured (perhaps a bad approach) to just upgrade to the latest stable release of phpmyadmin. Now when we try to log in the page just refreshes. I didn't change anything, I just copied the old config. Is there something special that has to be be in the 2.11.9.2 config file?
Any thoughts? Basically I am not getting any errors it just refreshes the log-in page. Very odd and I am trying to figure this out so the guys can get back to working with the databases tomorrow.
If you create a file like this and name it say phpinfo.php does it work as expected?
Code:
<html>
<head>
<title>PHP Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
</head>
<body>
<h1>PHP Test</h1>
<p>
<b>An Example of PHP in Action</b><br />
<?php echo "The Current Date and Time is: <br>";
echo date("g:i A l, F j Y.");?>
</p>
<h2>PHP Information</h2>
<p>
<?php phpinfo(); ?>
</p>
</body>
</html>
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.