thank you for the response. I did go through the settings options to change the time from 25 to 1, yet when I did it would change it only to 2 minutes. After the response from skydrome, I went into the config.php file, and changed
$updateInterval = 1; // in minutes
to
$minInterval = 1; // in minutes
after doing that, it did save correctly, and in the settings option, it went from 2 minutes to 1 as I had wanted. I'm guessing when they updated me from 3.4 to 3.5, it simply didn't change out the config.php file to the new format, not sure. I didn't do anything other then the above and all is working. For the future if others have this issue, this is how my config.php file now looks, and works with whatever time I set:
Code:
<?php
@define('HISTORY_MAX_COUNT', 100, true);
@define('HISTORY_MAX_TRY', 3, true);
@define('WAIT_AFTER_LOADING', 0, true);
$minInterval = 1; // in minutes
?>
Thanks for the replies and help!!!