Skip to content

Tag Archives: php

Bookmarks for August 25, 2009 through August 27, 2009

03-Sep-09

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."

Running Nginx with PHP via FastCGI

19-Jan-09

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 [...]

Suexec’ed PHP-FastCGI on Apache2

30-Dec-08

Code Snippets has an example post on how to do Suexec’ed PHP-FastCGI on Apache2.