[ Video Sharing CMS v4 ] PHPVibe 3.6 - Patch for 3.5 [Fixes and discussions]

Started by PHPVibe A.,

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

PHPVibe A.Topic starter

If any more issues/suggestions for patch I, please fire away here so we don't miss any.

For now (still looking and updating)

http://www.phprevolution.com/forum/how-to/how-do-you-remove-the-video-sidebar/
http://www.phprevolution.com/forum/troubleshooting-issues/(3-5)-jwplayer-6-working-in-chrome-not-in-firefox-safari-and-ie/
http://www.phprevolution.com/forum/how-to/how-to-make-next-image-like-this/
http://www.phprevolution.com/forum/troubleshooting-issues/language-player-image-rotation/
http://www.phprevolution.com/forum/troubleshooting-issues/webm-and-ogv-issues/
http://www.phprevolution.com/forum/troubleshooting-issues/twitter-login-error/
http://www.phprevolution.com/forum/troubleshooting-issues/default-mp3-picture-gets-deleted/
http://www.phprevolution.com/forum/troubleshooting-issues/views-bug-edit-user-gt-group-bug/
http://www.phprevolution.com/forum/troubleshooting-issues/comments-in-article-post-issue/
http://www.phprevolution.com/forum/troubleshooting-issues/minify-jscss-requests/
http://www.phprevolution.com/forum/troubleshooting-issues/keep-getting-an-error-about-opengraph-facebook/
http://www.phprevolution.com/forum/features-and-progress/ads-embed/
http://www.phprevolution.com/forum/troubleshooting-issues/upload-date-doesnt-work-on-phpvibe-3-5/
http://www.phprevolution.com/forum/plugins-mods/soundcloud-embed/
http://www.phprevolution.com/forum/troubleshooting-issues/re-phpvibe-3-5-patch-i-suggestionsissues-thread/msg15877/?topicseen#msg15877
http://www.phprevolution.com/forum/features-and-progress/you-tube-importer-error-messages/msg15709/?topicseen#msg15709


PHPVibe A.Topic starter


PHPVibe A.Topic starter


TigerClaw

I didn't post it anywhere else

-301 redirects for renamed videos
Description: If you rename a video title the old url and the new url are still accessible. This create a duplicated content issue.
Solution: Redirect 301 from old url to new url
Example: phpvibe.com/video/623/original-title --> Redirect 301 phpvibe.com/video/623/new-title
  •  

PHPVibe A.Topic starter

Quote from: TigerClaw on
I didn't post it anywhere else

-301 redirects for renamed videos
Description: If you rename a video title the old url and the new url are still accessible. This create a duplicated content issue.
Solution: Redirect 301 from old url to new url
Example: phpvibe.com/video/623/original-title --> Redirect 301 phpvibe.com/video/623/new-title

Not something you can do easily, it would require and edits table, tracking, and we try to keep the cms as light as possible.
But there is quick forced fix, a $canonical you could compare with selfURL()

$canonical would have the new(edited url) while selfURL() has the current location.

if($canonical !== selfURL()) { redirect($canonical);}

But I could see this go wrong in several ways, better place it at the end of com/com_video.php

OliverJ

I have another good idea :)
Can you place a box where user can add there adsense banner for example (Like Youtube Partner Network)
Or the Admin can edit the video an place there a Banner Code ?, i think its a great feature because more user upload videos.
  •  

PHPVibe A.Topic starter

I'm not sure what you ask for. Like ad revenue sharing?

OliverJ

Yes but the users can add their own banner.
For example you upload a video and there is the titel box , description box and under this boxes you make a new box where user can add their add code or his banner image.
Now i approve this video and on the video site under description is a new box where the add banner is displayed.

Its only a idea, i hope you understand what i mean :)
  •  

PHPVibe A.Topic starter

I know what you mean, but I don't think we will add this by default, due to many security issues involved.


PHPVibe A.Topic starter


Lunar

Suggestion: I'd like to be able to move multiple videos into another category. Let's say that you import 300 videos to wrong cat. Instead of moving them manually I'd like to move them the same way you can mark more than one for unpublishing. Also would like to sort videos by category in the backend.
  •  

PHPVibe A.Topic starter

That's planed as well. Mario will start working on the v3.5.1 tonight.
He's also looking onto user activation when registering by form.

x5000x

  •  

Lunar

Suggestion #2 : Implement a maintenance mode so that the site can be taken offline easily for changes/updates?
  •  

TigerClaw

