vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Major Additions - vBmusic 1.0 (https://vborg.vbsupport.ru/showthread.php?t=164297)

Oasismad 12-29-2007 07:05 PM

Seems this mod needs some work doing to make it easier and more compatiable and maybe someone who speaks english to help out too!

vnairp11 12-30-2007 03:59 AM

yeah some customization would make this the perfect mod :) also the links to the mp3's should be our domain not the modder's domain.

angkor408 01-03-2008 12:22 AM

I had download this updated XLM file got this error:

Database error in vBulletin 3.5.4:

Invalid SQL:

### INSERT QUERY GENERATED BY fetch_query_sql() ###
INSERT INTO plugin
(`active`, `executionorder`, `title`, `hookname`, `phpcode`, `product`)
VALUES
('1', '5', 'vBmusic Count Song, Album, Singer, List US IN singer, Threads, Posts, Total Onlines, Registed', 'global_start', '\r\n // Song Count Copyright by TuNguyen vi3t4lov3@yahoo.com\r\n$song_count_sql = $db->query_read(\"\r\n SELECT\r\n COUNT(id) as count\r\n FROM \" . TABLE_PREFIX . \"music_song LIMIT 1\");\r\n\r\n$song_count_sql_row = $db->fetch_array($song_count_sql);\r\n$vBmsongs = $song_count_sql_row[\'count\'];\r\n\r\n// Album Count Copyright by TuNguyen vi3t4lov3@yahoo.com\r\n$album_count_sql = $db->query_read(\"\r\n SELECT\r\n COUNT(id) as count\r\n FROM \" . TABLE_PREFIX . \"music_album LIMIT 1\");\r\n\r\n$album_count_sql_row = $db->fetch_array($album_count_sql);\r\n$vBmalbums = $album_count_sql_row[\'count\'];\r\n\r\n// Album Artist Copyright by TuNguyen vi3t4lov3@yahoo.com\r\n$artist_count_sql = $db->query_read(\"\r\n SELECT\r\n COUNT(id) as count\r\n FROM \" . TABLE_PREFIX . \"music_artist LIMIT 1\");\r\n\r\n$artist_count_sql_row = $db->fetch_array($artist_count_sql);\r\n$vBmartists = $artist_count_sql_row[\'count\'];\r\n // Users Registered Today\r\n\r\n $now = TIMENOW - intval($vboptions[\'hourdif\']); \r\n $cutoff = mktime(0, 0, 0, date(\'m\', $now), date(\'d\', $now), date(\'Y\', $now)); \r\n //$cutoff = $now - 86400 ; // Uncomment this line if you want a rolling 24 hours display \r\n $todaysregs = $db->query(\"SELECT userid, joindate, options, username, opentag, closetag, posts \r\n FROM \" . TABLE_PREFIX . \"user as user \r\n LEFT JOIN \" . TABLE_PREFIX . \"usergroup as usergroup ON(user.usergroupid = usergroup.usergroupid) \r\n WHERE joindate > \" .$cutoff. \" ORDER BY username\" ); \r\n\r\n unset ($regtoday); \r\n $vBmregtoday = 0; \r\n while ($today = $db->fetch_array($todaysregs)) \r\n { \r\n $today[visible] = 1 ;\r\n $vBmregtoday += 1;\r\n //$useroptions = convert_bits_to_array($today[\'options\'] , $vbulletin->bf_misc_useroptions);\r\n if ($today[options] & $vbulletin->bf_misc_useroptions[\'invisible\']) \r\n {\r\n $today[visible] = 0 ;\r\n if (($permissions[\'genericpermissions\'] & $vbulletin->bf_ugp_genericpermissions[\'canseehidden\']) OR $today[\'userid\'] == $vbulletin->userinfo[\'userid\']) \r\n { \r\n $today[visible] = 2 ; \r\n } \r\n } \r\n if ($today[visible]) \r\n { \r\n $regtoday .= \"<a href=\'member.php?u=$today[userid]\'>\"; \r\n if ($today[visible] == 2) \r\n { \r\n $regtoday .= \"$today[opentag]$today[username] ($today[posts] $vbphrase[posts])$today[closetag]</a>*, \"; \r\n } \r\n else \r\n { \r\n $regtoday .= \"$today[opentag]$today[username] ($today[posts] $vbphrase[posts])$today[closetag]</a>, \"; \r\n } \r\n } \r\n } \r\n if ($regtoday) \r\n { \r\n $regtoday = substr($regtoday, 0, strlen($regtoday)-2); \r\n } \r\n else\r\n {\r\n $regtoday = \"There have been no new registrations today.\";\r\n }\r\n\r\n// End Users Registered Today\r\n// forum stats start number of threads, posts\r\n$numbersmembers = $db->query_first(\"SELECT COUNT(*) AS users,MAX(userid) AS max FROM \" . TABLE_PREFIX . \"user\"); \r\n$vBmmembers = number_format($numbersmembers[\'users\']); \r\n$counter = $db->query_first(\"SELECT COUNT(postid) AS posts, COUNT(threadid) AS threads FROM \" . TABLE_PREFIX . \"post\"); \r\n$vBmposts=number_format($counter[\'posts\']); \r\n$countthreads = $db->query_first(\"SELECT COUNT(*) AS threads FROM \" . TABLE_PREFIX . \"thread\"); \r\n$vBmthreads=number_format($countthreads[\'threads\']); \r\n// forum stats end \r\n\r\n// total online start \r\n$datecut = TIMENOW - $vbulletin->options[\'cookietimeout\']; \r\n$headerguests=$db->query_first(\"SELECT COUNT(*) AS count FROM \" . TABLE_PREFIX . \"session WHERE userid=0 AND lastactivity>$datecut\"); \r\n$headerusers=$db->query_first(\"SELECT COUNT(DISTINCT(userid)) AS count FROM \" . TABLE_PREFIX . \"session WHERE \" . TABLE_PREFIX . \"session.userid>0 AND \" . TABLE_PREFIX . \"session.lastactivity>$datecut\"); \r\n$headerguests=$headerguests[count]; \r\n$headerusers=$headerusers[count]; \r\n$vBmonline=$headerguests+$headerusers; \r\n// total online end \r\n\r\n// get newest member name and userid start \r\n$getnewestmember=$db->query_first(\"SELECT userid, username FROM \" . TABLE_PREFIX . \"user WHERE userid=$numbersmembers[max]\"); \r\n$newusername = $getnewestmember[\'username\']; \r\n$newuserid = $getnewestmember[\'userid\']; \r\n// get newest member name and userid end\r\n ', 'vBmusic');

