[ 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.
  •  

Similar topics (7)