Nov 24th, 2010, 4:02 AM
(This post was last modified: Nov 24th, 2010, 4:10 AM by sstoney200.)
(Nov 23rd, 2010, 8:51 PM)Ben Wrote: Ack! This is a bug. At the top of process.php, you'll find this line:
PHP Code:@include_once("$folder/global/api/api.php");
Right before it, add this:
PHP Code:$folder = dirname(__FILE__);
So, in total, the top section of code will be this:
PHP Code:$folder = dirname(__FILE__);
// always include the core library functions
require_once("$folder/global/library.php");
// if the API is supplied, include it as well
$folder = dirname(__FILE__);
@include_once("$folder/global/api/api.php");
I'll include a fix for this in 2.1.0.
- Ben
YOU THE MAN BEN! (SORT OF) HAHA
I changed the code and uploaded the process.php but when I try to access my contact page: http://www.for-rent-nerja.com/contact.php it is now saying
'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.'
ARGH! lol
p.s. I did try removing and re-uploading process.php without the aforementioned changes but that didn't change the error so I'm thinking it's nothing to so with that!