+ Reply to Thread
Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: feature box is expended

  1. #1
    katie hunter is offline vBTubePRO-User BR
    Join Date
    May 2008
    Posts
    279

    Default feature box is expended

    Hi i don't know if that is cause of the new version beta 5 but before i never see any of my the other supported sites shows in the feature box other then youtube, now i see veoh etc... all the other supported sites but this is bad cause if it shows for example megarotic video, it expends the whole skin, how can i fix this ?


  2. #2
    s7v7n's Avatar
    s7v7n is offline Administrator
    Join Date
    Jan 2008
    Posts
    7,665

    Default

    Open vbtube/includes/autotube.php

    add a line wich replaces the height and width to a smaller one

    $autotube[link1] = ereg_replace("470","$autotube_size",$autotube[link1]);

  3. #3
    katie hunter is offline vBTubePRO-User BR
    Join Date
    May 2008
    Posts
    279

    Default

    Hi Murat i don't get it whichone would i edit ? they all look the same

    PHP Code:
    $autotube[title]=substr($autotube[title], 040);
    $autotube[title].="...";
                    
    $autotube[link1] = ereg_replace("470","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("480","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("464","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("450","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("400","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("428","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("425","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("355","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("354","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("352","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("344","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("450","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("380","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("370","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("344","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("320","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("autoplay=1","autoplay=0",$autotube[link1]);


    ?> 

  4. #4
    s7v7n's Avatar
    s7v7n is offline Administrator
    Join Date
    Jan 2008
    Posts
    7,665

    Default

    You have to add 2 more lines like the one in the file.

    $autotube[link1] = ereg_replace("newheight","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("newwidth","$autotube_size",$autotube[link1]);

  5. #5
    katie hunter is offline vBTubePRO-User BR
    Join Date
    May 2008
    Posts
    279

    Default

    this is confusing, so like this ? I added two more line with 270 width and height

    PHP Code:
    $autotube[title]=substr($autotube[title], 040);
    $autotube[title].="...";
        
    $autotube[link1] = ereg_replace("270","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("270","$autotube_size",$autotube[link1]);        
    $autotube[link1] = ereg_replace("470","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("480","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("464","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("450","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("400","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("428","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("425","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("355","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("354","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("352","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("344","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("450","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("380","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("370","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("344","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("320","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("autoplay=1","autoplay=0",$autotube[link1]);


    ?> 
    still didn't work

    can you give me the whole edited code I will just copy and past it

    PHP Code:
    <?php

    //AutoTube Bit vBTubePRO Copyright by vbtube.com - s7v7n 2007-2008

    $autotube_show 1;
    $autotube $db->query_first("
    SELECT tubeid, title, link, link1, site, views, rating
    FROM " 
    TABLE_PREFIX "vbtube_tubes
    WHERE mediatype !='photo' ORDER BY rand() LIMIT 1
    "
    );

    $autotube[title]=substr($autotube[title], 040);
    $autotube[title].="...";
                
    $autotube[link1] = ereg_replace("470","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("480","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("464","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("450","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("400","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("428","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("425","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("355","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("354","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("352","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("344","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("450","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("380","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("370","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("344","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("320","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("autoplay=1","autoplay=0",$autotube[link1]);


    ?>
    also in this thread what do you mean by now you can't do anything ?

    http://www.vbtube.com/suggestions-bu....html#post3653
    Last edited by katie hunter; 26-07-2008 at 17:36.

  6. #6
    s7v7n's Avatar
    s7v7n is offline Administrator
    Join Date
    Jan 2008
    Posts
    7,665

    Default

    Ok ill give you the code.

    But i need the current size i mean the standard size of megarotic vids height and width.

  7. #7
    katie hunter is offline vBTubePRO-User BR
    Join Date
    May 2008
    Posts
    279

    Default

    how can i find out that ? this is what i find in the megarotic code, the parts that has the sizes

    $link2= '<object width="400" height="350">
    wmode="transparent" width="424" height="337">

    as for megavideo

    <object width="400" height="350">
    wmode="transparent" width="424" height="337">

  8. #8
    s7v7n's Avatar
    s7v7n is offline Administrator
    Join Date
    Jan 2008
    Posts
    7,665

    Default

    $autotube[link1] = ereg_replace("350","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("424","$autotube_size",$autotube[link1]);
    $autotube[link1] = ereg_replace("337","$autotube_size",$autotube[link1]);

    Add these 3 Lines to the code.

  9. #9
    katie hunter is offline vBTubePRO-User BR
    Join Date
    May 2008
    Posts
    279

    Default

    Thanks Murat that fix it =] i have a question how can i show my feature box in categories as well not just the index page ?

  10. #10
    s7v7n's Avatar
    s7v7n is offline Administrator
    Join Date
    Jan 2008
    Posts
    7,665

    Default

    It is only for the index page at the moment.

+ Reply to Thread
Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

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