Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Ilia Alshanetsky's Blog:
Beware of the default Apache 2 config for PHP
Aug 31, 2010 @ 14:38:57

Ilia Alshanetsky has a suggestion for those setting up PHP and Apache2 for the first time - beware of the default configuration!

About a week ago, I was doing some upgrades on my development machine and came across a rather nasty issue when it comes to how .php(s) files are associated with PHP in Apache. It seems that a number of distros including Gentoo (which is what I was using) are using the [same] configuration directive to make the PHP module parse PHP files

The problem comes from their use of "AddHandler" versus "AddType" when telling Apache which files to parse as PHP. The first allows anything with ".php" in its filename to be parsed while the second limits it to just files ending in ".php". Check your configuration to ensure you're not open to this issue, especially if there's scripts/files outside of your control.

tagged: apache2 configuration problem parse addhandler addtype

Link:

AnyExample.com:
Making XML/XSLT driven site using PHP
Apr 18, 2007 @ 14:32:00

On the AnyExample.com website, there's a new tutorial showing how to create an XML-based website that uses XSLT for its templates.

XML and XSLT technologies provides standard ways of separation of presentation and data. This article contains an example of simple php "xslt engine" for XML driven web-sites which implements caching techniques and Apache-based XML file processing.

They start by setting up the web server to parse all XML file requests through a handler script using Apache's directives. Following thi ssetup, there's three code blocks, one for each of the "moving parts" of the sample application - the XML content, the XSLT template to style it, and the PHP to bring them both together.

tagged: xml xslt template apache tutorial addhandler action directoryindex xml xslt template apache tutorial addhandler action directoryindex

Link:

AnyExample.com:
Making XML/XSLT driven site using PHP
Apr 18, 2007 @ 14:32:00

On the AnyExample.com website, there's a new tutorial showing how to create an XML-based website that uses XSLT for its templates.

XML and XSLT technologies provides standard ways of separation of presentation and data. This article contains an example of simple php "xslt engine" for XML driven web-sites which implements caching techniques and Apache-based XML file processing.

They start by setting up the web server to parse all XML file requests through a handler script using Apache's directives. Following thi ssetup, there's three code blocks, one for each of the "moving parts" of the sample application - the XML content, the XSLT template to style it, and the PHP to bring them both together.

tagged: xml xslt template apache tutorial addhandler action directoryindex xml xslt template apache tutorial addhandler action directoryindex

Link:


Trending Topics: