-1

I follow this guide to install LAMP server on fedora 22 workstation

How To Install LAMP Stack (Apache, MariaDB And PHP) In Fedora 22

Everything working well except phpmyadmin.

When i need access it of the browser i see nothing (blank page)

How i can fix this issue ?

Any Suggestions ?

Just User
  • 131
  • 6
  • Check `/var/log/httpd/error_log` for errors when you load the page - it might contain PHP error messages. Possibly also check `/var/log/audit/audit.log` for any SELinux block messages when you load that page. If there's anything useful in the logs, please add it to your question. – TessellatingHeckler May 28 '15 at 20:27
  • thanks TessellatingHeckler for help , i see the result of erro_log as below `[Thu May 28 22:19:57.174706 2015] [:error] [pid 10968] [client 192.168.1.10:35767] PHP Fatal error: Call to undefined function __() in /usr/share/phpMyAdmin/libraries/core.lib.php on line 245 ` – Just User May 28 '15 at 20:29
  • Check http://stackoverflow.com/questions/21243704/call-to-undefined-function-error-phpmyadmin and http://stackoverflow.com/questions/27537617/phpmyadmin-fatal-error-call-to-undefined-function - looks like incorrect permissions to /etc/phpMyAdmin or the PHP session folder, or maybe a missing dependency (*ahem* and http://www.adminer.org/en/phpmyadmin/ ). – TessellatingHeckler May 28 '15 at 20:35
  • Awesome , it`s working , thnaks sir TessellatingHeckler for your help thank you again. – Just User May 28 '15 at 20:43
  • That's good. I've put my comments as a proper answer to the question - if you can, please mark it accepted, or add your own answer with exactly what you changed to make it work - otherwise this will show as an unanswered question forever. Thanks. – TessellatingHeckler May 28 '15 at 21:52
  • surly, but sorry i have no point enough to vote your answer – Just User May 28 '15 at 22:01

1 Answers1

1

Reposting my comments above into an answer:

Check /var/log/httpd/error_log for errors when you load the page - it might contain PHP error messages. Possibly also check /var/log/audit/audit.log for any SELinux block messages when you load that page. If there's anything useful in the logs, please add it to your question.

-- update --

Check https://stackoverflow.com/questions/21243704/ and https://stackoverflow.com/questions/27537617/ - it looks like incorrect permissions to /etc/phpMyAdmin or the PHP session folder, or maybe a missing dependency.

TessellatingHeckler
  • 5,726
  • 3
  • 26
  • 44