vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Major Additions - Video Club (YouTUBE, Vimeo, DailyMotion etc) (https://vborg.vbsupport.ru/showthread.php?t=324885)

paradoxG(r)eek 04-19-2017 05:27 PM

Quote:

Originally Posted by Naijasite (Post 2585628)
1. There is no no ending slash
2. I dont no how to go about this ............. The php function "copy" does not works: copy(''.$videothumb.'', ''.$vbulletin->options["videoclub_serverpath"].'/tmp/'.$logo.'');

Would you mind i send you my admincp login details so you fix the error?

The server path to thumbs is correct?

Stratis 04-19-2017 05:35 PM

Quote:

Originally Posted by paradoxG(r)eek (Post 2585624)
It was not 644? Strange. Normal is 644 for all files. Once, some years ago, I had a similar problem. Don't remember if it was 600 or 640 but it was not 644 so I had problems with many files. That's why it came to my mind when I read that "Forbitten".

I think that you must contact your hosting provider to get advices.

No its was not CMOD. As I say above it works now.
COMODO firewall sees the embed code or frame.. and there are security rules in my server, so that why error 403.
Any way I inserted the id xxx error for exempt and hope all ok from now on.


I am translating it in Greek :D

Thanks

Naijasite 04-19-2017 05:44 PM

Quote:

Originally Posted by paradoxG(r)eek (Post 2585629)
The server path to thumbs is correct?

now i see the server path should be the problem because its wrong. I just use the default server path of the mod.

Vbulletin DOCUMENT_ROOT /home/myname/public_html/www.spyidea.com

Please see what wrong on my path
/home/myname/public_html/www.spyidea.com/videoclub/thumbs

I think am making mistake on the path address because my forum is installed at Addon Domain directory and not on the public folder.

Can you correct the path for me

paradoxG(r)eek 04-19-2017 06:07 PM

Quote:

Originally Posted by Naijasite (Post 2585631)
now i see the server path should be the problem because its wrong. I just use the default server path of the mod.

Vbulletin DOCUMENT_ROOT /home/myname/public_html/www.spyidea.com

Please see what wrong on my path
/home/myname/public_html/www.spyidea.com/videoclub/thumbs

I think am making mistake on the path address because my forum is installed at Addon Domain directory and not on the public folder.

Can you correct the path for me

Upload the attached files to videoclub/thumbs/ and access it from your browser. eg
http://www.spyidea.com/videoclub/thumbs/forumpath.php

It will shows you the path

Naijasite 04-19-2017 08:13 PM

Thanks its working fine now.

PRO Version (Finally the features below will be FREE)


Extra Providers
Facebook
Videoplayer with support for prevideo ads

Are these feature available on this mod, if no what the cost or link to the pro version.

Naijasite 04-19-2017 09:11 PM

Video view count is only added when the user is login to the forum. But when guest view video the view count does not increase.

1. How can i allow video view count to increase when view by Guest?
2. How also want guest to be able to Like video.

Please your help on these will be appreciated

paradoxG(r)eek 04-20-2017 05:12 AM

Quote:

Originally Posted by Naijasite (Post 2585636)
Thanks its working fine now.

PRO Version (Finally the features below will be FREE)


Extra Providers
Facebook
Videoplayer with support for prevideo ads

Are these feature available on this mod, if no what the cost or link to the pro version.

Currently there are is no PRO version. Actually never had PRO versions. Step by step, I'll add all those features (max in 30 days), and when they'll be ready, I'll decide if I start selling a PRO version or I will include them in the free version.

paradoxG(r)eek 04-20-2017 05:17 AM

Quote:

Originally Posted by Naijasite (Post 2585637)
Video view count is only added when the user is login to the forum. But when guest view video the view count does not increase.

1. How can i allow video view count to increase when view by Guest?
2. How also want guest to be able to Like video.

Please your help on these will be appreciated

1.- Views count only for logon users EXCEPT the video owner. Allowing guests (or the owner) to count views then the counter looses the value. The owner will goes there as not logon and will increase the counter to 1000 in just 10 minures.

2.- It can't be done as the system shows the users who liked it.

Don't forget that is a community addon which means that any mod must focus to make quest register in your site. If you allow them available to guest why to register? For example yesterday I registered in your site as ChrisTERiS just to see what is going wrong. If this was available to guest I should never register.

Naijasite 04-20-2017 07:09 AM

Your mod is really nice and i really appreciate your response. Though i wont mind if the views is been increase whe guest view videoes. Because this will attract other guest to click other video based on the many views.

Please if you can tell me what code to edit so views and like will be increased when guest view or click on like a video, just the same way it works on thread.

Because more views or likes will attract more video click.
Thanks in advance.

paradoxG(r)eek 04-20-2017 07:47 AM

Quote:

Originally Posted by Naijasite (Post 2585640)
Your mod is really nice and i really appreciate your response. Though i wont mind if the views is been increase whe guest view videoes. Because this will attract other guest to click other video based on the many views.

Please if you can tell me what code to edit so views and like will be increased when guest view or click on like a video, just the same way it works on thread.

Because more views or likes will attract more video click.
Thanks in advance.

For Views: Open file video.php

Find (Lines 845-849):
Code:

// Count View
if ($userid > 0 && $userid <> $item["userid"])
{
        $vbulletin->db->query_write("UPDATE ".TABLE_PREFIX."videoclub_items SET views=views+1 WHERE id=$itemid");
}

Replace with:
Code:

// Count View
$vbulletin->db->query_write("UPDATE ".TABLE_PREFIX."videoclub_items SET views=views+1 WHERE id=$itemid");

For Votes, sorry but there are many variables to edit, not only to php but also to template. Also modifying the code it will brings database errors when a guests tries to vote:
1.- During saving vote
2.- When tries to get the list of voters

Naijasite 04-20-2017 09:26 AM

Thanks man the view counter is working as requested on my http://www.spyidea.com/video.php

Thanks man.

paradoxG(r)eek 04-20-2017 09:36 AM

Quote:

Originally Posted by Naijasite (Post 2585643)
Thanks man the view counter is working as requested on my http://www.spyidea.com/video.php

Thanks man.

Good. What about SEO urls? Have fixed?

t3h3th32 04-20-2017 09:43 AM

Hi,

this looks like an amazing mod, I got a question however. I'm looking for something, which will place a YouTube video block on my forums and will automatically fetch new videos from my YouTube channel, when uploaded.

Is such function planned or possible?

Regards,
~t3h'Pâr4d0x

paradoxG(r)eek 04-20-2017 09:51 AM

Quote:

Originally Posted by t3h3th32 (Post 2585645)
Hi,

this looks like an amazing mod, I got a question however. I'm looking for something, which will place a YouTube video block on my forums and will automatically fetch new videos from my YouTube channel, when uploaded.

Is such function planned or possible?

Regards,
~t3h'P?r4d0x

Currently it supports only addition by URL and not automatic (Like RSS). I'll search if there is any free PHP class (I know that exist) that auto fetches from chanels, and then is easy to implement it any vB block.

paradoxG(r)eek 04-20-2017 01:14 PM

Quote:

Originally Posted by t3h3th32 (Post 2585645)
Hi,

this looks like an amazing mod, I got a question however. I'm looking for something, which will place a YouTube video block on my forums and will automatically fetch new videos from my YouTube channel, when uploaded.

Is such function planned or possible?

Regards,
~t3h'P?r4d0x

Something like this?
https://www.cmsbulletin.com/videochannel.php

PS: Ignore design. Currently is a simple list and nothing more.
If you want give me another channel id for better check.

paradoxG(r)eek 04-20-2017 01:28 PM

Does it appears only to developer?? :D

https://vborg.vbsupport.ru/external/2017/04/4.jpg

Stratis 04-21-2017 07:37 AM

Christos, i have...

issue 1: When i want to add a comment and press to save, does not save it. It does nothing.

issue 2: When i press the button to ascend or descent in all places of videoclub
it works but every time it takes me and to the top of forum page.
Attachment 156313


* In default skin both issues does not exist, any idea where to search?
Three skins i have, has the same problematic react.


Thanks

BadgerDog 04-21-2017 10:28 AM

Chris... :)

