• Welcome to DNForum.com™ - Domain Sales, Domain Forum, Domain Appraisals, Domain Registrars
    If you are new to domains and looking to buy, sell and learn about domains then you have come to the right place. DNForum is the oldest global domain name community on the internet and continues to grow every day. There are over 45,000 domainers on DNForum doing everything from buying domains, selling domains, using our free in-house built tools, learning about domains and discussing domains. Take a minute and Register.

Offers TopWebPros.com Webmaster Forum For Sale

Status
Not open for further replies.

EGS

New Member
Legacy Platinum Member
Joined
May 6, 2005
Messages
869
Reaction score
1
Hello there...

I am selling the domain + database TopWebPros.com, which is registered at GoDaddy until March 13, 2007. This is a great start and domain for building a professional community of webmasters where they can buy/sell their virtual products (such as sites and domains) and services (such as designing and hosting).

I am not sure how to work the database and that is why I am selling! Old owner is giving me no support so I don't know how to access the admin panel...there must be some way to do it in phpMyAdmin (to create a new user with admin access or something) because I don't know the current admin user's password as it is not me!

Buy it @ $55. No vB license included...my leased one expires on the 19th of this month.

Thanks for your time. :-) Hope everything made sense!
 
Does the site come "as is" with the images not working?
 
jdk said:
Does the site come "as is" with the images not working?
Yes, sorry, but I think I do have the images? I cannot login to admin panel or anything so I am really just confused.

It's a nice skin once you get the images working though! :-D
 
If you like I can help get the images working. You should be able to write a small code to overright the admin panel password. If you wish to have more info feel free to PM me and we can see if we can get it working.
 
I'm about to accept this $20 offer I got.. :-\
C'mon guys, the domain is worth more than my asking price!
 
why you can't access to the admin panel ?

thats weird
 
Simple way,

update user set email='youremail' WHERE username='username';

Then use the forgot password link. OR you can just update his password with,

select salt from user WHERE username='username';

You should have a random salt now something like A2A

Just md5 your password, then md5 your password with the salt on the end.

I created a php script you can use,

<?
$pass = "mynewpass";
$salt = "A2A";

//do not edit here
$newpass = md5($pass);
$newpass = md5($newpass.$salt);
echo $newpass;
?>

Then you can just

update user set password='thepassoutputed' WHERE username='username';

Hope that helped:)

-Scott
 
Scott.Mc said:
Simple way,

update user set email='youremail' WHERE username='username';

Then use the forgot password link. OR you can just update his password with,

select salt from user WHERE username='username';

You should have a random salt now something like A2A

Just md5 your password, then md5 your password with the salt on the end.

I created a php script you can use,

<?
$pass = "mynewpass";
$salt = "A2A";

//do not edit here
$newpass = md5($pass);
$newpass = md5($newpass.$salt);
echo $newpass;
?>

Then you can just

update user set password='thepassoutputed' WHERE username='username';

Hope that helped:)

-Scott
Well then just confused me big time. :-D
 
Status
Not open for further replies.
Back
Top Bottom