PDA

View Full Version : Template Addons


Snoop-It
07-10-2005, 01:40 AM
Hi All,

Im new to vB so please excuse me...

Iv installed this system on my forum BUT where is that part where you add on new templates to the default style - i.e. - warn_viewb_row

Iv been through the installation file and i dunno, i just cant find it, and the other templates warn_xyz etc...

I only realized when looking at the other posts in this section as my AWS system doesn't function 100% well :ermm:

Could some one be greatful and point out in the installation file what templates to add, the names and what content inside it please?

Thanks inadvance!

sv1cec
07-10-2005, 05:30 AM
The new templates should be added for you automatically. They end up in a group of templates called "Advanced Warning System Templates", but unfortunatelly vB is sorting the groups by the first letter of the template names and since this is "warn_", the group ends up towards the bottom of the list of template groups.

Go into your admincp and then Style Manager. From the list on the left, where the template groups are shown, scroll almost all the way to the bottom. If you have made the changes correctly, there should be a group called Advanced Warning System Templates, towards the end there.

Let me know if you got it.

Snoop-It
07-10-2005, 02:01 PM
oh yeah yeah i see it...

but my system dont even work properly.. it doesnt even show the warning in the postbit.. only when you click on a users profile it shows it.. and it doesnt allow me to warn some one from the actual post. its proper messed up :S i just downloaded that zip file and followed it from there, i dont know what other addons i need to put in.

King Kovifor
07-10-2005, 02:19 PM
<a href="https://vborg.vbsupport.ru/showthread.php?t=91329" target="_blank">https://vborg.vbsupport.ru/showthread.php?t=91329</a>

Try making sure you made the settings... Instructions there ^^

Snoop-It
07-10-2005, 02:38 PM
Na i ran that query and i got this back (in mysql)

Error
SQL-query:

SELECT *
FROM setting
WHERE varname LIKE 'warn_%'
LIMIT 0 , 30
MySQL said:

#1146 - Table 'dholahol_forum.setting' doesn't exist

[ Back ]

what does that mean? or what do i do?

sv1cec
07-10-2005, 02:49 PM
Your setting table does not exist??? That's interesting, is this an active forum site, or a test environment? If it's a running site and your setting table does not exist, you have a huge problem. Is your table prefix the one shown "dholahol_forum.setting"?

Snoop-It
07-10-2005, 02:53 PM
Too much information :|:|:| lol its my actual main forum for the site.

Its not a test forum.

table prefix? i dont know nothing about these things...

My database iv installed it on is "dholahol_forum" and when i installed it, the prefix thing was "vb3_" i didn't touch it.

sv1cec
07-10-2005, 03:07 PM
Well, if your database prefix is vb3_, you should add that in front of the table name, when you run the query, so in reality you should run something like:


select * from vb3_setting where ....


rgds

Snoop-It
07-10-2005, 03:13 PM
I done that but its not picking that table up. the only tables with warn in them are..

vb3_warning_types
vb3_warnings

i don't know how it works... everything i put in i get the same error saying: #1146 - Table 'dholahol_forum.setting' doesn't exist

What's that mean? i don't know what its saying. If it wernt there then the forum wouldn't be functioning then?

sv1cec
07-10-2005, 08:26 PM
Run this query:

SELECT * FROM vb3_setting WHERE varname like 'warn_%'

And let me know what it shows.