Everybody are banned!

Support for IntegraMOD 140

Moderator: Integra Moderator

Everybody are banned!

PostAuthor: Dkangel » Thu Jun 29, 2006 10:38 am

Hi,

Recently, I lost my DB. After re-install the forum, and restore the DB, all users are with the Flag "Currently Banned", but the permissions are running ok...

In the Ban Control, nobody are listed, but the red flag is active in the topics and Profile.

What can I do?
Last edited by Dkangel on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.
.: <img> :.
User avatar
Dkangel
Newbie
Newbie
 
Posts: 18
Likes: 0 post
Liked in: 0 post
Joined: Mon May 22, 2006 4:03 am
Cash on hand: 0.00

PostAuthor: Dkangel » Wed Jul 05, 2006 5:31 am

Hi,

I soppose that the ban flag (red card) appear in all users of my forum, because I recover my DB using my MySQL Server on my Host Server (phpMyAdmin), and not using the tool à¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€¦Ã¢â‚¬Å“Recover DBà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€š
Last edited by Dkangel on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.
.: <img> :.
User avatar
Dkangel
Newbie
Newbie
 
Posts: 18
Likes: 0 post
Liked in: 0 post
Joined: Mon May 22, 2006 4:03 am
Cash on hand: 0.00

Re: Everybody are banned!

PostAuthor: Teelk » Fri Jul 07, 2006 7:03 pm

Your english is much better then my portuguese I'm sure. <img>

Run the following SQL using phpmyadmin. It will remove the red flags from all users and remove all users from the banlist.

Code: Select all
ALTER TABLE phpbb_users DROP user_warnings;ALTER TABLE phpbb_users ADD user_warnings smallint(5) default '0';DROP TABLE phpbb_banlist;CREATE TABLE phpbb_banlist (   ban_id mediumint(8) unsigned NOT NULL auto_increment,   ban_userid mediumint(8) NOT NULL default '0',   ban_ip varchar(8) NOT NULL default '',   ban_email varchar(255) default NULL,   PRIMARY KEY  (ban_id),   KEY ban_ip_user_id (ban_ip,ban_userid)) TYPE=MyISAM;
Last edited by Teelk on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.
User avatar
Teelk
Dev Team
Dev Team
 
Posts: 1309
Likes: 0 post
Liked in: 0 post
Joined: Tue Mar 14, 2006 6:25 pm
Cash on hand: 0.00
Location: Canada

PostAuthor: Dkangel » Mon Jul 10, 2006 3:56 am

Hi, Teelk!

Tks of the help, but... :S

I submit this code using the phpMyAdin in the ACP, and not is happend. So, I submit this code using the phpMyAdmin of my MySQL Server... and not again...

Have more that can I do?

Tks again...
Last edited by Dkangel on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.
.: <img> :.
User avatar
Dkangel
Newbie
Newbie
 
Posts: 18
Likes: 0 post
Liked in: 0 post
Joined: Mon May 22, 2006 4:03 am
Cash on hand: 0.00

Re: Everybody are banned!

PostAuthor: Teelk » Tue Jul 11, 2006 1:13 pm

Hmmm... try this in phpmyadmin...

Code: Select all
ALTER TABLE `phpbb_users`   DROP `user_warnings`;ALTER TABLE `phpbb_users` ADD `user_warnings` smallint(5) default '0';DROP TABLE `phpbb_banlist`;CREATE TABLE `phpbb_banlist` (   ban_id mediumint(8) unsigned NOT NULL auto_increment,   ban_userid mediumint(8) NOT NULL default '0',   ban_ip varchar(8) NOT NULL default '',   ban_email varchar(255) default NULL,   PRIMARY KEY  (ban_id),   KEY ban_ip_user_id (ban_ip,ban_userid)) TYPE=MyISAM;
Last edited by Teelk on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.
User avatar
Teelk
Dev Team
Dev Team
 
Posts: 1309
Likes: 0 post
Liked in: 0 post
Joined: Tue Mar 14, 2006 6:25 pm
Cash on hand: 0.00
Location: Canada

PostAuthor: Dkangel » Wed Jul 12, 2006 3:52 am

Well, letÂÂÂ ´s go:
I use the phpMyAdmin of the à¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€¦Ã¢â‚¬Å“General Adminà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€š
Last edited by Dkangel on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.
.: <img> :.
User avatar
Dkangel
Newbie
Newbie
 
Posts: 18
Likes: 0 post
Liked in: 0 post
Joined: Mon May 22, 2006 4:03 am
Cash on hand: 0.00

PostAuthor: Okki » Wed Jul 12, 2006 4:18 am

I think Teelk is saying, use the

phpMyAdmin of your MySQL Server
Last edited by Okki on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.
[hr][size=99px] [url=http]http][/size]
[color=red][size=99px][/size]
Please visit our advertisers.
User avatar
Okki
Dev Team
Dev Team
 
Posts: 576
Likes: 0 post
Liked in: 0 post
Joined: Sun Mar 26, 2006 2:05 pm
Cash on hand: 0.00

