okay thanks to thread #
https://vborg.vbsupport.ru/showpost....&postcount=353 i was able to get mine working....
if you get an error like this:
Invalid SQL:
INSERT INTO phrase VALUES ('', -1, 'radio_cat_added', 'Radio Category Added', 1000,'vbulletin');;
MySQL Error : Column count doesn't match value count at row 1 Error Number : 1136
Date : Thursday, September 14th 2006 @ 11:27:01 PM
Script :
http://www.talkjesus.com/admincp/ins...php?do=steptwo
Referrer :
http://www.talkjesus.com/admincp/ins...php?do=stepone
IP Address : xx
Username : Chad
Classname : vb_database
your problem is this:
$install=array();
$install[] = "INSERT INTO ".TABLE_PREFIX."phrase VALUES ('', -1, 'radio_cat_added', 'Radio Category Added', 1000,'vbulletin');";
$install[] = "INSERT INTO ".TABLE_PREFIX."phrase VALUES ('', -1, 'radio_cat_edited', 'Radio Category Edited', 1000,'vbulletin');";
$install[] = "INSERT INTO ".TABLE_PREFIX."phrase VALUES ('', -1, 'radio_cat_deleted', 'Radio Category Deleted', 1000,'vbulletin');";
$install[] = "INSERT INTO ".TABLE_PREFIX."phrase VALUES ('', -1, 'radio_cat_ndeleted', 'Radio Category Not Deleted', 1000,'vbulletin');";
$install[] = "INSERT INTO ".TABLE_PREFIX."phrase VALUES ('', -1, 'radio_channel_added', 'Radio Channel Added', 1000,'vbulletin');";
$install[] = "INSERT INTO ".TABLE_PREFIX."phrase VALUES ('', -1, 'radio_channel_edited', 'Radio Channel Edited', 1000,'vbulletin');";
$install[] = "INSERT INTO ".TABLE_PREFIX."phrase VALUES ('', -1, 'radio_channel_deleted', 'Radio Channel Deleted', 1000,'vbulletin');";
$install[] = "INSERT INTO ".TABLE_PREFIX."phrase VALUES ('', -1, 'radio_channel_ndeleted', 'Radio Channel Not Deleted', 1000,'vbulletin');";
in the install_vBradio.php file between line 80 & 89... needs to be entered into your phrases ONE LINE A TIME .....
like so...
'', -1, 'radio_cat_added', 'Radio Category Added', 1000,'vbulletin'
I entered each one of these a new phrase which i named based on the line ex. RadioCatAdded..
after i got all of those entered.., i deleted line 80 - 89 REFRESHED (F5) and then went back to the install..
it worked fine...
then I was directed to uninstall the install_vBRadio.php and the xml file (in the AdminCP directory....
I appreciate the info given to me, and i hope this detailed info works for someone...