vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Advanced Warning System (Beta Version) (https://vborg.vbsupport.ru/showthread.php?t=95921)

docvader 12-25-2005 10:35 PM

Quote:

Originally Posted by docvader
An error has occured, the following message has been left below:

Invalid User ID Input


John,
I get the same error, when issuing a warning on ANY post, for ANY user.

BTW, I've upgraded from AWS on 3.07 to this AWS on 3.52 also. Not sure if that's causing the problem. Maybe a totally clean install, removing all the previous databases, is the answer. Got any suggestions as to how to do that?

Thanks, and Merry Xmas. Great job porting this hack over

rich

PS: Any reason why, after installing this, my search for NEW POSTS (or any posts of any days), leads to the search page, and not a listing of the new posts?????? I'm completely befuddled with that one.

x.russbo.com/vb/index.php

Well, I've got some major issues after this upgrade.

I've installed it as per instructions, and now, I cannot log in to my board's admin area. Not sure what happened after this install, but I can't get into my forum to play with this. What did I do????? Completely puzzled.

Any suggestions? Thanks!

docvader 12-26-2005 01:47 AM

Quote:

Originally Posted by docvader
Well, I've got some major issues after this upgrade.

I've installed it as per instructions, and now, I cannot log in to my board's admin area. Not sure what happened after this install, but I can't get into my forum to play with this. What did I do????? Completely puzzled.

Any suggestions? Thanks!

Well, that was fun.

I finally got access to my admin area by turning off the "hooks" in config.php.

I disabled the AWS product, and I was finally able to log in without problem. Also, the search function reverted to normalcy.

John, something went seriously wrong here. I think it has to do with the fact that I used AWS (and loved it) on my 3.07 board. Upgrading to 3.52, and installing this, did not make my forums "happy". I think I "removed" myself from the system access wise, by clicking on "warn 'me'" on one of my posts, just to see what page would come next, as a test. I got the "wrong user ID" mentioned previously. Apparently, something wrong happens when you "warn user". It might have to do with the fact that there are previous associated databases. I shall reattempt this on my test board to see what happens.

Really wish there was a way to get this working. I understand how difficult this is.

Thanks!
rich

slvr ralliart 12-26-2005 07:17 AM

This hack is awesome, just what my forum needs...

Installed with no problems, all went nice and smooth with installing and works error free :D


one question... where do I upload the "kill_warns.php" file? In my forums root directory?!?

Hornstar 12-27-2005 05:56 AM

Quote:

Originally Posted by docvader
Well, that was fun.

I finally got access to my admin area by turning off the "hooks" in config.php.

I disabled the AWS product, and I was finally able to log in without problem. Also, the search function reverted to normalcy.

John, something went seriously wrong here. I think it has to do with the fact that I used AWS (and loved it) on my 3.07 board. Upgrading to 3.52, and installing this, did not make my forums "happy". I think I "removed" myself from the system access wise, by clicking on "warn 'me'" on one of my posts, just to see what page would come next, as a test. I got the "wrong user ID" mentioned previously. Apparently, something wrong happens when you "warn user". It might have to do with the fact that there are previous associated databases. I shall reattempt this on my test board to see what happens.

Really wish there was a way to get this working. I understand how difficult this is.

Thanks!
rich


I had this on 3.0.8 and loved it and then i went to install this again because i had 3.5 and things went wrong big time, so bad that i had to install my forums from scratch again as nothing worked to resolve it. But then, i tried it again and everything went okay, but took me alot of work, if you read back on my other posts you will see what i had to go through lol. But i couldnt have a forum without this hack, John did an awesome job on 3.0.8 and deserves another thanks.

docvader 12-27-2005 06:39 AM

Quote:

Originally Posted by hornstar1337
I had this on 3.0.8 and loved it and then i went to install this again because i had 3.5 and things went wrong big time, so bad that i had to install my forums from scratch again as nothing worked to resolve it. But then, i tried it again and everything went okay, but took me alot of work, if you read back on my other posts you will see what i had to go through lol. But i couldnt have a forum without this hack, John did an awesome job on 3.0.8 and deserves another thanks.

Well, horn, I'd love to get this hack back on my boards also. I wonder if, by reinstalling your forums, you wiped the old AWS databases. I really think that they interfere with the new install.

There has to be a way of "disabling" them, so that one can install the new hack on top of them. Or, just remove all the previous tables and start from scratch.

I just don't know what all they are. There are some in the Users table which are not obvious; some of the larger tables are easier to find.

vampireus 12-28-2005 06:14 AM

Quote:

Originally Posted by docvader
Maybe a totally clean install, removing all the previous databases, is the answer. Got any suggestions as to how to do that

Yes I also would like to know how to uninstall the hack completely + clear all related databse, so I can make a clean reinstall

Freezerator 12-30-2005 05:34 PM

Quote:

Originally Posted by docvader
An error has occured, the following message has been left below:

Invalid User ID Input


John,
I get the same error, when issuing a warning on ANY post, for ANY user.

BTW, I've upgraded from AWS on 3.07 to this AWS on 3.52 also. Not sure if that's causing the problem. Maybe a totally clean install, removing all the previous databases, is the answer. Got any suggestions as to how to do that?


I got the same issue. I get a db error that a column is missing, here is some example code:

Code:

Database error in vBulletin 3.5.2:

Invalid SQL:
update user set warning_level='1', warnings='1' where userid='6783';

MySQL Error  : Unknown column 'warnings' in 'field list'
Error Number : 1054
Date        : Friday, December 30th 2005 @ 07:23:30 PM
Script      : http://xxxxxx.net/forum/Warn.php
Referrer    : http://xxxxx.net/forum/Warn.php?do=WarnUser&id=6783&post=1749928
IP Address  : xx.xx.38.153
Username    : Freezerator
Classname    : vb_database

I have a table called warnings. I searched the thread, and this error has come after 23december. Thanks in advance.

Freezerator 12-30-2005 06:03 PM

Fixed:

I ran this query on my users table:
Code:

ALTER TABLE user
        ADD warnings INT(5) DEFAULT '0',
        ADD warning_level INT(15) DEFAULT '0',
        ADD warning_bans INT(2) DEFAULT '0',
        ADD alerts INT(5) DEFAULT '0',
        ADD warn_notes SMALLINT DEFAULT '0'
;

It did the trick. I hope this helps for others to :)

Zoomby 12-30-2005 06:28 PM

After install I can't get into Admincp, get errors when "new post" = no new posts and after last 24h "Warning: in_array(): Wrong datatype for second argument in /search.php on line 269" around 30 lines then search
If I try to save something in UserCP i get "Could not find phrase '::$values for profile fields is not an array::'."
If I try to view user "This user has not registered and therefore does not have a profile to view."
If I try to wanr user "An error has occured, the following message has been left below:

Invalid User ID Input"

How to disable this hack if I can get into AdminCP...what files on server do I need to edit to get my forum back! Please don't say I have to reinstall!

If you didn't guess from my post, I'm new to this!

Zoomby 12-30-2005 07:56 PM

FIXED my problem!
Remove:
global $vbulletin;
line in functions_warning.php file

I don't belive this line caused all that trouble!!! one global! I did have to read every post and try every single change that was posted!

I didn't check everything, but for now I'm happy that I can get into AdminCP and warning, new posts and all is not returning any errors.

KirbyDE or sv1cec update this please in next hack update.

BTW great hack....



edit: after reading entire thread, I can see that this gloabl was metioned before...sorry for euphoria :) :o


All times are GMT. The time now is 05:31 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.02983 seconds
  • Memory Usage 1,758KB
  • 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_code_printable
  • (6)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)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