We've been adding a lot of content to 1.3.2 prior to going live and may have discovered a bug..

If you select a category that has so many videos that it has multiple pages to display, then choose page 2 to see the next page of videos from just that category, the code starts mixing into the screen display, videos which have nothing to do with that category?

Thanks...

Regards,
Doug

paradoxG(r)eek 04-21-2017 12:08 PM

Quote:

Originally Posted by Stratis (Post 2585665)
Christos, i have...

issue 1: When i want to add a comment and press to save, does not save it. It does nothing.

issue 2: When i press the button to ascend or descent in all places of videoclub
it works but every time it takes me and to the top of forum page.
Attachment 156313


* In default skin both issues does not exist, any idea where to search?
Three skins i have, has the same problematic react.


Thanks

Hello Strati,

Can you please give me your link?

Christos

paradoxG(r)eek 04-21-2017 12:12 PM

Quote:

Originally Posted by BadgerDog (Post 2585667)
Chris... :)

We've been adding a lot of content to 1.3.2 prior to going live and may have discovered a bug..

If you select a category that has so many videos that it has multiple pages to display, then choose page 2 to see the next page of videos from just that category, the code starts mixing into the screen display, videos which have nothing to do with that category?

Thanks...

Regards,
Doug

Hi Doug,

Can't reproduce your report. I logon to your site and selected 2 categories "Forgotten Weapons" and "Military Movies". Total 36 videos in 2 pages. I changed back forth between those pages and all videos were from those 2 categories.

Chris

BadgerDog 04-21-2017 12:19 PM

Quote:

Originally Posted by paradoxG(r)eek (Post 2585672)
Hi Doug,

Can't reproduce your report. I logon to your site and selected 2 categories "Forgotten Weapons" and "Military Movies". Total 36 videos in 2 pages. I changed back forth between those pages and all videos were from those 2 categories.

Chris

Don't use check box method..

Try and click on a category name that shows under any video. Ie: Forgotten Weapons

Then it shows you the first page of that category ....

Then select page 2 and you'll see what I mean...

Regards,
Doug

paradoxG(r)eek 04-21-2017 12:27 PM

Quote:

Originally Posted by BadgerDog (Post 2585673)
Don't use check box method..

Try and click on a category name that shows under any video. Ie: Forgotten Weapons

Then it shows you the first page of that category ....

Then select page 2 and you'll see what I mean...

Regards,
Doug

Please upload this file and let me know.

paradoxG(r)eek 04-21-2017 12:29 PM

Quote:

Originally Posted by Naijasite (Post 2585643)
Thanks man the view counter is working as requested on my http://www.spyidea.com/video.php

Thanks man.

To show how much thankful you're have you removed my copyright?
Please put it back or uninstall the mod.

Thank you

BadgerDog 04-21-2017 01:15 PM

Quote:

Originally Posted by paradoxG(r)eek (Post 2585674)
Please upload this file and let me know.

Still showing mixed videos on the 2nd page after clicking on single category under any video (see attached pic of page 2)...

I believe the design should be that when clicking on a category, only videos from the first age onward for that category aloe should ever show?

Regards,
Doug

paradoxG(r)eek 04-21-2017 01:46 PM

Quote:

Originally Posted by BadgerDog (Post 2585677)
Still showing mixed videos on the 2nd page after clicking on single category under any video (see attached pic of page 2)...

I believe the design should be that when clicking on a category, only videos from the first age onward for that category aloe should ever show?

Regards,
Doug

Sorry, I forgot to click save in the 2nd fix. There were 2 issues there. Wrong url and wrong category id. Use the attached file.

BadgerDog 04-21-2017 05:13 PM

Quote:

Originally Posted by paradoxG(r)eek (Post 2585679)
Sorry, I forgot to click save in the 2nd fix. There were 2 issues there. Wrong url and wrong category id. Use the attached file.

Works fine!! :up:

Thanks.. :)

Regards,
Doug

Naijasite 04-21-2017 09:01 PM

Quote:

Originally Posted by paradoxG(r)eek (Post 2585675)
To show how much thankful you're have you removed my copyright?
Please put it back or uninstall the mod.

Thank you

Show Copyright
If you paid for the PRO version you can set it to NO. It's up to your honesty to keep it YES for the Free version.

i have enable the copyright. Thanks for letting me know.

BadgerDog 04-22-2017 12:30 PM

Chris.. :)

An idea for your thinking about additional features....

Perhaps a small button that a member can click to REPORT a video, similar to the way they can REPORT a post as being inappropriate etc...

Thanks... going live sometime this weekend. :up:

Regards,
Doug

BadgerDog 04-22-2017 02:27 PM

Minor Bug Report...

We went live Chris... so far.. so good, but have found another bug reported by a member...

When you select a video to play and look at the About Author box (see attached), you can click on a link that takes the user to the Author's profile and he's able to view page 1 of that author's videos.

If he has more then one page of videos and the user then clicks on page 2 or subsequent pages, a strange error message comes up about not being registered.. (see attached)..

