PDA

View Full Version : how do I change username/pass?


brent1a
05-14-2005, 03:21 PM
where can I change my username/ password? So far it's just admin/admin. Do I go under directory.sql??

# --------------------------------------------------------

#
# ÑòðóêòóðÃ**censored** òÃ**censored**áëèöû `User`
#

CREATE TABLE User (
id int(11) NOT NULL auto_increment,
username varchar(14) NOT NULL default '',
password varchar(14) NOT NULL default '',
PRIMARY KEY (id)
) TYPE=MyISAM;

#
# ÄÃ**censored**ìï äÃ**censored**Ã**censored**Ã**censored**ûõ òÃ**censored**áëèöû `User`
#

INSERT INTO User VALUES (1, 'admin', 'admin');

David
05-14-2005, 03:36 PM
Best way to change right now is by going into the user table using phpmyadmin and editing the values.

brent1a
05-14-2005, 03:39 PM
sorry to be a pain but I've yet to do any editing in phpmyadmin. I've currently got my user table up but how do I edit the values?

brent1a
05-14-2005, 03:42 PM
field: username type: varchar length/values: 14 attributes: blank null: not null default**: blank extra: blank


do I input my desired username into defult**

brent1a
05-14-2005, 03:49 PM
Content visible to registered users only.That didn't fix it....I'm lost on how to put username/pass into the table. Do I 'insert' the user/pas values?

David
05-14-2005, 03:53 PM
in phpmyadmin, you click on the table at left. Then you click Browse. Then find that line (there is only one). And click on the little edit button.

brent1a
05-14-2005, 03:56 PM
got it....it just took some playing around...thanks.

David
05-14-2005, 03:57 PM
Good, I'm glad you are using the software. If you need more help, let me know.