Sub Menu
Links Menu
Online Users

In total there are 474 users online :: 2 registered, 0 hidden and 472 guests

Most users ever online was 1091 on Wed Aug 16, 2023 5:27 pm

Registered users: Bing [Bot], Google [Bot] based on users active over the past 60 minutes

Everybody are banned!

Support for IntegraMOD 140

Moderator: Integra Moderator

Everybody are banned!

PostAuthor: Dkangel » Thu Jun 29, 2006 9: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 4: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 3:03 am
Cash on hand: 0.00

PostAuthor: Dkangel » Wed Jul 05, 2006 4: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 4: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 3:03 am
Cash on hand: 0.00

Re: Everybody are banned!

PostAuthor: Teelk » Fri Jul 07, 2006 6: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 4: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 5:25 pm
Cash on hand: 0.00
Location: Canada

PostAuthor: Dkangel » Mon Jul 10, 2006 2: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 4: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 3:03 am
Cash on hand: 0.00

Re: Everybody are banned!

PostAuthor: Teelk » Tue Jul 11, 2006 12: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 4: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 5:25 pm
Cash on hand: 0.00
Location: Canada

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

Well, letÂÂÂ ´s go:
I use the phpMyAdmin of the à¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€¦Ã¢â‚¬Å“General Adminà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€š
Last edited by Dkangel on Wed Dec 31, 1969 4: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 3:03 am
Cash on hand: 0.00

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

I think Teelk is saying, use the

phpMyAdmin of your MySQL Server
Last edited by Okki on Wed Dec 31, 1969 4: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 1:05 pm
Cash on hand: 0.00

PostAuthor: Dkangel » Wed Jul 12, 2006 3: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 4: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 3:03 am
Cash on hand: 0.00

Re: Everybody are banned!

PostAuthor: Teelk » Wed Jul 12, 2006 1: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 4: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 5:25 pm
Cash on hand: 0.00
Location: Canada

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

Yes, Teelk... this column is set to 0 for all...
<img>
Last edited by Dkangel on Wed Dec 31, 1969 4: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 3:03 am
Cash on hand: 0.00

PostAuthor: kronow » Tue Jul 18, 2006 1: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 4:00 pm, edited 1 time in total.

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

PostAuthor: kronow » Tue Jul 18, 2006 1: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 4:00 pm, edited 1 time in total.

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

PostAuthor: kronow » Tue Jul 18, 2006 2: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 4:00 pm, edited 1 time in total.

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

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

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

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

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

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

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

Next

Return to IntegraMOD 140

Who is online

Registered users: Bing [Bot], Google [Bot]

cron