You are not logged in.
#1 2007-01-08 16:54:07
- TrincheraX
- Member
Admin problems
Hi,
When I sign in to the admin, and click on Manage Galleries and Images, it loads and returns back to admin sign in. I don't know what I'm doing wrong but it worked once for a minute and then it wouldn't work again.
I've tried using Mozila Firefox and Internet Explorer and they both didn't work.
Does anyone know what I should do?
Here is the gallery: www.trincherax.net/gallery/
Regards
TrincheraX
Offline
#2 2007-01-08 18:13:07
- pavian
- Moderator

Re: Admin problems
It appears something went wrong uploading the singapore-files. Please retry.
Offline
#4 2007-01-08 19:59:20
- pavian
- Moderator

Re: Admin problems
Look there is definitly something wrong with the files, because this:
http://www.trincherax.net/gallery/admin.php - is not suppossed to be black.
Also it seems that this file:
http://www.trincherax.net/gallery/data/users.csv.php doesn't exist or is not world accessible.
Offline
#5 2007-01-08 20:10:34
- TrincheraX
- Member
Re: Admin problems
Hi,
Thanks for the info, what would you recomend to do?
TrincheraX
Offline
#6 2007-01-08 20:17:12
- pavian
- Moderator

Re: Admin problems
Hmm, actually I am not really sure. I would suggest this:
* delete the folder from the server
* download singapore again, from the website
* try to set your ftp-client to passive and ascii mode
* reupload all the singapore-files
* make the data-directory and all files in it are writable (on unix/linux: chmod 0777)
* retry singapore ![]()
Offline
#8 2007-03-15 22:13:24
- TrincheraX
- Member
Re: Admin problems
pavian wrote:
Hmm, actually I am not really sure. I would suggest this:
* delete the folder from the server
* download singapore again, from the website
* try to set your ftp-client to passive and ascii mode
* reupload all the singapore-files
* make the data-directory and all files in it are writable (on unix/linux: chmod 0777)
* retry singapore
Hi,
I have finally got around to re installing singapore but it still isn't working, I don't know waht I'm doing wrong. This time the admin bit is now white and not black like before but it's still jumping back everytime I try and change my password or manage galleries ...
Could anyone possibly help me?
Regards
TrincheraX
Offline
#10 2007-03-15 22:23:48
- pavian
- Moderator

Re: Admin problems
well..now that it is back:
Session save path does not exist or is not writable (session.save_path). Singapore will function but you may not be able to use the admin interface.
Offline
#11 2007-03-15 22:29:51
- TrincheraX
- Member
Re: Admin problems
Hi,
What should I do?
Where do I get a "session.save_path" from? I know that sounds abit stupid, I'm a beginner.
Regards
TrincheraX
Offline
#12 2007-03-16 18:16:10
- pavian
- Moderator

Re: Admin problems
You have to set it in your php.ini Only your server-administrator can do that.
Offline
#13 2007-07-17 15:58:08
- michae1
- Member
Re: Admin problems
I'm having the same problem...keeps kicking me back to the login screen. Sometimes I can get past it, but only to the next screen. Whatever I click after that takes me back to the login request.
And this isn't a new installation. My gallery has been working fine for a couple of years.
Offline
#15 2007-07-19 04:36:21
- DC
- Administrator

Re: Admin problems
Some hosts do not set the session path
one off the bat I know of is hostsave aka the gate to get around this you might try this code I wrote place at the top of the script
You must mod the scripts that have session_start in them
This can be done by using my mod code block just before session_start().
UPDATED THIS A BIT!
If it did not work for you before it should now.
//DC Auto path mod...
$mypath = $_SERVER['DOCUMENT_ROOT'];
$mypath = str_replace(".","",$mypath);
session_save_path ("$mypath/tmp/");
This assumes you made a dir called tmp in your main dir
Make sure that this dir is server writable.
DC
Last edited by DC (2007-09-04 05:22:54)
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