If I remember correctly, if you can get from your latest backup, the line, or the table for "nuke_authors", for in there you would see your password, it will be encrypted. Should look something like this.
| Code:
|
--
-- Table structure for table `nuke_authors`
--
CREATE TABLE IF NOT EXISTS `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 '',
PRIMARY KEY (`aid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `nuke_authors`
--
INSERT INTO `nuke_authors` (`aid`, `name`, `url`, `email`, `pwd`, `counter`, `radminsuper`, `admlanguage`) VALUES
('coRpSE', 'God', 'http://www.headshotdomain.net', 'admin@headshotdomain.com', '3c2s2342a7ce973bc1704f50e0c743Tg569c', 3, 1, ''),
('Biteme', 'Biteme', '', 'dr_feel_yah99@yahoo.com', '5044241843a05a339721e1ec46e2d3cab1ef', 0, 1, ''),
('Rambo', 'Rambo', 'http://www.betterleftdead.com', 'tester@comcast.net', '90458a028c8c7225ce45132f5009284b99f', 0, 0, '');
|
the line
('coRpSE', 'God', 'http://www.headshotdomain.net', 'admin@headshotdomain.com', '3c2s2342a7ce973bc1704f50e0c743Tg569c', 3, 1, ''),
is the line you will find 3c2s2342a7ce973bc1704f50e0c743Tg569c which will be your password. Or you can try droping the table all together and just upload the one from the sql file that didn't work, just find that line in your backup and drop it into the SQL tab on your phpmyadmin and it should work using your last password that was on there when that backup was made.
|