The config file basically looks like this when it has the error:
| Code: |
<?php
$cnf_mls_events["extcal_integration"] = 0;
$cnf_mls_events["extcal_category"] = ;
$cnf_mls_events["extcal_update_description"] = 1;
$cnf_mls_events["extcal_contact"] = "";
$cnf_mls_events["extcal_email"] = "";
$cnf_mls_events["extcal_url"] = "";
$cnf_mls_events["extcal_approve_mode"] = ;
$cnf_mls_events["extcal_description"] = "myLANsite Lanparty Event!
Infos: [infos]
Location: [loc_location_name]
Street: [loc_street_no] [loc_street]
Town: [loc_zip] [loc_city] [loc_country]
Parking: [loc_parking_space]
Price: [price_advance_sale] [price_currency]
Participants: [participants_number]
Visitors: [participants_visitors]
Minimum Age: [participants_min_age]";
$cnf_mls_events["frontend_fields"] = array();
$cnf_mls_events["frontend_fields"][0]->value = "joomla.username";
$cnf_mls_events["frontend_fields"][0]->text = "Username";
$cnf_mls_events["frontend_fields"][1]->value = "mylansite.subscribed";
$cnf_mls_events["frontend_fields"][1]->text = "Subscribed";
$cnf_mls_events["frontend_fields"][2]->value = "mylansite.paid";
$cnf_mls_events["frontend_fields"][2]->text = "Paid";
$cnf_mls_events["frontend_fields"][3]->value = "mylansite.checked_in";
$cnf_mls_events["frontend_fields"][3]->text = "Checked In";
$cnf_mls_events["frontend_fields"][4]->value = "mylansite.checked_out";
$cnf_mls_events["frontend_fields"][4]->text = "Checked Out";
?>
|
and it gets upset when the extcal integration is not enabled. i just go and manually put either "" or a number before the offending semi-colon and it gives me my page back.
So it basically saves
$cnf_mls_events["extcal_category"] = ; and $cnf_mls_events["extcal_approve_mode"] = ;
without a value which it doesn't like.
Hope that helps a bit!