PDA

View Full Version : Help with the header image (total newbie)


Deaddog
15.05.2004, 15:47
Need to know why I get the following messege at the top of the page"; defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); ?> I'm trying to make my first template and tried to change the ms_teamwork image to one of my own. I used the html editor and changed the index.php permissions to writable.

Thanks

pflegeonline
15.05.2004, 16:07
Hi deaddog!
You have one Syntax too much in your code ( "; )
"; defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); ?>

use following code:

defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); ?>

greetz
Stefan

Deaddog
15.05.2004, 16:58
Thanks Stefan. That fixed it. :)