Computing/PHP: Difference between revisions

From OpenWetWare
Jump to navigationJump to search
No edit summary
 
(One intermediate revision by the same user not shown)
Line 7: Line 7:
*[http://www.ilovejackdaniels.com/php/email-address-validation/ Email address validation]
*[http://www.ilovejackdaniels.com/php/email-address-validation/ Email address validation]
*[http://www.weberdev.com/get_example-4291.html Get the self URL of current page]
*[http://www.weberdev.com/get_example-4291.html Get the self URL of current page]
==Notes==
Apache2 has a slightly different configuration system than the previous version.  In addition to the main configuration file (<tt>/etc/httpd/conf/httpd.conf</tt>), it places the module-specific configuration files into <tt>/etc/httpd/conf.d</tt> directory.
Both PHP4 and PHP5 will add a <tt>LoadModule</tt> line into <tt>httpd.conf</tt> at the installation time by default.  This line should be moved to <tt>/etc/httpd/conf.d/php.conf</tt> instead.

Latest revision as of 16:05, 15 October 2007

Frameworks

  • XOOPS is an extensible, OO (Object Oriented), easy to use dynamic web content management system written in PHP
  • xajax is an open source PHP class library that allows you to easily create powerful, web-based, Ajax applications using HTML, CSS, JavaScript, and PHP
  • BioPHP - PHP for Bioinformatics

Recipes

Notes

Apache2 has a slightly different configuration system than the previous version. In addition to the main configuration file (/etc/httpd/conf/httpd.conf), it places the module-specific configuration files into /etc/httpd/conf.d directory. Both PHP4 and PHP5 will add a LoadModule line into httpd.conf at the installation time by default. This line should be moved to /etc/httpd/conf.d/php.conf instead.