Links for August 25, 2009 through August 27, 2009:
16 Cheat Sheets on 16 Essential Topics for Web Designers | Pro Blog Design – "Here are the list of some of the most essential cheat sheets every web developer and designer should have."
Links for August 25, 2009 through August 27, 2009:
16 Cheat Sheets on 16 Essential Topics for Web Designers | Pro Blog Design – "Here are the list of some of the most essential cheat sheets every web developer and designer should have."
Build a default Nginx install; I used the following configure arguments, but these are not necessary for using PHP/FastCGI (only for my environment):
./configure –prefix=/opt/nginx-0.6.34 –user=apache –group=apache
Build PHP for FastCGI, with the following configure arguments:
./configure –prefix=/opt/php-5.2.8 –enable-fastcgi –enable-force-cgi-redirect –with-gd –with-mysqli –enable-mbstring
–enable-fastcgi –enable-force-cgi-redirect are the important arguments to configure; the others are simply needed for my environment.
Use [...]
Code Snippets has an example post on how to do Suexec’ed PHP-FastCGI on Apache2.