If you are having issues with PlayTube v1.5 please post in here and I will try to be of assistance. I had some issues I had to fix (and still fixing) on my development server. Also if there are any modifications I have created, bare with me as I will be migrating them as I migrate Vigeos.net.
Known issues I am having
- Non SEO links do not work.
- YouPlay Theme larger than viewport
- Sub categories
- SEO links strip quotes but leave them in links (issue since 1.4.3)
YouPlay Theme larger than viewport fix:
Always On Hamburger Menu
In themes/youplay/css/style.css
Change line 1545
@media (max-width: 1251px) {
to
@media (max-width: 999999px) {
This will force the mobile menu across the whole site. More of a band-aid, which I prefer this look anyway. Will work on only having the sidebar only on homepage similar to other services.
Is it necessary to upgrade to the latest version now? Is there anything special compared to the old version?
Hi disquy,
top service - so you mod your view-count and dead-video scripts to work with 1.5.1 playtube ?
thanks
mr g
Hi disquy,
top service - so you mod your view-count and dead-video scripts to work with 1.5.1 playtube ?
thanks
mr g
I don't see any changes to the database structures for videos that could effect it off hand, but I haven't dug too far into it yet. I am working on upgrading vigeos.net, but until I transfer all of my modifications over to the new update, I won't know 100%.
Is it necessary to upgrade to the latest version now? Is there anything special compared to the old version?
Twitch support is the reason I have finally decided to upgrade. I'll have all of my modifications ported soon, but the update broke a lot of my customizations and I have to reconfigure categories. Once it's up and going, you'll see more modifications from me.
When I access your site, I log in then your menu is broken on the mobile .Did you upgrade to the latest version? Looks like the page load has improved a lot
When I access your site, I log in then your menu is broken on the mobile .Did you upgrade to the latest version? Looks like the page load has improved a lot
I still haven't finished porting my modifications. It's been pissing me off, because something they added broke my custom links, and I am having trouble porting that modification. You can see my progress here
https://vigeos.necessities.store
In regards to the menu, try clearing your cache, because it's working for me.
I have viewed your page, my resemblance, my home page disappeared from the categories they had, only Displays categories: Trending , Top Videos and Latest Videos … the others are all gone from the home page
I've finally figured out some issues with v1.5.1. I now have migrated www.vigeos.net to v1.5.1. I still need to add my previous modifications, but once I do, I'll start focusing on creating additional modifications.
The issue with categories is they are now stored in the database, so if you created any you would have to migrate those categories to the database.
Other than that, any modifications that I discover need updating on 1.5.1 I will keep you posted.
I have viewed your page, my resemblance, my home page disappeared from the categories they had, only Displays categories: Trending , Top Videos and Latest Videos … the others are all gone from the home page
This happened in the v1.5.1 update, it worked properly in v1.5. I'll compare the differences, but I actually kinda like it only showing the trending, top, and latest only as the page loads quicker vs having all of my categories.
I have viewed your page, my resemblance, my home page disappeared from the categories they had, only Displays categories: Trending , Top Videos and Latest Videos … the others are all gone from the home page
Sorry, been slammed at work, forgot to provide the fix:
Find in /sources/home/content.php
$db->where('category_id', "'".$cat_key."'");
Replace with:
$db->where('category_id', "{$cat_key}");