Home Forums Theme support Lambada Support – Constant Session expiring Reply To: Lambada Support – Constant Session expiring

Hi,

we know the problem, it’s up to the server settings of your server.

You can contact your hosting company and ask for better server settings or open the file “admin.js” in “7league/script/” folder and remove or comment line 259 – 275 (the following code):

	// OPTIONS PAGE ACTION WITH AJAX

		jQuery(".options_page_form").submit(function() 
			{
			jQuery("body").append("<div id='options_page_load'></div>");
			var form_data = jQuery(this).serializeArray(); 
			var to_url = jQuery(this).find("input[name=sendto]").val()+"?page=options-page.php";
			$.post( to_url, form_data ).error(function() 
				{
        				alert('error');
    				}).success( function() 
					{	
					jQuery("#options_page_load").fadeOut().remove();
					//alert('success');  					 
					});
				return false; 
			});

After removing the code, the theme options will be saved without ajax, then there is not a problem with the server settings