Members: 16,996
Threads: 38,845
Posts: 159,389
Online: 28

Newest Member: Kl_broka@rediffmail.com


Odoo.tv - Outdoor Television


Sedo - Domains kaufen und verkaufen das Projekt mambers.com steht zum Verkauf Besucherstatistiken von mambers.com etracker® Web-Controlling statt Logfile-Analyse

Go Back   Mambers.com > Mambo 4.5.1 > Mambo 4.5.1 Installation and Upgrades

Reply
 
LinkBack Thread Tools Display Modes
Old 04.12.2004, 10:59   #1 (permalink)
Baby Mamber
 
Join Date: Nov 2004
Posts: 5
digiblood is on a distinguished road
Default (backend problem) Time out, wait 5 mins then login back as admin, timeout again...wai

I would really really appreciate any help on this.

I have mutiple installation of mambo (on different servers) and all of them are not working. The server I'm using is shyper.com.

After installation and setting of all the permissions, everytime i try to do a task such as creating a new content, it will work for the 1st time. The 2nd time i try make a new content, it will timeout (give a 404 page) and i have to try to login back as admin. I can't login though (it will just try to connect for a long time), unless i wait for a good 5 minutes.

can someone pls help?

the thing is, i can make changes to the site but i keep timing out when doing so. Could it be session problems in the admin side? The status was OK during installation. The session dir is pointing correctly to "/tmp"

-Gad
digiblood is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
Old 04.12.2004, 16:08   #2 (permalink)
Expert Mamber
 
walb's Avatar
 
Join Date: Oct 2004
Location: Hack City, Earth.
Posts: 453
walb will become famous soon enough
Default Re: (backend problem) Time out, wait 5 mins then login back as admin, timeout again..

Weird. Maybe cookie problem?
Try to clear cookies through the browser options.
walb is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07.12.2004, 11:09   #3 (permalink)
Baby Mamber
 
Join Date: Nov 2004
Posts: 5
digiblood is on a distinguished road
Default Re: (backend problem) Time out, wait 5 mins then login back as admin, timeout again..

Still couldnt get it to work. I'm gonna switch servers. A friend told me of one that worked with mambo. Thanks for ur help tho'.

-Gad
digiblood is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 11.03.2005, 22:39   #4 (permalink)
Baby Mamber
 
Join Date: Mar 2005
Posts: 3
Centic is on a distinguished road
Default Re: (backend problem) Time out, wait 5 mins then login back as admin, timeout again..

I had a similar problem with my ISP when they changed something so that the PHP-Session-Management did not work any more. Apparently the default session-save-path that is set in the php.ini was not writeable any more and thus I could no longer log in any more but was always silently returned to the login-page.

I posted a solution (in German) at http://www.mambers.com/showthread.php?p=104506
Tell me if you need a translation.

Dominik.
Centic is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 12.03.2005, 02:23   #5 (permalink)
Expert Mamber
 
quiquedcode's Avatar
 
Join Date: Jun 2004
Location: San Juan, Argentina
Posts: 306
quiquedcode will become famous soon enough
Send a message via ICQ to quiquedcode Send a message via MSN to quiquedcode Send a message via Yahoo to quiquedcode
Default Re: (backend problem) Time out, wait 5 mins then login back as admin, timeout again..

hi Centic
I'd like to see the translation, coz I have the same problem in one of the websites...
Thanks !!
__________________
Enrique Becerra
MSN: qbecerra @ hotmail.com
ICQ: 18048153
www.beza.com.ar

"If you pay peanuts, you will get monkeys!" - ChicoMendez
quiquedcode is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 15.03.2005, 03:41   #6 (permalink)
Expert Mamber
 
quiquedcode's Avatar
 
Join Date: Jun 2004
Location: San Juan, Argentina
Posts: 306
quiquedcode will become famous soon enough
Send a message via ICQ to quiquedcode Send a message via MSN to quiquedcode Send a message via Yahoo to quiquedcode
Default Re: (backend problem) Time out, wait 5 mins then login back as admin, timeout again..

hi
any news on this ?
__________________
Enrique Becerra
MSN: qbecerra @ hotmail.com
ICQ: 18048153
www.beza.com.ar

"If you pay peanuts, you will get monkeys!" - ChicoMendez
quiquedcode is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 06.10.2006, 03:54   #7 (permalink)
Baby Mamber
 
Join Date: Oct 2006
Posts: 5
pmascarenhas is on a distinguished road
Default Re: (backend problem) Time out, wait 5 mins then login back as admin, timeout again...wai

Hi Guys,

I hope the following info helps:

I had the same problem and I fixed this way:

for joomla 1.0.11

1 - create a "tmp" folder in your account joomla instalation root and cmod it 0777
2 - edit includes/joomla.php and chage all 1800 or 1900 values in the code for 36000

3 - edit administrator/index.php, index2.php , index3.php and includes/joomla.php

and add the following in the beginnig after "MOS or die"....

// path for cookies
$cookie_path = "/";

// timeout value for the cookie
$cookie_timeout = 1200 * 30; // in seconds

// timeout value for the garbage collector
// we add 300 seconds, just in case the user's computer clock
// was synchronized meanwhile; 600 secs (10 minutes) should be
// enough - just to ensure there is session data until the
// cookie expires
$garbage_timeout = $cookie_timeout + 600; // in seconds

// set the PHP session id (PHPSESSID) cookie to a custom value
session_set_cookie_params($cookie_timeout, $cookie_path);

// set the garbage collector - who will clean the session files -
// to our custom timeout
ini_set('session.gc_maxlifetime', $garbage_timeout);
ini_set('session.gc_probability',1);
ini_set('session.gc_divisor',1000);
ini_set('session.save_path','/your_full_path_here/xxx/yyy/tmp');
// we need a distinct directory for the session files,
// otherwise another garbage collector with a lower gc_maxlifetime
// will clean our files aswell - but in an own directory, we only
// clean sessions with our "own" garbage collector (which has a
// custom timeout/maxlifetime set each time one of our scripts is
// executed)
strstr(strtoupper(substr($_SERVER["OS"], 0, 3)), "WIN") ?
$sep = "\\" : $sep = "/";
$sessdir = ini_get('session.save_path').$sep;

4 - Set in joomla administration admintime to 36000


I hope it works for you as well is working for me!

I can help with other versions and can also explain what problem these code lines solve

email me at: vogita "at" vogita "dot" com
pmascarenhas is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 10.11.2006, 00:27   #8 (permalink)
Baby Mamber
 
Join Date: Nov 2006
Posts: 1
apauaie is on a distinguished road
Default Re: (backend problem) Time out, wait 5 mins then login back as admin, timeout again..

Thanks pmascarenhas, your method works.... I'm really glad i found this forum...been searching everywhere....Nice find....Thanks
apauaie is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Admin Login Problem, om all my Mambo sites!!! fissan Mambo 4.5 Bugs 24 06.10.2006 03:52
One of the reasons people cannot login to mambo using IE muhaha Mambo 4.5 Bugs 48 09.07.2006 20:18
Dumped Back to Admin Login in IE John Brownlee Mambo 4.5.1 Bugs 1 23.10.2004 16:37
Mambo 4.5 Stable (1.0.7) - Admin Login problem webdogg Mambo 4.5 Bugs 1 19.06.2004 20:51
session_start - Admin Login Problem sherif Mambo 4.5 Installation and Upgrades 0 05.05.2004 20:32


All times are GMT +2. The time now is 23:24.

Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.1.0
A vBSkinworks Design
© Copyright 2004-2008 by Arthur Konze Webdesign.