Support Forum
Sorry - it looks like this thjead feel between the cracks in the floorboards!
So it doesn't happen ALL the time? I had the impression it was constant. Not that that makes it any less puzzling. In fact - it probably makes it more puzzling.
hang on - one thing worth looking into. Do your image file names have spaces in them?
YELLOW
SWORDFISH
|
well, I don't often upload images, so I tried again this is a .png and the problem persists. no spaces in the filename: http://screencast.com/t/xfHDZMDwI
the same test with a .jpg http://screencast.com/t/Px6aEIig
both didn't work. I haven't tried any other format though... http://screencast.com/t/61DDA8YOUHO5
will let Andy get back with the code edits... admin might not help because we still cannot see the data... and in the wp plugin editor, we can only get at a few of our files... ftp access is the best but hardest to come by
Visit Cruise Talk Central and Mr Papa's World
Let's start wth a hunch...
The file you need to edit is /sp-api/sp-api-filters.php
It is a BIG file so you will need to do a lot of scrolling I'm afraid! You need to find the function named:
sp_format_display_image() which starts on line 1086 - about two thirds of the way down.
Look for this block of code and comment it out:
# see if we can determine if the image still exists before going further. So is it relative? if (empty($width[1]) && substr($src[1], 0, 7) == 'http://') { if (function_exists('curl_init')) { $fcheck = curl_init(); curl_setopt($fcheck, CURLOPT_URL,$src[1]); curl_setopt($fcheck, CURLOPT_NOBODY, 1); curl_setopt($fcheck, CURLOPT_FAILONERROR, 1); curl_setopt($fcheck, CURLOPT_RETURNTRANSFER, 1); if(curl_exec($fcheck) === false) return '['.sp_text('Image Can Not Be Found').']'; } }
Let's start with that...
YELLOW
SWORDFISH
|