Changes between Version 4 and Version 5 of InstallingAsPhpExtension
- Timestamp:
- 05/23/2006 04:46:42 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallingAsPhpExtension
v4 v5 4 4 check [http://www.php.net/phpinfo phpinfo]() for php.ini location, supposing it's /etc/php.ini 5 5 {{{ 6 #!ShellExample 6 7 # cat xcache.ini >> /etc/php.ini 7 8 # $EDITOR /etc/php.ini … … 14 15 * [http://www.lighttpd.net/ lighttpd] or any webserver + mod_fastcgi --> php-fastcgi: just restart php itself, not the webserver 15 16 {{{ 17 #!ShellExample 16 18 (in case you run php with daemontools, do) 17 19 # svc -d php && svc -u php; echo $? 20 18 21 (or in case you're using gentoo daemontools, do) 19 22 # svcinit php restart 23 20 24 (in any other case, you should know better than i do.) 21 25 }}} 22 26 * any webserver + mod_php: restart the webserver. something like: 23 27 {{{ 28 #!ShellExample 24 29 (in case you're using apache, do) 25 30 # /etc/init.d/apache* restart 31 26 32 (or do) 27 33 # /etc/init.d/httpd* restart 34 28 35 (in any other case, you should know better than i do.) 29 36 }}} … … 32 39 * if you're working with php-fcgi, simply run 33 40 {{{ 41 #!ShellExample 34 42 $ php-fcgi -v 35 43 PHP 4.4.3-dev (cgi-fcgi) (built: Mar 10 2006 18:46:02) … … 61 69 }}} 62 70 63 See also: BuildingFromSource (prev) 71 See also: BuildingFromSource (prev), [/trac/wiki/TutorialLighttpdAndPHP PHP FastCGI on Lighttpd]