PostAuthor: Dkangel » Wed Jul 12, 2006 4:33 am

Ops! Hehehe...

Anyway, I run this code in my phpMyAdin of my SQL Server, and this is the result:

[code]ALTER TABLE `phpbb_users`  DROP `user_warnings` ;# Registro(s) afetado(s)]

But, I note that this tables (user_warnings and phpbb_banlist) alredy was empty!

Tks, again! hehehe
Last edited by Dkangel on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.
.: <img> :.
User avatar
Dkangel
Newbie
Newbie
 
Posts: 18
Likes: 0 post
Liked in: 0 post
Joined: Mon May 22, 2006 4:03 am
Cash on hand: 0.00

Re: Everybody are banned!

PostAuthor: Teelk » Wed Jul 12, 2006 2:29 pm

The user_warnings column in the users table should be set to 0 for all users now... is this the case?
Last edited by Teelk on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.
User avatar
Teelk
Dev Team
Dev Team
 
Posts: 1309
Likes: 0 post
Liked in: 0 post
Joined: Tue Mar 14, 2006 6:25 pm
Cash on hand: 0.00
Location: Canada

PostAuthor: Dkangel » Thu Jul 13, 2006 3:46 am

Yes, Teelk... this column is set to 0 for all...
<img>
Last edited by Dkangel on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.
.: <img> :.
User avatar
Dkangel
Newbie
Newbie
 
Posts: 18
Likes: 0 post
Liked in: 0 post
Joined: Mon May 22, 2006 4:03 am
Cash on hand: 0.00

PostAuthor: kronow » Tue Jul 18, 2006 2:14 pm

help! i jsut did the transfer from phpbb to the intergraMOD then this.


It appears you have been banned from this website. If this is a mistake or you are not sure why you are banned, please contact the board administrator.

Board Administrator: Forum [at] yourdivision.com

You have been blocked because you have permission to be staff, but the admins did not grant you permission in the security panel.
Last edited by kronow on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

kronow
Newbie
Newbie
 
Posts: 26
Likes: 0 post
Liked in: 0 post
Joined: Sun Jul 16, 2006 3:55 am
Cash on hand: 0.00

PostAuthor: kronow » Tue Jul 18, 2006 2:32 pm

also i get this error now

DEBUG MODE

SQL Error : 1146 Table 'yourdivision.phpbb_contact_list' doesn't exist

SELECT c.user_id, c.contact_id, c.alert, c.alert_status, c.display_name, u.username FROM phpbb_contact_list c, phpbb_users u WHERE u.user_id = c.contact_id AND c.user_id = -1 AND c.disallow = 0 AND c.user_ignore = 0 ORDER BY u.username ASC

Line : 120
File : class_contact.php
Last edited by kronow on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

kronow
Newbie
Newbie
 
Posts: 26
Likes: 0 post
Liked in: 0 post
Joined: Sun Jul 16, 2006 3:55 am
Cash on hand: 0.00

PostAuthor: kronow » Tue Jul 18, 2006 3:02 pm

now this when i try log in

Email message was blank

DEBUG MODE

Line : 104
File : smtp.php
Last edited by kronow on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

kronow
Newbie
Newbie
 
Posts: 26
Likes: 0 post
Liked in: 0 post
Joined: Sun Jul 16, 2006 3:55 am
Cash on hand: 0.00

PostAuthor: kronow » Tue Jul 18, 2006 3:35 pm

dont worry i got the toolkit mod to help me
Last edited by kronow on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

kronow
Newbie
Newbie
 
Posts: 26
Likes: 0 post
Liked in: 0 post
Joined: Sun Jul 16, 2006 3:55 am
Cash on hand: 0.00

PostAuthor: kronow » Tue Jul 18, 2006 3:44 pm

and it didnt work :@ so anouying now!!!
Last edited by kronow on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

kronow
Newbie
Newbie
 
Posts: 26
Likes: 0 post
Liked in: 0 post
Joined: Sun Jul 16, 2006 3:55 am
Cash on hand: 0.00

PostAuthor: kronow » Tue Jul 18, 2006 3:57 pm

ok how do i do this if i cant get access to admin rights !?
Last edited by kronow on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

kronow
Newbie
Newbie
 
Posts: 26
Likes: 0 post
Liked in: 0 post
Joined: Sun Jul 16, 2006 3:55 am
Cash on hand: 0.00

Re: Everybody are banned!

PostAuthor: Helter » Tue Jul 18, 2006 6:30 pm

since I am not at home I dont have the files available to give you the exact names, but you need to open your db in phpmyadmin and open phpbb_config.
look for admins allowed and mods allowed. edit these numbers to reflect your current staff
Last edited by Helter on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.
"Success is getting what you want. Happiness is wanting what you get." - Dale Carnegie
User avatar
Helter
Administrator
Administrator
 
Posts: 4554
Likes: 40 posts
Liked in: 116 posts
Images: 0
Joined: Sat Mar 11, 2006 4:46 pm
Cash on hand: 1,959.15
Location: Seattle Wa
IntegraMOD version: phpBB2x

PostAuthor: kronow » Wed Jul 19, 2006 1:08 am

