Setup multi version PHP on same server

LoadModule fastcgi_module /usr/local/Cellar/mod_fastcgi/2.4.6/libexec/mod_fastcgi.so SetEnvIf Authorization “(.*)” HTTP_AUTHORIZATION=$1 FastCgiExternalServer /Work/domains/cgi-bin/php54-fcgi -idle-timeout 60 -host 127.0.0.1:9054 -pass-header Authorization AddHandler php54-fcgi .php Action php54-fcgi /php54-fcgi Alias /php54-fcgi /Work/domains/cgi-bin/php54-fcgi FastCgiExternalServer /Work/domains/cgi-bin/php55-fcgi -idle-timeout 60 -host 127.0.0.1:9055 -pass-header Authorization # AddHandler php55-fcgi .php Action php55-fcgi /php55-fcgi Alias /php55-fcgi /Work/domains/cgi-bin/php55-fcgi FastCgiExternalServer /Work/domains/cgi-bin/php53-fcgi -idle-timeout 60 -host 127.0.0.1:9053 -pass-header Authorization # AddHandler php53-fcgi .php Action … Read more

RHEL 6/ CentOS 6: Slow SSH logins with DNS timeouts

If you’re experiencing slow logins via SSH on a Red Hat Enterprise 6 or CentOS 6 system, it’s probably caused by DNS that is taking too long to respond. Even with correct nameservers in /etc/resolv.conf, you may still find yourself stuck with slow logins. The solution is to add the following line to your /etc/resolv.conf. … Read more

SSH tunneling for proxy

ssh -f [email protected] -L 2000:personal-server.com:25 -N The -f tells ssh to go into the background just before it executes the command. This is followed by the username and server you are logging into. The -L 2000:personal-server.com:25 is in the form of -L local-port:host:remote-port. Finally the -N instructs OpenSSH to not execute a command on the … Read more

iFolder 3.8.3 error in windows 7

Here’s what is now working for me. OpenSuse 11.3 x64 and iFolder 3.8.0.3 server / client, openLDAP, Windows 7 x64. To re-summarize my problem, I was able to use the web interface (both /admin and /ifolder) without trouble. I could also use the 32 bit client with 32 bit Win XP. I could not use … Read more