MySQL Error : Unknown column 'executionorder' in 'field list'




Quote:

Originally Posted by Vi3t4Lov3 (Post 1394908)
error fixed ...please re download and import again ...if have any problem please reply here


if you don't want to redownload ...just downlaod this file xml then import again ...


Vman 01-03-2008 04:09 AM

So I guess you guys did not read the prior pages, and the one I typed in bold RED LETTERS!!!!

https://vborg.vbsupport.ru/showthrea...=164297&page=7

Have fun trying to uninstall this jacked up program. I still have not been able to remove it!!!!!

LMAO!!!!!

koxito 01-03-2008 09:03 PM

Well i can download it in the first time.. Lol... the file appears to be corrupted. can you upload it again or something

xai.

Vman 01-04-2008 03:31 AM

Quote:

Originally Posted by koxito (Post 1414906)
Well i can download it in the first time.. Lol... the file appears to be corrupted. can you upload it again or something

xai.

Goood luck!!!! We can't not tell you guys enough about this program! IT SUCKES!!!! You are screwed the moment you install it and you can't get uninstall it!!!!!

Here is a stupid question Ill ask you... WHY HAVE YOU NOT READ THE PRIOR WARNING! Do you not think that most of us who have install it, have major experience in things like that and WE DO NOT SUPPORT IT!!!!!

So not to be mean but you have to do research before installing anything!!!!

:confused:

passwords 01-05-2008 12:08 PM

working after 7 hrs of editing :S
but is there any way to stop some groups from publishing new songs ?

update : solved

vnairp11 01-06-2008 11:38 PM

the script itself is working it jus needs to be updated and added new features

rapidphim 01-07-2008 03:27 AM

can this one be upgraded for upcoming vb 3.7?

doobiefillin 01-07-2008 01:43 PM

this mod has massive potential, it needs to be refined. please fix the bugs and i'll be sure to include it on my website. great job


All times are GMT. The time now is 10:13 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02077 seconds
  • Memory Usage 1,754KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete