I need a header script...

galaxyAbstractor

Community Advocate
Community Support
Messages
5,508
Reaction score
35
Points
48
I have tried to add the x10 ad on all my pages but on ~50 - 100 I haven't managed to do it. I haven't got time pasting code in hundreds of files so I want to make an header that automaticly shows up at all visible pages like in phpBB. I've tested the code Slothie gave me but it didn't work. Here what probably causing it:

In .htaccess

Code:
AddHandler application/x-httpd-php .php
php_value auto_prepend_file overall_header.php
php_value auto_append_file overall_footer.php

I have searched google for this for about 1 hour and can't find any tutorial.
 
Last edited:

Bryon

I Fix Things
Messages
8,149
Reaction score
101
Points
48
PHP is not running as an Apache module, instead it is running as CGI. This means that setting PHP configuration directives through .htaccess files will not work. ("php_value directive = value")
 
Top