Give the possibility to admin to change the user password / email
  •  

PHPVibe A.Topic starter


AlexH

I do not know if it comes default or module/plugin, but it would be a good idea to put ads by category.

TigerClaw

Quote from: Alexander on
Not something you can do easily, it would require and edits table, tracking, and we try to keep the cms as light as possible.
But there is quick forced fix, a $canonical you could compare with selfURL()

$canonical would have the new(edited url) while selfURL() has the current location.

if($canonical !== selfURL()) { redirect($canonical);}

But I could see this go wrong in several ways, better place it at the end of com/com_video.php

It is possible to throw a 404 to the old URL? At least in this way the original url will not be indexed
  •  

PHPVibe A.Topic starter

Try adding before the the redirect:

    header('HTTP/1.0 404 Not Found');

shtefcs

  •  

vipe

  •  

PHPVibe A.Topic starter

Nothing yet, waiting for Mario to come back this weekend.

shtefcs

I didn't read what's gonna be in 3.5.1, but I noticed that plugin structure is very need. It's pain in ass to manually update everytime code  when some new update come out. I am talking to the one who did custom changes on script. Same for templates too.
  •  

PHPVibe A.Topic starter


shtefcs

  •  

PHPVibe A.Topic starter

Not this days, Mario is still not 100% recovered from his medical issues.
I'm doing the list but I would not have access to commit it anyways.
From what I know tomorow it's his first day at work, can't wait.

shtefcs

  •  

ajitsingh

  •  

PHPVibe A.Topic starter

We're still working on players, it's not very easy to add an new player and hook it everywhere.
also, have to change the twitter login class...sorry guys, there is a lot of work to do, the issues solved are cut on the list up.

grantj21

How about been able to play other source videos in local player?
  •  

PHPVibe A.Topic starter

Quote from: grantj21 on
How about been able to play other source videos in local player?

You can't do that with source grabbing, if they change something all your videos go offline.
You could try gk plugins, there is an topic about it.

PHPVibe A.Topic starter

WTF is wrong with Twitter?
We've tried all the php classes on their site and no longer can login with them  >:(

Marius P.

Quote from: Alexander on
WTF is wrong with Twitter?
We've tried all the php classes on their site and no longer can login with them  >:(


You won't believe what the old class needed to work =))))

Tip:
lib/twitter/EpiTwitter.php now looks like this:

protected $requestTokenUrl= 'https://api.twitter.com/oauth/request_token';
  protected $accessTokenUrl = 'https://api.twitter.com/oauth/access_token';
  protected $authorizeUrl   = 'https://api.twitter.com/oauth/authorize';
  protected $authenticateUrl= 'https://api.twitter.com/oauth/authenticate';
  protected $apiUrl         = 'https://api.twitter.com';
  protected $apiVersionedUrl= 'https://api.twitter.com';
  protected $searchUrl      = 'http://search.twitter.com';
  protected $userAgent      = 'PHPVibe';
  protected $apiVersion     = '1.1';
  protected $isAsynchronous = false;
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

PHPVibe A.Topic starter

Quote from: @Mario on
You won't believe what the old class needed to work =))))

Tip:
lib/twitter/EpiTwitter.php now looks like this:

protected $requestTokenUrl= 'https://api.twitter.com/oauth/request_token';
  protected $accessTokenUrl = 'https://api.twitter.com/oauth/access_token';
  protected $authorizeUrl   = 'https://api.twitter.com/oauth/authorize';
  protected $authenticateUrl= 'https://api.twitter.com/oauth/authenticate';
  protected $apiUrl         = 'https://api.twitter.com';
  protected $apiVersionedUrl= 'https://api.twitter.com';
  protected $searchUrl      = 'http://search.twitter.com';
  protected $userAgent      = 'PHPVibe';
  protected $apiVersion     = '1.1';
  protected $isAsynchronous = false;


