PDA

View Full Version : Error message in v1.5beta1


Arterial
02-23-2006, 10:49 PM
I have posted this message in the general help forum but did not get a satisfactory notice, forgive me for posting here.

I have error reporting activated and I am receiving the following error message:-

Warning: main(../includes/IXR_Library.inc): failed to open stream: No such file or directory in /files/home3/thehamptons/pixelpost/addons/admin_ping.php on line 46

Warning: main(): Failed opening '../includes/IXR_Library.inc' for inclusion (include_path='.') in /files/home3/thehamptons/pixelpost/addons/admin_ping.php on line 46

I have cheched that all files and folders are present. Any ideas what the cause may be?

Thanks
Arterial

Arterial
02-23-2006, 10:51 PM
Sorry I missed the link off the post-

http://ccgi.thehamptons.plus.com/pixelpost/index.php

Thanks
Arterial

GeoS
02-24-2006, 09:45 AM
Replace code:

include_once('../includes/IXR_Library.inc');
$pinglist ='';

with:

if( $_GET['x']=='save')
{
include_once('../includes/IXR_Library.inc');
$pinglist ='';
}


in /addon/admin_ping.php lines 46-47.

Arterial
02-24-2006, 06:10 PM
Bingo (or Housey Housey) depending what part of the world!
Thats cracked it GeoS, thank you very much.
Regards
Arterial

GeoS
02-24-2006, 11:58 PM
Good to know :)

Please check one more time if all is OK and then Ill bugfix Pixelpost's CVS version.

raminia
02-25-2006, 03:40 PM
if( isset($_GET['x'])&&$_GET['x']=='save')
{
include_once('../includes/IXR_Library.inc');
$pinglist ='';
}