ok but what if you cant get into admin?
Last edited by kronow on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

kronow
Newbie
Newbie
 
Posts: 26
Likes: 0 post
Liked in: 0 post
Joined: Sun Jul 16, 2006 3:55 am
Cash on hand: 0.00

Re: Everybody are banned!

PostAuthor: Helter » Wed Jul 19, 2006 2:14 am

phpmyadmin is a database tool. You should have a link to it in your webhost control panel. Not your forum control panel
Last edited by Helter on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.
"Success is getting what you want. Happiness is wanting what you get." - Dale Carnegie
User avatar
Helter
Administrator
Administrator
 
Posts: 4554
Likes: 40 posts
Liked in: 116 posts
Images: 0
Joined: Sat Mar 11, 2006 4:46 pm
Cash on hand: 1,959.15
Location: Seattle Wa
IntegraMOD version: phpBB2x

Re: Everybody are banned!

PostAuthor: kronow » Wed Jul 19, 2006 6:37 am

ok i will talk to my host lol hes my mate so he will sort it and then what i need to do is what you said above?
Last edited by kronow on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

kronow
Newbie
Newbie
 
Posts: 26
Likes: 0 post
Liked in: 0 post
Joined: Sun Jul 16, 2006 3:55 am
Cash on hand: 0.00

PostAuthor: kronow » Wed Jul 19, 2006 6:54 am

error when installing prill
Last edited by kronow on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

kronow
Newbie
Newbie
 
Posts: 26
Likes: 0 post
Liked in: 0 post
Joined: Sun Jul 16, 2006 3:55 am
Cash on hand: 0.00

Re: Everybody are banned!

PostAuthor: Helter » Wed Jul 19, 2006 7:04 am

what is the error?
Last edited by Helter on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.
"Success is getting what you want. Happiness is wanting what you get." - Dale Carnegie
User avatar
Helter
Administrator
Administrator
 
Posts: 4554
Likes: 40 posts
Liked in: 116 posts
Images: 0
Joined: Sat Mar 11, 2006 4:46 pm
Cash on hand: 1,959.15
Location: Seattle Wa
IntegraMOD version: phpBB2x

PostAuthor: kronow » Wed Jul 19, 2006 7:10 am

Critical Error!
message_die() was called multiple times.

--------------------------------------------------------------------------------
Error #1



--------------------------------------------------------------------------------
Error #2
Could not get contacts list:buddy

Line : 120
File : D:Clients8538yourdivision.comyourdivision.comphpbb2modscontactclass_contact.php
SQL : SELECT c.user_id, c.contact_id, c.alert, c.alert_status, c.display_name, u.username FROM phpbb_contact_list c, phpbb_users u WHERE u.user_id = c.contact_id AND c.user_id = 93 AND c.disallow = 0 AND c.user_ignore = 0 ORDER BY u.username ASC
Last edited by kronow on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

kronow
Newbie
Newbie
 
Posts: 26
Likes: 0 post
Liked in: 0 post
Joined: Sun Jul 16, 2006 3:55 am
Cash on hand: 0.00

PostAuthor: kronow » Wed Jul 19, 2006 7:11 am

do you want to talk in chat might be easyer?
Last edited by kronow on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

kronow
Newbie
Newbie
 
Posts: 26
Likes: 0 post
Liked in: 0 post
Joined: Sun Jul 16, 2006 3:55 am
Cash on hand: 0.00

PostAuthor: kronow » Thu Jul 20, 2006 7:53 am

ok im in phpmyadmin on the cpannel and opened phpbb_users and phpbb_config
Last edited by kronow on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

kronow
Newbie
Newbie
 
Posts: 26
Likes: 0 post
Liked in: 0 post
Joined: Sun Jul 16, 2006 3:55 am
Cash on hand: 0.00

Back to the Original Subject ...

PostAuthor: XanaduRanch » Tue Jun 19, 2007 3:22 pm

I have the same issue, that is, all users show a little red square and the words "Currently Banned" below their names. Permissions and acess to the board are not affected. Admin functions show no one to "unban". Even a brand new user who signs up and makes a post gets the infamous red square and is listed as banned.

I am not sure how or when it occurred, it had to do with an upgrade from an old version, around 2.0.17. We're running 2.0.22 and IM 1.4.0. I've tried to go back and upgrade from there but the problem persists.

I applied the SQL queries listed at the beginning of this thread. No effect. But I too can't find whatever it is in the DB that may be causing the portion of the .script that is printing that on screen to decide everyone is currently banned but can post anyway.

Was there ever a solution found to this?

Does anyone know exactly what php .script is displaying the information on the page there? If so I could perhaps look at the code and see what database entry is causing this.

Thanks.
Last edited by XanaduRanch on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

XanaduRanch
Newbie
Newbie
 
Posts: 5
Likes: 0 post
Liked in: 0 post
Joined: Mon Jan 01, 2007 9:42 am
Cash on hand: 0.00


Return to IntegraMOD 140

Who is online

Registered users: App360MonitorBot, Bing [Bot], Paulmagall