You're shitting me???? I've lost 4 days testing new classes.  >:( >:( >:( >:( >:( >:(

Marius P.

Quote from: Alexander on
You're shitting me???? I've lost 4 days testing new classes.  >:( >:( >:( >:( >:( >:(

Sorry buddy, it happens! I'm on my 8th day experimenting with the new players, and they still don't work flawless...this things take time, you have to find every stupid little thing...

We're almost there, and then it's Easter vacation time!!!
Happy with my help? Buy me a coffee.
Please, always use the search before opening a new topic! We're all here on our (limited) free time! Make sure you help yourself too!
  •  

tectonny

Good morning everyone, I'll give them a hint, the search could show the inicioo s videos on site, and then the online videos on Facebook.

Ie when no video the search will show straight from Youtube, see an example on this site:

http://midia.atualfeed.com.br/

See it show any video from Youtube that is not even on the site, and still plays without leaving the site.

It would be perfect.
  •  

PHPVibe A.Topic starter

Sanishan did something like this as an mod http://phpvibemod.com/free-youtube-search-module-phpvibe

But, if you go like this, it will work a few searches, then return empty, as Youtube has more an more limitations https://developers.google.com/youtube/v3/getting-started#quota

tectonny

Yes, but the site I gave the example works without problems.
I took the suggestion because the visitor does not even need to leave the site.
  •  

PHPVibe A.Topic starter


identicalmedia

SUGGESTIONS

CAN WE HAVE THE FOLLOWING IN 3.5 UPDATE?

1. BLOCK FOR BLOG on home page
2. related articles on Article Page
  •  

PHPVibe A.Topic starter


PHPVibe A.Topic starter


ronyhage

  •  

PHPVibe A.Topic starter


shtefcs

I know i am boring, but I am impatient like many other users. Can you tell us when you gonna release update. Few days, weeks, months or maybe even years ^^ ?
  •  

fourdeltaOne

question if the new update will be released, those who purchased pro edition version, update will be free?
Skype: epic.mediauz
  •  

PHPVibe A.Topic starter

The upgrade will be free, the only thing left is an logo on Chameleon player html5 version (flash for now we'll not have logo support).
So, today, tomorrow...

fourdeltaOne

Thank you  for your work! looking forward to the update)
Skype: epic.mediauz
  •  

PHPVibe A.Topic starter

Testing now on different servers, and pack it soon.
The logo for Chameleon will come as an patch, since the original developer is adding it as well.

PHPVibe A.Topic starter

The leftover threads will be patched soon as well, but we wanted to have a few work days if any issues, before the Easter break when we won't be around to assist.

PHPVibe A.Topic starter

Uploaded in the store.

This are just code changes, no database alteration.
An list of changes isd attached.
You can also use WinMerge or KDiff3 to check file differences (if you have custom changes).

DO NOT overwrite the vibe_config.php file.

shtefcs

  •  

PHPVibe A.Topic starter

Quote from: shtefcs on
do u have instruction how to upgrade from 3.3 to 3.6 ?

Follow the upgrade 3.3 to 3.5 topic and use the database converter from there, but the files from 3.6.

Lunar

New player works like a charm however JWPlayer 6 for youtube videos are not working. Its stuck on "loading player" on my site. Anyone experiencing the same?
  •  

PHPVibe A.Topic starter

Hmm, that was an miss.
Please redownload and replace com/com_video.php

or:

open com/com_video.php

and change the line under
//JwPlayer


to

if((get_option('remote-player',1) == 1) || (get_option('choosen-player',1) == 1) || ($video->media == "2") || $vid->VideoProvider == "youtube")	{
   

notice the extra

|| $vid->VideoProvider == "youtube"


and changed in embed.php

replace:

//JwPlayer
if((get_option('remote-player',1) == 1) || (get_option('choosen-player',1) == 1) || ($video->media == "2") || $vid->VideoProvider == "youtube")	{					 
add_filter( 'addplayers', 'jwplayersup' );  
}


with:

//JwPlayer
				 
add_filter( 'addplayers', 'jwplayersup' ); 


Here you have no way to add the extra check, so you have to put the js in by default.

Patches now applied to com/com_video.php and /embed.php

Lunar

As long as remote player is set to JWPlayer it works fine for youtube clips. However when the new player is set to play remote clips the player does not load.
  •  

PHPVibe A.Topic starter


mio

I use com_video.php and class.providers.php from the Xclub plugin, what are the lines to change/add?
Also I've changed vibe.style.css...

Thanks

  •  

PHPVibe A.Topic starter

The XClub plugin on 3.6? They are not compatible.
We will release an upgrade for it, but we've just released the script.

tectonny

  •  

PHPVibe A.Topic starter


tectonny

  •  

PHPVibe A.Topic starter

You want to say that youtube does not work trough jwplayer on mobile? Or what? Cause I don't understand you...

tectonny

Sorry for my english, open my site by mobile phone, check that the player is identical to youtube, but computed by entering the player is different and better.

I wish the player was iguao mobile to the computer.
  •  

PHPVibe A.Topic starter

You can't have the exact player on the mobile, it will always fallback to the video tag and let your mobile phone manage it.

tectonny

Sorry, did not understand.

I just wanted the same player in calular and computer. The computer is right on when he enters the cell no.

Al forehead, between my site by mobile phone.

http://videolegal.org/video/5800/piores-formas-de-por-seu-filho-pra-dormir/
  •  

tectonny

Another problem is that the adult plugins stopped working, I uploaded again but the option does not even appear in the administration.

And all the videos stopped working.

http://www.naoassista.com/
  •  

gaunt93

Is it possible to have categories automatically include particular tags, even when they are not technically part of the category?
  •  

MacKen

  •  

vipe

  •  

identicalmedia

  •  

MacKen

  •  

PHPVibe A.Topic starter

The 3.6 is not fully compatible with xclub, meaning xclub will remove most changes in 3.6, and if you upgrade phpvibe and still need xclub to work, you need to now overwrite moderator/hooks.php and lib/class.providers.php, but bets choice is to wait for the upgrade.

vipe

3.5 is not compatible with the module, now no 3.6. Why not keep up?
  •  

PHPVibe A.Topic starter

Because we've just released it...we could not know how the files look before it was done to work in parallel.

vipe

  •  

PHPVibe A.Topic starter


PHPVibe A.Topic starter

Ok, it's now safe, no longer replacing anything in com/com_video.php and lib/class.providers.php was updated for 3.6

PHPVibe A.Topic starter

Patched moderator/youtube-1by-1.php fixed/added author to import.

vipe

Thank you.
So I can update to 3.6 with xclub pack?
Where i find details on how to update from 3.5 to 3.6
  •  

PHPVibe A.Topic starter

There is no actual upgrade process, just files replacing.
List of files is up and that's all you need to do to upgrade from 3.5 to 3.6.



vipe

Quote from: Alexander on
There is no actual upgrade process, just files replacing.
List of files is up and that's all you need to do to upgrade from 3.5 to 3.6.
List of files?
Where?
How to replace vibe_config?
  •  

PHPVibe A.Topic starter


yuu

When launching my website with phpvibe after making a clean upgrade(uninstalling and fresh install) from 3.3 to 3.6 it crashes my entire server. Any thoughts as to why?
Modify message
  •  

ajitsingh

Guys, is PHPVibe 3.6 is final and stable release ?  :-\
or people are still getting issues, we should wait for another patch release ?
  •  

arnlweb

Hi,

I am trying to show-up meta keywords in my website http://www.axomtube.in.
Can you please tell me how do I add it? Is there any configuration in admin section?

I am using phpvibe 3.6 version.


Please advice!
Thank you.
Web Development Services
  •  

ollipaust

u can add meta keywords in tpl.global.php in <head>-section
but google made changes about keywords u should read
  •  

PHPVibe A.Topic starter

Quote from: ollipaust on
u can add meta keywords in tpl.global.php in <head>-section
but google made changes about keywords u should read

He's right, Google completely dropped meta-keywords.

ajitsingh

Quote from: ajitsingh on
Guys, is PHPVibe 3.6 is final and stable release ?  :-\
or people are still getting issues, we should wait for another patch release ?

:-[
  •  

PHPVibe A.Topic starter

Quote from: ajitsingh on
:-[

It's stable and final.
Sorry, missed your message, but the answer was already in the client forum.

uhpvl

  •  

PHPVibe A.Topic starter

Quote from: uhpvl on
What about sitemap? On which version, we will see?

It's on the to do plugins list.

xda

Problem:

1.homepage search not function. cant search.
2. ads problem when delete
"Warning: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-25,25' at line 1 in /home/***/public_html/lib/class.ezsql.php on line 249
Ads"

Please help
  •  

PHPVibe A.Topic starter

1. I don't understand.You can't search from the first page? Can you open an js console and see if there is any error? https://developer.chrome.com/devtools/docs/console
2. Was fixed in 3.6

xda

  •  

PHPVibe A.Topic starter

Weird, I have no such error anymore after upgrading.
Can you send me a link so I can look at the search thing?

xda

Quote from: Alexander on
Weird, I have no such error anymore after upgrading.
Can you send me a link so I can look at the search thing?

problem solved.

but now. why when i share at my FB. thumb not same with the video?
  •  

PHPVibe A.Topic starter

Quote from: xda on
problem solved.

but now. why when i share at my FB. thumb not same with the video?

Seems to be a common issue with Fb this days.

Similar topics (7)