Screenshots Bug

We seem to have a problem with the screenshots generated for Victoria Falls Blog - http://travelnotes.org/topsites/stats/vicfalls/

Looking in the screens folder, the screenshots are being genenerated but maybe the problem is how the urls are read and then translated.

ie:
http://travelnotes.org/topsites/screens/www.ilalalodge.com-blog.png is generated for the url http://www.ilalalodge.com/blog/

Notice the forward slash in the URL (for blog) replaced with hyphen in the image file.

Maybe the php call is then looking for a different siteurl image?
 

Mark

Administrator
Staff member
the slash bug in screenshots is a result of us no longer parsing the host to allow "free hosted" services and subdirectories, we are working through these and I believe all known issues have been fixed in 0.7 and the corresponding plugins, I will check to make sure sites with trailing / are handled properly. Might need to further troubleshoot this one after 0.7 is released.

the annoying IE intranet bar that seems impossible to disable in WIN7 when opening a browser via com() is fixed on 0.7, if you prefer not to wait you can open sources/admin/screenshots.php and find:

PHP:
$top = 0;
change to:
PHP:
$top = 20;
then regenerate your screenshots
 
Top