Quote:
Originally Posted by TeknoSounds
Was not fixed in 0.81 
Its probably the style issue numbering issue. I'm only running the default style on the dev site, but I had other styles before it.
It appears the styleid is 9.
site is:
http://dev.teknosounds.com/messageboard
note theres no content on the cms atm.
|
Your CMS seems to be running on styleid 1 - but since you've only got one style it sounds more like my code is a fault. Almost certainly it's this:
PHP Code:
function vbsc_curstyle(){
global $vbulletin;
$sid = $vbulletin->userinfo['styleid'];
if($sid < 1)
$sid = $vbulletin->options['styleid'];
return sprintf("style%05d", $sid);
}
I'll have a dig through the vBulletin source and find out where they pull the styleid from.
Quote:
Ok, all done and working, the problem I had was in your instructions, you said upload the contents of the .zip folder to your forum root.
So I did, that meant the folder inside named 'VBCS' became a directory in the forum root.
Perhaps you should rename the folder within the .zip file to 'forum' that way people would possibly recognise the structure.
|
Good idea