Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > Premium Archives > Advanced Warning System (AWS)
FAQ Community Calendar Today's Posts Search

Closed Thread
 
Thread Tools
Version 3.1.8 is now out Details »»
Version 3.1.8 is now out
Version: , by sv1cec sv1cec is offline
Developer Last Online: Mar 2022 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 02-22-2005 Last Update: Never Installs: 0
 
No support by the author.

You may download the latest version of AWS, v. 3.1.8.

This version includes a new feature, which allows you to remove user priviledges according to the warning points he has. As a start, you may define the number of points, after which a member's signature will not be shown, or his avatar will not be shown.

Other features will probably be added, as time allows me.

Rgds

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #2  
Old 02-22-2005, 03:42 PM
jluerken's Avatar
jluerken jluerken is offline
 
Join Date: Aug 2003
Location: Germany
Posts: 1,016
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

1. The ALTER table commands from the update instructions does not work
2. Is the new feature a must or can we turn it off cause I like to warn my members but don't want to limit their rights
  #3  
Old 02-22-2005, 04:01 PM
sv1cec sv1cec is offline
 
Join Date: May 2004
Location: Athens, Greece
Posts: 2,091
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

What you mean it doesnot work?

No, you can turn it off, from the Warning Options. If you set the corresponding numbers to zero, the feature is deactivated.

Let me know what's the problem with the Alter table command.

Never mind, I found it, I forgot to alter the table.!! LOL Changing the instructions now.
  #4  
Old 02-22-2005, 04:55 PM
Blootix Blootix is offline
 
Join Date: Feb 2005
Posts: 78
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by sv1cec
What you mean it doesnot work?

No, you can turn it off, from the Warning Options. If you set the corresponding numbers to zero, the feature is deactivated.

Let me know what's the problem with the Alter table command.

Never mind, I found it, I forgot to alter the table.!! LOL Changing the instructions now.
What he means is that it says
Code:
An error occurred while attempting to execute your query. The following information was returned.
error number: 1103
error desc: Incorrect table name '".TABLE_PREFIX."warning_options'
when I try to execute
Code:
UPDATE `".TABLE_PREFIX."warning_options` SET version='3.1.8' WHERE oid='1'
The UPDATE command returns with error 1103.

Please help! I wanna get this fixed before I open up the boards again from the update to 3.0.7. :smoke:

And I tried it twice---both times they give me that error. Does that mess up the board??? :nervous:
  #5  
Old 02-22-2005, 05:27 PM
sv1cec sv1cec is offline
 
Join Date: May 2004
Location: Athens, Greece
Posts: 2,091
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Blootix
What he means is that it says
Code:
An error occurred while attempting to execute your query. The following information was returned.
error number: 1103
error desc: Incorrect table name '".TABLE_PREFIX."warning_options'
when I try to execute
Code:
UPDATE `".TABLE_PREFIX."warning_options` SET version='3.1.8' WHERE oid='1'
The UPDATE command returns with error 1103.

Please help! I wanna get this fixed before I open up the boards again from the update to 3.0.7. :smoke:

And I tried it twice---both times they give me that error. Does that mess up the board??? :nervous:
Are you using a table prefix? If not, you should erase the part ".TABLE_PREFIX".

Rgds
  #6  
Old 02-22-2005, 05:53 PM
Blootix Blootix is offline
 
Join Date: Feb 2005
Posts: 78
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by sv1cec
Are you using a table prefix? If not, you should erase the part ".TABLE_PREFIX".

Rgds
table prefix as in something like vb3_warnoptions? Then yes I'm using a table prefix. It's vb3.



EDIT: Nevermind I got it. But it was through like 4-5 times of unsuccessful. It seems that I forgot to put vb3 in front!

I found one bug in the instructions though.
In the instructions it should say
Code:
Edit file showthread.php and find:

$hierarchical=$warn_opts['hierarchical'];
$viewoption=$warn_opts['viewoption'];
$buttons=$warn_opts['textbutoption'];

Below that, add:
$sigthress=$warn_opts['sig_thresshold'];
$avatarthress=$warn_opts['avatar_thresshold'];
instead of
Code:
Edit file showthread.php and find:

$hierarchical=$warn_opts['hierarchical'];
$viewoption=$warn_opts['viewoption'];
$buttons=$warn_opts['textbutoption'];

Below that, add:

$sigthress=$warn_opt



s['sig_thresshold'];
$avatarthress=$warn_opts['avatar_thresshold'];
Unsuccessfully executing shouldn't affect the boards in a negative way right? :nervous:
  #7  
Old 02-23-2005, 04:27 AM
sv1cec sv1cec is offline
 
Join Date: May 2004
Location: Athens, Greece
Posts: 2,091
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Blootix
table prefix as in something like vb3_warnoptions? Then yes I'm using a table prefix. It's vb3.



EDIT: Nevermind I got it. But it was through like 4-5 times of unsuccessful. It seems that I forgot to put vb3 in front!

I found one bug in the instructions though.
In the instructions it should say
Code:
Edit file showthread.php and find:

$hierarchical=$warn_opts['hierarchical'];
$viewoption=$warn_opts['viewoption'];
$buttons=$warn_opts['textbutoption'];

Below that, add:
$sigthress=$warn_opts['sig_thresshold'];
$avatarthress=$warn_opts['avatar_thresshold'];
instead of
Code:
Edit file showthread.php and find:

$hierarchical=$warn_opts['hierarchical'];
$viewoption=$warn_opts['viewoption'];
$buttons=$warn_opts['textbutoption'];

Below that, add:

$sigthress=$warn_opt



s['sig_thresshold'];
$avatarthress=$warn_opts['avatar_thresshold'];
Unsuccessfully executing shouldn't affect the boards in a negative way right? :nervous:
You know, you really had me puzzled with that. I couldn't figure out how on earth those carriage returns were entered there. Then I figured out, the twins were in the room alone, at some time, while the editor was on with that file.!!!!

Sorry abnout that.
Closed Thread


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 09:08 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.04967 seconds
  • Memory Usage 2,266KB
  • Queries Executed 20 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (8)bbcode_code
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (7)post_thanks_box
  • (7)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (7)post_thanks_postbit_info
  • (6)postbit
  • (7)postbit_onlinestatus
  • (7)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete