It happened months ago but I never pinpoint the problem... but when I upgraded I disable some PlugIns then I saw my graphs come back to normal, so I tested and I found that when I enable vBSEO crunched all my icons, what can I do?
This is a discussion on vBSEO crunch all my icons within the Troubleshooting forums, part of the vBSEO SEO Plugin category; It happened months ago but I never pinpoint the problem... but when I upgraded I disable some PlugIns then I ...
It happened months ago but I never pinpoint the problem... but when I upgraded I disable some PlugIns then I saw my graphs come back to normal, so I tested and I found that when I enable vBSEO crunched all my icons, what can I do?
crunched? you mean dis-proportionated?
scroll all the way to the bottom of the vbseocp page and turn off image dimensions
Does this affect vBSEO performance?
Having that option enabled should improve page rendering since image dimensions are predefined, but disabling it should improve vBSEO performance a bit.
Oleg Ignatiuk / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
another option is to run this script that keith made to get the dimensions of YOUR theme.
PHP Code:<?php
function getFileList($dir, $recurse=false)
{
$retval = array();
if(substr($dir, -1) != "/") $dir .= "/";
$d = @dir($dir) or die("Failed");
while(false !== ($entry = $d->read())) {
if($entry[0] == ".") continue;
if(is_dir("$dir$entry")) {
$retval[] = array(
"name" => "$dir$entry/"
);
if($recurse && is_readable("$dir$entry/")) {
$retval = array_merge($retval, getFileList("$dir$entry/", true));
}
} elseif(is_readable("$dir$entry")) {
$retval[] = array(
"name" => "$dir$entry"
);
}
}
$d->close();
return $retval;
}
$dirlist = getFileList("./", true);
foreach($dirlist as $file) {
if(@getimagesize($file['name'])) {
list($width, $height, $type, $attr) = getimagesize($file['name']);
echo "'images/".ltrim($file['name'],"./")."' => '".$width."x".$height."'<br />";
}
}
?>
save it as get_image_sizes.php
and save it to your root forum location and call it in a browser.
it will export a list, and you can paste that into the cp block
Thanks Briansol... but it didn't work...
the php it does generated the list of images I host on my board, but when I pasted & enable again, I see everything crunched :(
Last edited by iogames; 05-07-2008 at 04:45 PM.
try doing a hard refresh, ctrl + f5. chances are, it's simply cached in your browser.
Thanks for your time Briansol...
But even 24 hrs later and 2 computers is still the same, you can see it with your own eyes, isn't a cookies case :(
Last edited by iogames; 05-07-2008 at 04:45 PM.
Came back to tell you that it worked, after redoing everything
Thanks again