• Welcome to PHPVIBE Forums. Please log in.

[ Video Sharing CMS v4 ] Feature Proposal And Suggestions!

Started by jayelem,

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

jayelemTopic starter

I'm really digging this software. Some things i'd like to see in future releases would be last logged in/popular users and users/channels search and maybe a cam page if thats not already possible through create a page? not sure, anyone know? it would also be great to have a customize layout to rearrange items and colors easily.

Really great script, i'll add things to this thread when i think of think of them if anyone reads :)
  •  

PHPVibe A.

Hi Jayelem,

for users logged in (sidebar) open sidebar-right.php in tpl/main/

$users = $cachedb->get_results("SELECT id,name,avatar FROM ".DB_PREFIX."users order by id desc limit 0,20");


and change it to
$users = $db->get_results("SELECT id,name,avatar FROM ".DB_PREFIX."users order by lastlogin desc limit 0,20");


Won't give you users online since it doesn't track with an "last seen" alike field, but will list last users who have logged in, and it's pretty close.
Be aware the query can be bit heavy because it's live (no cache).

PHPVibe A.

"maybe a cam page" I don't really understand this.
You can rearrange the layout with css pretty easy, we won't ever build an manager like wordpress (for example) because PHPVibe stores a lot of info, not just an couple of posts, and every extra query will make it heavier.

jayelemTopic starter

Thanks for quick reply! regarding the cam suggestion, i meant like a live adult cam script to broadcast and perhaps the option to make it prescription based, would also be cool to have a prescription feature for premium membership videos for users as well. Would be cool to upload direcly from webcam such as youtube has, not mandatory but a handy feature to consider.
  •  

PHPVibe A.


jayelemTopic starter

I was wondering is there a photo and music importer feature installed or a plugin you know of? that would a really good feature to include as well.
  •  

PHPVibe A.

No, not yet. But if you know any api, you can suggest.

Similar topics (7)