Philou
|
| Posted: 07/15/2003, 10:03 PM |
|
Hi there !
Well the site used to work perfectly localy but ever since I've tried to upload it online I get this error on every page : Parse error: parse error in ./Classes.php on line 126
that's the function
function AllParamsSet()
{
$blnResult = true;
if(isset($this->Parameters) && is_array($this->Parameters))
{
reset($this->Parameters);
while ($blnResult && list ($key, $Parameter) = each
($this->Parameters))
{
//THIS LINE IS SUPPOSED TO BE THE PROBLEM
if($Parameter->GetValue() === "" && $Parameter->GetValue() !== false
&& $Parameter->UseIsNull === false)
$blnResult = false;
}
}
return $blnResult;
}
Since I don't quite understand why this is happenning since I even tryied to configure CCS to work with the database online and to upload it with it's own FTP.
I'm out of ideas ^_^;
|
|
|
 |
Philou
|
| Posted: 07/16/2003, 3:07 AM |
|
ok sorry everyone it was just my ISP using php3 instead of php4 -_-
stupid me didn't see that one comming ^_^;
|
|
|
 |
|