View Single Post
  #3 (permalink)  
Old 11-04-2006, 09:51 PM
PvtRyan PvtRyan is offline
Junior Member
 
Join Date: Jul 2006
Posts: 11
Originally Posted by Marty
I know iam late with this but for others.....

To reset your admin.php access run the following sql text, then obviously goto *http://your_site.com/admin.php asap and set yourself up, but this time DONT create a user account aswell.

Code:
DROP TABLE IF EXISTS `nuke_authors`;
CREATE TABLE `nuke_authors` (
  `aid` varchar(25) NOT NULL default '',
  `name` varchar(50) default NULL,
  `url` varchar(255) NOT NULL default '',
  `email` varchar(255) NOT NULL default '',
  `pwd` varchar(40) default NULL,
  `counter` int(11) NOT NULL default '0',
  `radminsuper` tinyint(1) NOT NULL default '1',
  `admlanguage` varchar(30) NOT NULL default '',
  `radminblocker` tinyint(2) NOT NULL default '0',
  PRIMARY KEY  (`aid`),
  KEY `aid` (`aid`)
);
I did this, but when I go to my admin login page and create a new account without making a normal one, then try to login, it sends me back to the create a Super User account page.
Reply With Quote