Sorry, which one:
ssu_beta_2.9.6(php4).zip
ssu_beta_3.5.5(php5).zip
ssu_usu.zip
I'm using ZC 1.3.8a and PHP5 (so I need 3.5.5?)
Printable View
Perfect. Thanks.
Spoke too soon.
here's a curious one. Using the site - works fine.
Go to view source ... "Redirect Loop ..."
I'm sure it's just a cache thing but this only happens in Firefox (Mac).
I hope this is what you mean by a sample link LOL
https://www.havendesignz.com/store/login
plus it happens on all the other pages that are supposed to be secure throughout the checkout process
What I have noted is that if you go straight to the store...first visit...zenid attached...and click on Login/Register, you get the secure page, once the zenid is off then it goes to the unsecure page even though the link is https and I really don't understand it lol
@christon26:
Please try this fix to see if it works correctly for you:
go to include/classes/ssu/cores/link.php
Find the function postParseURL
Replace the whole function by:
Then clear cache, of course.PHP Code:
public function postParseURL(){
global $request_type;
if($this->redirect_type==1){
$params = '';
// here we will attempt to rebuild the link using $_get array, and see if it matches the current link
// we want to take out zenid however
$page = '';
$temp = $_GET;
if(isset($temp['main_page'])) {$page = $temp['main_page']; unset($temp['main_page']);}
// no need to include session id
if(isset($temp[zen_session_name()])) unset($temp[zen_session_name()]);
foreach($temp as $key => $value)
$params .= '&' . $key . '=' . $value;
$regenerated_link = $this->ssu_link($page, $params, $request_type);
}
elseif($this->redirect_type==2){
$regenerated_link = $this->ssu_link($this->original_uri, '', $request_type);
}
if(isset($regenerated_link) && ($this->curPageURL() != $regenerated_link)){
$this->redirect($regenerated_link);
}
// save alias to avoid re-scanning
elseif(SSUConfig::registry('configs', 'alias_status') && !$this->checkPageExcludedList($_GET['main_page']))
SSUCache::write($this->alias_filename, 'aliases', http_build_query($_GET));
}
I am getting this in Firefox:
And in EI7 the page is hanging, though I did get it to successfully go to the https page once right after I cleared the cache LOLCode:The page isn't redirecting properly
Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
* This problem can sometimes be caused by disabling or refusing to accept
cookies.
Is this 3.5.5? Weird, I cant seem to get the same problem. Do you mind if I ask for temporary access to the server?
3.5.2 is what I have, last upgrade was I think a week or two ago LOL lemme try upgrading and see if that fixes it all, and if you shoot me a PM I will gives you the server details :)