You are not logged in.
For those who's having the same issue,
After making a comparison of full phpinfo(); s of 4 servers i found that in some of them Session Use Only Cookies ( the option that avoids session_id transfers for security reasons) was enabled. And thougt it's the reason for the session error.
So after adding
ini_set('session.use_only_cookies', 0);
to index.php it worked.
By the way for others, as @themhouse explained before you can make the same change from the php ini in your root, or site directory if you're using cpanel.
I couldn't check the code in FileManager.php yet, but if we want to create a complete solution I think it may be good to find the function (for multiple file transfers probably) copies or duplicates the session data.
For now that's it from me ![]()
Offline
Hi, I can confirm that your fix works - thankyou!
Offline
For those who's having the same issue,
After making a comparison of full phpinfo(); s of 4 servers i found that in some of them Session Use Only Cookies ( the option that avoids session_id transfers for security reasons) was enabled. And thougt it's the reason for the session error.
So after adding
ini_set('session.use_only_cookies', 0);to index.php it worked.
By the way for others, as @themhouse explained before you can make the same change from the php ini in your root, or site directory if you're using cpanel.
I couldn't check the code in FileManager.php yet, but if we want to create a complete solution I think it may be good to find the function (for multiple file transfers probably) copies or duplicates the session data.
For now that's it from me
Unfortunately this doesn't work for me. PHP version is 5.2.14. You can see complete details here: http://www.fhk.ee/info.php
Please let me know if you have more ideas. Thanks a lot!
Offline
The solution for me was:
Added to index.php:
ini_set('session.use_only_cookies', 0);
ini_set('session.cookie_httponly', 0);
ini_set('session.gc_maxlifetime', 36000);FileManager.php (line 5222):
$returnstring .= htmlentities($variable{$i}, ENT_QUOTES, 'ISO-8859-1'); //(originally it was UTF-8).Indrek.
Last edited by indrek (2012-04-06 12:32:48)
Offline
Error
Your session has expired. Please log in again.
a solution
application -> libraries -> Session.php
82.
setcookie(session_name(), '', time()-42000, '/'); instead
82.
setcookie(session_name(), '', time()-402000, '/'); Offline
I have an issue in 0.9.7 version. When I trying to save some modifications in the articles nothing happens. For example I unchecked the option "content online", in admin seems to be working properly but in the website the conent still displaying.
I realized that happens in Chrome and Mozilla (Linux and Mac).
Anyone can help me ??
Offline
With regards to the upload error, I used the sollution from a previous post
Add to the main index.php file:
ini_set('session.use_only_cookies', 0);
ini_set('session.cookie_httponly', 0);
ini_set('session.gc_maxlifetime', 36000);
Offline
@acapavia
You have to logout from admin to see the effect in frontend.
Offline
Thank you for your answer @Gravitating.
But is it a normal behavior? why in windows OS browsers work properly?
Offline
I've switch to the single file upload solution as nothing found here worked for me...
I'm on a shared hosting solution (OVH)
I can't get why it's not working, at some point I have a 404 in the upload process to a /fr/none and then the Session expired message popup !
I wish someone had found a solution, please help I can't find out how to solve this issue ! Single file upload is very annoying ![]()
Thanks !
Offline
© 2010-2012 Partikule | Web agency Paris, France