Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
February 1, 20187 yr Do you have ftp access to your files or are you cloud hosted? I've actually got some previously used code to add "thumbnail" support to the existing rebuild feature. Which should make it into the next version but can provide a patch sooner if you can modify your files. Hi Mike, Yes, I have FTP access to my VPS, not on IPS cloud hosting. That would be great, currently my Videos System looks very broken. Many thanks. Any news on a fix, please Mike? My videos are still showing no image thumbnails since moving to S3 and Cloudfront. The rebuild tool doesn't fix the thumbnails. If I edit a video and save it, it creates a new thumbnail but I need a bulk fix, ideally. Thanks.
February 4, 20187 yr Author Just now noticed that Video Statistics, on the Videos splash page, doesn't update when you delete videos: I had one test video and deleted it, and the video count remains at 1. I've noted this in a bug report. I'm actually in the middle of updating the Videos app now, so will be included in the very next release. I set 21 videos to show by category page in the settings Do you have anything set in the categories "per page" setting? If a value is detected in the category settings, it will override the "Videos per page" video setting. Any news on a fix, please Mike? My videos are still showing no image thumbnails since moving to S3 and Cloudfront. I apologies for the delay, will PM you shortly.
February 9, 20187 yr Hi Mike, I just enabled Clubs and when adding a Video with a YouTube link, it doesn't seem to grab the Description from YT. I tried adding a video in the main Video app to compare, and the same, the video appears with the thumbnail but without a description. Is that intentional? I'm sure it used to fetch the description as well as the title and thumbnail. No biggie as the videos look nice and neat with no description but may be a bug for others? Many thanks.
February 13, 20187 yr Have you had any customers buy this to sell video access and not just provide it?
February 18, 20187 yr Author I just enabled Clubs and when adding a Video with a YouTube link, it doesn't seem to grab the Description from YT. As in automatically grab the title and description like the IPB 3.4 version did with "quick add video"? If so, watch this space. Have you had any customers buy this to sell video access and not just provide it? None that I'm aware of and it's not something that has native support in the Videos app either sorry. Edited February 18, 20187 yr by Mike John
February 18, 20187 yr As in automatically grab the title and description like the IPB 3.4 version did with "quick add video"? If so, watch this space. Awesome, thanks Mike!
February 21, 20187 yr Hi, I wrote a script to migrate videos from vBulletin Addon Video-Directory Remixed. I mangaged to import categories, videos, comments and tags, so far. But I need help with the tags. You can see them on the video page but you can't search them. I am sure this is because I just filled table core_tags and kept core_tags_cache and core_tags_perms untouched. So my question is how to fill core_tags_cache and core_tags_cache. Is there a background routine / maintenance process I can call?
February 21, 20187 yr Afer reindexing the searchindex the imported tags can be found. But I am stil wondering about different record counts. core_tags 12,623 core_tags_cache 10,474 core_tags_perms 10,469
March 14, 20187 yr Author  But I am stil wondering about different record counts. The counts will be a bit different because core_tags will have a row for each tag and the other tables will have a row for each content item (video). I would of suggested using something like the "setTags" function from "system/Content/Item.php" and to loop through the videos database table. It handles all 3 tags tables for you. But if the search index rebuilt the cache and perms for you, then it should be fine.
April 14, 20186 yr Author Videos v3.3 has been released and is the first of my major apps to receive new feature updates this year. I added several of the most popular requested suggestions including: Per category custom field support. Quick add video support. Video.JS support for uploaded videos. Improved front end design new trending, followed, discover and featured tabs .Including pagination and sorting. RSS import support for videos. IP.Board 4.3.x compatibility update. If you have any suggestions for future versions, please let me know.
April 14, 20186 yr Great work, thank you Mike! Am I okay to update to this following the beta version fixes you PM'd me, or should I not?
April 14, 20186 yr Author Am I okay to update to this following the beta version fixes you PM'd me, or should I not? v3.3.1 will fix several bugs from the new version except for the furl issue you had. Still working on that and shouldn't be too far behind.
April 14, 20186 yr @Mike John Thank you for the effort you put in and the respect you have for customers. Bought the app on your site, not here, but felt the need to say it here.
April 15, 20186 yr v3.3.1 will fix several bugs from the new version except for the furl issue you had. Still working on that and shouldn't be too far behind. I'm definitely better waiting for the next release then! My community would probably not be too happy with me, if we brought that issue back! Thanks again.
April 15, 20186 yr Thank you for this update! I have been waiting for RSS import. Now, how do I get a youtube channels rss feed to use with the RSS import feature? I can't seem to find an easy way of doing this on google. It seems youtube has removed rss functionality.
April 15, 20186 yr Thank you for this update! I have been waiting for RSS import. Now, how do I get a youtube channels rss feed to use with the RSS import feature? I can't seem to find an easy way of doing this on google. It seems youtube has removed rss functionality. I found this and it seems to be working:
April 16, 20186 yr Author @Mike John Thank you for the effort you put in and the respect you have for customers. Bought the app on your site, not here, but felt the need to say it here. Thank you. ? I'm definitely better waiting for the next release then! My community would probably not be too happy with me, if we brought that issue back! Thanks again. If you can just remind me in a few days, it shouldn't be much longer. I found this and it seems to be working: Yeah it seems there is still ways to get a feed through that method. Will see how that goes and if I need to, I can just expand the import code to support the Youtube API itself.
April 17, 20186 yr seems to be a flaw with the sorting of the various tabs for the front index on version for 4.2 the 'trending' display appears to be sorted via the 'tid' not 'video_trending_views' ?
April 18, 20186 yr Author the 'trending' display appears to be sorted via the 'tid' not 'video_trending_views' ? Can you point me to the code your talking about? The default sort for the "trending" tab should be. $table->sortBy = 'video_trending_views'; $table->sortDirection = 'desc';
April 21, 20186 yr seems to be a flaw with the sorting of the various tabs for the front index on version for 4.2 the 'trending' display appears to be sorted via the 'tid' not 'video_trending_views' ? the below edit seems to fix this for both 4.2 and 4.3 versions // $table->sortOptions = array(); $table->sortOptions = array( 'video_trending_views' ); how did this get thru pre-release checking?
April 24, 20186 yr Author the below edit seems to fix this for both 4.2 and 4.3 versions Thank you, my apologies. Disabling the sort options was intended but obviously it's causing issues because the sort by is checked against the sort options array. My tested was done via the date the video was added, so never noticed the sort not being applied. Logged this as a bug report and will be fixed next release.
April 27, 20186 yr If you can just remind me in a few days, it shouldn't be much longer. Polite reminder! Thanks Mike! ?
April 28, 20186 yr Is there a way for me to rebuild the images that are automatically generated/imported from videos? I had an issue with my images and now most of my videos from the point before correcting the images are blank.