DownloadOriginally Posted by megavideos.in
http://www.buyscripts.in/vshare/2.6_fix ... remote.zip
Unzip and upload the file to your site in BINARY MODE.
DownloadOriginally Posted by megavideos.in
http://www.buyscripts.in/vshare/2.6_fix ... remote.zip
Unzip and upload the file to your site in BINARY MODE.
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?
Tysm Rob... worked for me too. Didn't even notice that problem yet until your post lol.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..
When using a number for a tag (i.e. using a year "2007") they do not show up.
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:
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.phpWhen a popular tag is shown that is long, it extends over the template like so:
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:
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 = 24; /** * @var int * @access var */ var $fontSizeRange = 12;
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.Code:var $baseFontSize = 12; /** * @var int * @access var */ var $fontSizeRange = 0;
This example sets the popular tags to 18px while the others stay at 12px (18-6=12):
The other places to change it looks like this:Code:var $baseFontSize = 18; /** * @var int * @access var */ var $fontSizeRange = 6;
Hope this helps someone. :DCode:// {{{ 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)
Thanks. I will jump into it and see what I can change.Originally Posted by Heavenly
Originally Posted by Misinformed
There is no previous video on your site.so the prev thumbnail is not showing
Bookmarks