Results 1 to 9 of 9

vBSEO crunch all my icons

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 ...

  1. #1
    Member iogames's Avatar
    Real Name
    Thor Inge Kjebekk Thue - Nilsen
    Join Date
    May 2007
    Location
    Norway
    Posts
    58
    Liked
    0 times

    vBSEO crunch all my icons

    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?

  2. #2
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    crunched? you mean dis-proportionated?

    scroll all the way to the bottom of the vbseocp page and turn off image dimensions

  3. #3
    Member iogames's Avatar
    Real Name
    Thor Inge Kjebekk Thue - Nilsen
    Join Date
    May 2007
    Location
    Norway
    Posts
    58
    Liked
    0 times
    Does this affect vBSEO performance?

  4. #4
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,744
    Liked
    169 times
    Having that option enabled should improve page rendering since image dimensions are predefined, but disabling it should improve vBSEO performance a bit.

  5. #5
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    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($retvalgetFileList("$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

  6. #6
    Member iogames's Avatar
    Real Name
    Thor Inge Kjebekk Thue - Nilsen
    Join Date
    May 2007
    Location
    Norway
    Posts
    58
    Liked
    0 times
    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.

  7. #7
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    try doing a hard refresh, ctrl + f5. chances are, it's simply cached in your browser.

  8. #8
    Member iogames's Avatar
    Real Name
    Thor Inge Kjebekk Thue - Nilsen
    Join Date
    May 2007
    Location
    Norway
    Posts
    58
    Liked
    0 times
    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.

  9. #9
    Member iogames's Avatar
    Real Name
    Thor Inge Kjebekk Thue - Nilsen
    Join Date
    May 2007
    Location
    Norway
    Posts
    58
    Liked
    0 times
    Came back to tell you that it worked, after redoing everything

    Thanks again

Similar Threads

  1. digg, delicious, technorati and furl icons vbseo rc6
    By Karapoto in forum Template Modifications
    Replies: 11
    Last Post: 05-11-2007, 12:32 PM
  2. Icons placemnet (vBSEO 3.0.0. RC6)
    By coffee in forum Bug Reporting
    Replies: 4
    Last Post: 10-29-2006, 08:24 AM
  3. new vbseo icons showing below ..
    By sensimilla in forum Bug Reporting
    Replies: 8
    Last Post: 09-28-2006, 01:40 PM
  4. IM Icons
    By TundraSoul in forum Troubleshooting
    Replies: 3
    Last Post: 10-22-2005, 07:20 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •