PDA

View Full Version : Error


RDX1
04-03-2003, 08:08 PM
This error happens with and without hacks. VB.com doesn't have many programmers so i'll ask here too.

I use PHPADSNEW, i have the code placed in ads.php and an iframe to it in the header template

ads.php

<html><head>
<title>Ads</title></head><body bgcolor="#C0C0C0" text="#000000" id="all" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<div align="center">
<?
require("/home/sexx/public_html/ads/config.inc.php3" );
require("/home/sexx/public_html/ads/view.inc.php3" );
require("/home/sexx/public_html/ads/acl.inc.php3" );
?>

<?
view("468x60", 0, "_blank" );
?></div>
</body></html>

Now i get an error off and on (Not always there, it's random) INSIDE the iframe

Fatal error: Cannot redeclare stripslashesarray() (previously declared in /home/sexx/public_html/talk/global.php:31) in /home/sexx/public_html/talk/global.php on line 31
HTTP/1.1 200 OK Date: Wed, 02 Apr 2003 13:22:46 GMT Server: Apache/1.3.27 (Unix) mod_log_bytes/1.2 mod_bwlimited/1.0 PHP/4.3.1 FrontPage/5.0.2.2510 X-Powered-By: PHP/4.3.1 Keep-Alive: timeout=20, max=99 Connection: Keep-Alive Transfer-Encoding: chunked Content-Type: text/html 193

The scripts are TOTALLY separate and not using the same database, why is this happening? I'm stumped

Erwin
04-07-2003, 12:53 AM
The code is conflicing with vB's own code. You can't just expect to insert PHP code into the templates, even if it's iframed.

RDX1
04-07-2003, 01:18 AM
It worked with all my forums up to 2.3.0

Erwin
04-07-2003, 01:47 AM
It's possibly that the latest vB version has something that conflicts with it. Strange...

RDX1
04-07-2003, 01:52 AM
Know how to fix it?