PDA

View Full Version : Php error (photopost classifieds) getimage size


JimmyN
12-20-2006, 05:59 AM
Hi everyone, got this probelm with a plugin i have just put in, its a include of a file called "inc_ads.php" which calls new photos from the database and displays them in a ad block.

The add-on program is called "photopost classifieds"

The plugin is made to show the ad block on the forum home, which it is, but iam getting this error at the top.

it seems that the file has picked a wrong directory for the data.

Its: /data2/thumbs/original_faceplate_galerie.jpg
and should be: /data/2/thumbs/original_faceplate_galerie.jpg

So its just got the directorty wrong, it still displays the ads though, its just a query in the file to check the size to see if it needs to add a black background and shrink etc of the image.

Warning: getimagesize(http://www.myserverhost.com/classifieds/data2/thumbs/original_faceplate_galerie.jpg) [function.getimagesize]: failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /classifieds/inc_ads.php on line 120

If you have any php skills etc please contact me, either via email/PM/msn etc

Email me (jamesnorman2@gmail.com)

I know some people say "get support at the photopost forums etc, this is wrong place etc" but i have allready tryed and still no luck. I need someone that can sort the error out in the file.

Will supply the file etc for you to have a look.

I may offer you a reward if you can help me, ask if you have any questions

thanks again

all sorted, never mind

sv1cec
01-01-2007, 07:08 PM
Well, I think this is the standard error message if getimagesize can't find an image file to open. You can trap that error, with something like:


if (!$allowimgsizefailure)
{
code on what to do if the getimagesize can't find the file.
}

JimmyN
01-01-2007, 09:39 PM
thanks but it allready fixed