Page 3 of 5 FirstFirst 12345 LastLast
Results 21 to 30 of 42

Thread: Report v2.6 Bugs here!

  1. #21
    Join Date
    Apr 2007
    Posts
    2,202

    Default Re: Report v2.6 Bugs here!

    Quote Originally Posted by megavideos.in
    Hi guys!

    Seems the Admin has not created a thread here to report bugs for 2.6. well let me start by posting the first one.

    I created a new channel and added few videos through Remote Server (stage6), The Video information shows on (view_video) shows that its been added in the new channel, but when i click on channel, here are no videos inside. it says 'There is no video in this channel' .

    Hope you fix it Admin!

    Admin if you wish you can make this a sticky!
    Download

    http://www.buyscripts.in/vshare/2.6_fix ... remote.zip

    Unzip and upload the file to your site in BINARY MODE.

  2. #22
    Join Date
    Jan 2008
    Location
    Columbus, OH but from Pittsburgh, PA
    Posts
    27

    Default Re: Report v2.6 Bugs here!

    Great script works great for me... Just two very minor things that are bugging me now lol.

    First... comment count on videos shows as ( ). With no number.

    Second... when apostrophe is used in tags, it shows up as "039". Like the tag "children's" shows up as "children039s". Can see both examples here "http://peepdat.com/view/28/slick-rick-childrens-story/"

    Anyone know how to fix either of these issues?

  3. #23
    Join Date
    Jan 2008
    Location
    Columbus, OH but from Pittsburgh, PA
    Posts
    27

    Default Re: Report v2.6 Bugs here!

    Rob wrote:I cant turn off the embedding option, If I either enable/disable in admin it always shows up on the view page.

    EDIT: It appears that the admin panel is correcting the database to turn on and off embedding (0/1), I've reuploaded view_video.php and video.php but the embed option is still available to visitors, I really dont want visitors to have this option as I want to steer people to my site.



    OK I fixed my own problem, in view_video.tpl I changed:

    Code: Select all
    {if $video_info.embed eq "enabled"}


    To

    Code: Select all
    {if $embed_show eq "1"}



    Worked for me anyway..
    Tysm Rob... worked for me too. Didn't even notice that problem yet until your post lol.

  4. #24

    Default Re: Report v2.6 Bugs here!

    Quote Originally Posted by Rob
    I cant turn off the embedding option, If I either enable/disable in admin it always shows up on the view page.

    EDIT: It appears that the admin panel is correcting the database to turn on and off embedding (0/1), I've reuploaded view_video.php and video.php but the embed option is still available to visitors, I really dont want visitors to have this option as I want to steer people to my site.
    This bug is fixed.

  5. #25

    Default Re: Report v2.6 Bugs here!

    When using a number for a tag (i.e. using a year "2007") they do not show up.

  6. #26

    Default Re: Report v2.6 Bugs here!

    When watching a video, the prev thumbnail is not showing in the Watch area. It seems to be hit or miss with this. Some videos have it and others do not. Here is a screen shot:


  7. #27

    Default Re: Report v2.6 Bugs here!

    When a popular tag is shown that is long, it extends over the template like so:


  8. #28
    Join Date
    Jan 2008
    Location
    Columbus, OH but from Pittsburgh, PA
    Posts
    27

    Default Re: Report v2.6 Bugs here!

    When a popular tag is shown that is long, it extends over the template like so:
    If you know what you're doing, you can change the font sizes in /include/PEAR/HTML/tagcloud.php

    For instance... if you want all tags to appear the same size, you can do what I did. There are two variables that you need to change and 3 places in the file to change them.

    This is how the code is now:

    Code:
    var $baseFontSize = 24;
        /**
         * @var    int
         * @access var
         */
        var $fontSizeRange = 12;
    To have them all be 12px change the first variable to 12 and the second to 0. This makes the base font size 12 pixels and tells the script not to change any size.
    Code:
        var $baseFontSize = 12;
        /**
         * @var    int
         * @access var
         */
        var $fontSizeRange = 0;
    To have the popular tags still emphasized, but in a smaller text than 24. Set your base font to something smaller but also be sure to change the range to accomodate.

    This example sets the popular tags to 18px while the others stay at 12px (18-6=12):
    Code:
        var $baseFontSize = 18;
        /**
         * @var    int
         * @access var
         */
        var $fontSizeRange = 6;
    The other places to change it looks like this:

    Code:
        // {{{ function __construct($baseFontSize = 24, $fontSizeRange = 12)
        /**
        *
        * Class constructor
        *
        * @param   int $baseFontSize    base font size of output tag (option)
        * @param   int $fontSizeRange   font size range
        * @access  public
        */
        function HTML_TagCloud($baseFontSize = 24, $fontSizeRange = 12)
    Hope this helps someone. :D

  9. #29

    Default Re: Report v2.6 Bugs here!

    Quote Originally Posted by Heavenly
    When a popular tag is shown that is long, it extends over the template like so:
    If you know what you're doing, you can change the font sizes in /include/PEAR/HTML/tagcloud.php

    For instance... if you want all tags to appear the same size, you can do what I did. There are two variables that you need to change and 3 places in the file to change them.

    This is how the code is now:

    Code:
    var $baseFontSize = 24;
        /**
         * @var    int
         * @access var
         */
        var $fontSizeRange = 12;
    To have them all be 12px change the first variable to 12 and the second to 0. This makes the base font size 12 pixels and tells the script not to change any size.
    Code:
        var $baseFontSize = 12;
        /**
         * @var    int
         * @access var
         */
        var $fontSizeRange = 0;
    To have the popular tags still emphasized, but in a smaller text than 24. Set your base font to something smaller but also be sure to change the range to accomodate.

    This example sets the popular tags to 18px while the others stay at 12px (18-6=12):
    Code:
        var $baseFontSize = 18;
        /**
         * @var    int
         * @access var
         */
        var $fontSizeRange = 6;
    The other places to change it looks like this:

    Code:
        // {{{ function __construct($baseFontSize = 24, $fontSizeRange = 12)
        /**
        *
        * Class constructor
        *
        * @param   int $baseFontSize    base font size of output tag (option)
        * @param   int $fontSizeRange   font size range
        * @access  public
        */
        function HTML_TagCloud($baseFontSize = 24, $fontSizeRange = 12)
    Hope this helps someone. :D
    Thanks. I will jump into it and see what I can change.

  10. #30

    Default

    Quote Originally Posted by Misinformed
    When watching a video, the prev thumbnail is not showing in the Watch area. It seems to be hit or miss with this. Some videos have it and others do not. Here is a screen shot:


    There is no previous video on your site.so the prev thumbnail is not showing

Page 3 of 5 FirstFirst 12345 LastLast

Similar Threads

  1. [bugs] v2.7
    By RAMMSTEIN in forum General Discussions
    Replies: 1
    Last Post: 05-14-2009, 06:16 AM
  2. Few Bugs - Someone please help?
    By Heavenly in forum Bug Reports
    Replies: 5
    Last Post: 05-30-2008, 02:20 AM
  3. Minor errors in script to report
    By Dafydd in forum General Discussions
    Replies: 4
    Last Post: 08-04-2007, 07:34 PM
  4. Bugs
    By Mauz in forum Fixed Bugs
    Replies: 13
    Last Post: 06-10-2007, 02:07 PM
  5. Some bugs
    By wdekreij in forum Fixed Bugs
    Replies: 15
    Last Post: 05-04-2007, 01:02 PM

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
  •