-
PHPMyAdmin blank whitescreen (414 Request-URI Too Long)
Ran across an interesting issue where PhpMyAdmin on a newly installed CentOS server was not rendering in a browser. Or more accurately, it was rendering but the CSS kicked in and caused the browser to display a blank page rather than the desired login screen. (Doing a View Source on the page showed that the […]
-
Ubuntu 16.04 and PHP 7 not rendering
After reloading my work laptop with Ubuntu 16.04 LTS (I prefer to do a reload versus an upgrade, for each LTS version) I was very excited to install PHP 7, and installed using the standard Ubuntu repositories using typical commands: $ sudo apt-get install apache2 $ sudo apt-get install php7.0 However, after doing the installs […]
-
Using an SSH tunnel to step debug through a firewall
In a previous post I covered how to set up PHP step debugging in Zend Studio. But if that doesn’t work there may be a firewall in between the server and the debugging client, or IDE, preventing the connection. Here is a possible way to get around that. Note: Of course there is no way to […]
-
Setting up remote step debugging with Zend Studio
Recently I was helping someone set up step debugging of PHP in Zend Studio to debug a remote site, and had some difficulties. So I decided to create this post to remind me later, and perhaps help others get it set up. I was doing this on an Ubuntu laptop, so while menus may vary slightly […]
-
PHPStorm and debugging IP issue
Recently I was helping someone troubleshoot an issue using PhpStorm and Zend Debugger. In this case Zend Studio was able to debug an application using Zend Debugger while PhpStorm was failing unless an SSH tunnel was used. The error received was: Host ‘127.0.1.1’ is not allowed to open debug sessions – please configure zend_debugger.allow_hosts in the ini file.Failed […]