Rank: Member
Joined: 11/26/2005(UTC) Posts: 43
|
I was entering in a LONG discretion and application chart. When I went to update, the site had timed out, and ALL the work that I did was lost. Is the Time Out setting adjustable, and where do I find it?
|
|
|
|
Rank: Member
Joined: 3/3/2006(UTC) Posts: 1,737
|
I don't know the answer for fixing the timeout (but someone will shortly)... I prefer to edit and make content ready off line and then cut/paste or transfer via FTP. This totally eliminates the problem of lost data during a session. |
Optimists invent airplanes, Pessimists buy parachutes. |
|
|
|
Rank: Administration
Joined: 4/2/2004(UTC) Posts: 2,393 Location: Hummelstown, PA Thanks: 6 times Was thanked: 163 time(s) in 158 post(s)
|
The timeout setting is adjustable via the Web.config. However, I wouldn't recommend changing that unless you have a good reason. If you're spending a lot of time editing a description, I would follow Mitch's advice and do that offline. I would do it in Word where you can benefit from spelling and grammar checking. |
Aaron Sherrick BV Commerce Toll-free 888-665-8637 - Int'l +1 717-220-0012 |
|
|
|
Rank: Administration
Joined: 4/2/2004(UTC) Posts: 2,393 Location: Hummelstown, PA Thanks: 6 times Was thanked: 163 time(s) in 158 post(s)
|
For those wondering, try adding the following code to your Web.config file under the <system.web> node. The timeout value is in minutes, so change it to whatever you want. If this does not work, your hosting company may not allow you to override this value via your Web.config. Also, the session settings in IIS may also limit how long session data will be kept. Code: <sessionState timeout="20"/>
|
Aaron Sherrick BV Commerce Toll-free 888-665-8637 - Int'l +1 717-220-0012 |
|
|
|
Rank: Member
Joined: 11/5/2003(UTC) Posts: 2,136
Was thanked: 1 time(s) in 1 post(s)
|
Aaron is right to caution against increasing sessionState. The setting affects all sessions, including shoppers and indexing robots. If you double the value to 40 minutes, that means the server will try to store twice as many sessions. That can have several detrimental affects on your site including poor performance because of increased swapping, and poor performance because of more frequent restarts (if the additional session push the application over the maximum memory limit).
A better solution would be something that only targets admin sessions. For example some javascript that makes a background request for any file on the web server every 15 minutes. |
|
1 user thanked Andy Miller for this useful post.
|
|
|
Rank: Administration
Joined: 4/2/2004(UTC) Posts: 2,393 Location: Hummelstown, PA Thanks: 6 times Was thanked: 163 time(s) in 158 post(s)
|
A better and easier way to handle this is to go to Options >> Users in the admin and check both the "Remember Users" and "Remember Passwords" checkboxes. Then just make sure that you are using an admin account that isn't the super-admin (i.e. bvin = 30). Then even if your session times out it will automatically log you back in and allow you to save the page you’re working on. |
Aaron Sherrick BV Commerce Toll-free 888-665-8637 - Int'l +1 717-220-0012 |
|
|
|
Rank: Member
Joined: 1/28/2013(UTC) Posts: 77 Location: Midlothian, TX
|
Aaron:
What is the proper settings for making someone else an admin? |
|
|
|
|
Rank: Administration
Joined: 4/2/2004(UTC) Posts: 2,393 Location: Hummelstown, PA Thanks: 6 times Was thanked: 163 time(s) in 158 post(s)
|
Originally Posted by: dan @ HYAS What is the proper settings for making someone else an admin? Give the user account the "New Adminstrator" role/ group. You may also need to assign te necessary permissionsto the New Admonstrator group. |
Aaron Sherrick BV Commerce Toll-free 888-665-8637 - Int'l +1 717-220-0012 |
|
|
|
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.