Forum Moderators: coopster
allow_url_include was added in PHP 5.2 and defaults to off, which is probably why your includes fail after the upgrade. includes, you might want to consider turning allow_url_include on in PHP's main configuration file. If you only use for a few of your projects or don't have access to the configuration file, you can turn it on per-directory using an .htaccess file. That file should include the following line: php_flag allow_url_include on
These inclusions work okay on .php pages but not on the .htm pages.
.htm file and a .php file. Put a call to phpinfo()... <?php phpinfo(); ?>
This feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0.