Regards,
Doug

paradoxG(r)eek 04-22-2017 03:57 PM

Quote:

Originally Posted by BadgerDog (Post 2585703)
Minor Bug Report...

We went live Chris... so far.. so good, but have found another bug reported by a member...

When you select a video to play and look at the About Author box (see attached), you can click on a link that takes the user to the Author's profile and he's able to view page 1 of that author's videos.

If he has more then one page of videos and the user then clicks on page 2 or subsequent pages, a strange error message comes up about not being registered.. (see attached)..

Regards,
Doug

I'm trying to add pagination in user profile but seems that due to ajax tabs is not working. I'm searching in my old mods, I think that in one of them I've succeeded to make pagination work. If not, I'll show (eg 30) and then I'll add a link "See more..." which will leads to Videoclub listing. Same as clicking username in videoclub listings.

paradoxG(r)eek 04-22-2017 03:58 PM

Quote:

Originally Posted by BadgerDog (Post 2585701)
Chris.. :)

An idea for your thinking about additional features....

Perhaps a small button that a member can click to REPORT a video, similar to the way they can REPORT a post as being inappropriate etc...

Thanks... going live sometime this weekend. :up:

Regards,
Doug

If you check the database you'll see that fields to support reports are already there. So it's already in my plans to add it.

Currently I gave some days to myself to build my own site and start operating it again after many years.

Stratis 04-22-2017 04:04 PM

Quote:

Originally Posted by paradoxG(r)eek (Post 2585670)
Hello Strati,

Can you please give me your link?

Christos

Yes. Monday when I will return in Thessaloniki :) I will Pm you with a user and pass
so to see it your self, Thank you very much.


EDIT: Ok Send P.M

paradoxG(r)eek 04-24-2017 07:38 AM

Quote:

Originally Posted by Stratis (Post 2585665)
Christos, i have...

issue 1: When i want to add a comment and press to save, does not save it. It does nothing.

As I can see there is a jquery load in footer. Can you please remove if for a moment to test saving?


Quote:

Originally Posted by Stratis (Post 2585665)
issue 2: When i press the button to ascend or descent in all places of videoclub
it works but every time it takes me and to the top of forum page.

I think that here is a conflist with your "Goto Top" script. Disable it temporary and check again. Maybe is also a conflist with jquery load in footer, so be sure that both have been disabled.

BadgerDog 04-24-2017 07:46 AM

Quote:

Originally Posted by paradoxG(r)eek (Post 2585707)
I'm trying to add pagination in user profile but seems that due to ajax tabs is not working. I'm searching in my old mods, I think that in one of them I've succeeded to make pagination work. If not, I'll show (eg 30) and then I'll add a link "See more..." which will leads to Videoclub listing. Same as clicking username in videoclub listings.

Thanks... that would work fine as well .. :)

Regards,
Doug

Stratis 04-24-2017 12:17 PM

Quote:

Originally Posted by paradoxG(r)eek (Post 2585770)
As I can see there is a jquery load in footer. Can you please remove if for a moment to test saving?



I think that here is a conflist with your "Goto Top" script. Disable it temporary and check again. Maybe is also a conflist with jquery load in footer, so be sure that both have been disabled.

Yes that's the problem, thanks Christos. I must know see how fix this conflict. :)

concepts 04-24-2017 04:06 PM

Tried to install this, but google blocks it every time I attempt to add a video, saying strange code on the page, warning me of possible attempts to security.

paradoxG(r)eek 04-24-2017 04:11 PM

Quote:

Originally Posted by concepts (Post 2585788)
Tried to install this, but google blocks it every time I attempt to add a video, saying strange code on the page, warning me of possible attempts to security.

Google?? Maybe you mean Chrome or something else?

Is your site on SSL? If yes have you set to ON, the relevant option in Video club-> General options?

concepts 04-24-2017 04:39 PM

Anyway to fix this alignment issue?

paradoxG(r)eek 04-24-2017 05:14 PM

Quote:

Originally Posted by concepts (Post 2585792)
Anyway to fix this alignment issue?

First of all, please let me know what happen with the other issue.

As for the alignment issue, can you be more specific? Can't see any issue there, unless if I misunderstood your question.

BadgerDog 04-25-2017 03:00 PM

Upgraded to 1.3.3 for testing ... :)


All times are GMT. The time now is 05:59 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01900 seconds
  • Memory Usage 1,861KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (28)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete