Recent Topics

1 May 18, 2008 23:12    

Prosite didn't allow url redirects with "http://" included!

2 May 18, 2008 23:29

To fix it:

\b2evolution\blogs\inc\_core\_param.funcs.php
Line 1367:


	else
	{
		if( ! empty($base_tag_set) )
		{
			if( isset($Debuglog) ) $Debuglog->add( 'regenerate_url(): Using full URL because of $base_tag_set.', 'params' );
			//Replace next line, i commented out. It still works for me, not testet on other hosts.
			//$url = $ReqHost.$ReqPath;
			$url = $ReqPath;
		}
		else
		{	// Use just absolute path, because there's no <base> tag used
			$url = $ReqPath;
		}
	}

3 May 19, 2008 16:51

Thanks Tarion! It's really cool when people find a solution to their own problem then share it with everyone.


Form is loading...