singapore: the smallest big galery
home » forum » Installation » login (defaut)

You are not logged in.

#1 2008-07-17 16:55:19

bg62
Member

login (defaut)

bonjour
pour installer :
http://127.0.0.1/singapore-0.10.1/admin.php
on me demande :
" Please enter your admin username and password below. "
????
admin username (par défaut) ????
passeword (par defaut) ???? pour une première installation ???
help me
merci
b g

Offline

 

#2 2008-07-18 19:08:39

DC
Administrator

Re: login (defaut)

The link you provide is a link to your own computer so that is of no help, what is the problem you are having if possable translate to english thanks.

DC


To code or not to code that is the question?

Did my response help you out? Consider donating by buying me a slice, Whats this? Read More!
http://www.clickcraft.net/slice.php

Offline

 

#3 2008-07-19 10:06:30

bg62
Member

Re: login (defaut)

login defaut  ???
password defaut  ???
and how to modify login and pass ??
b g

Offline

 

#4 2008-07-19 16:22:29

DC
Administrator

Re: login (defaut)

Got ya, ok login default is the following:
Then when in the admin reset your pass to somthing only you know ...

login: admin
pass: password

DC


To code or not to code that is the question?

Did my response help you out? Consider donating by buying me a slice, Whats this? Read More!
http://www.clickcraft.net/slice.php

Offline

 

#5 2008-07-20 14:12:56

bg62
Member

Re: login (defaut)

merci !
how to make change ?
pass ok but i can't modify " admin " ...
amitiés
b g

Offline

 

#6 2008-07-20 14:50:11

DC
Administrator

Re: login (defaut)

Hi when your in the admin you should see Change password
click the link and enter your new pass after entering the old pass, if you get an odd PHP based err like.

Warning: fopen(data/users.csv.php): failed to open stream:

then you will need to CHMOD the dir data to 777 and the file users.csv.php to 666 as this then means the server can't write the new data to our file.  ...

DC


To code or not to code that is the question?

Did my response help you out? Consider donating by buying me a slice, Whats this? Read More!
http://www.clickcraft.net/slice.php

Offline

 

#7 2008-07-20 15:24:08

bg62
Member

Re: login (defaut)

OK for the password
but
i can't change 'admin' (by ' coucou ' for exemple) if i want to login

Offline

 

#8 2008-07-21 03:52:56

DC
Administrator

Re: login (defaut)

Sorry I do not understand what you are saying? I have showed you how to make the change and how to correct any errors ...

DC


To code or not to code that is the question?

Did my response help you out? Consider donating by buying me a slice, Whats this? Read More!
http://www.clickcraft.net/slice.php

Offline

 

#9 2008-07-21 08:52:24

bg62
Member

Re: login (defaut)

sorry for my english ...
login: admin
pass: password
i have changed 'password' but in don't make a change for 'admin' ...
that is the question : how change 'admin' for the login's line (by a other world) ?
b g

Last edited by bg62 (2008-07-21 08:54:58)

Offline

 

#10 2008-07-22 07:18:16

DC
Administrator

Re: login (defaut)

Im sorry but I dont understand, you say it does not make a change what do you mean?

If you change it it should change if it does not change then you may need to set correct permissions.

DC


To code or not to code that is the question?

Did my response help you out? Consider donating by buying me a slice, Whats this? Read More!
http://www.clickcraft.net/slice.php

Offline

 

#11 2008-09-21 21:06:54

Re: login (defaut)

DC wrote:

Hi when your in the admin you should see Change password
click the link and enter your new pass after entering the old pass, if you get an odd PHP based err like.

Warning: fopen(data/users.csv.php): failed to open stream:

then you will need to CHMOD the dir data to 777 and the file users.csv.php to 666 as this then means the server can't write the new data to our file.  ...

DC

Hi DC,

If I change CHMOD to 777 and 666, that going to make it like everyone can access into my account.  So how can I protect that?

Offline

 

#12 2008-09-22 08:22:43

bg62
Member

Re: login (defaut)

merci
je vais donc essayer
amitiés
b g

Offline

 

#13 2008-09-22 18:50:05

DC
Administrator

Re: login (defaut)

You can set an .htaccess file like so this will prevent direct access ...

create a text file with only this ...

<FilesMatch "(^users.csv).*\.php$">
Order deny,allow
Deny from all
</FilesMatch>

Then rename it to .htaccess and upload it to the data dir ...
to test try and access that file via a browser. it should disallow it. that should work and give you the added security you desire... the reason the file must be set as I mention is because the server has to be able to write to it via php 666 is safer then 777.

DC


To code or not to code that is the question?

Did my response help you out? Consider donating by buying me a slice, Whats this? Read More!
http://www.clickcraft.net/slice.php

Offline