system/config.php - OK
clear cache manually - OK
(contents of hostsaba.com/site/cms/cache is: index.html, no sub directories)
check cache is 777 - OK
‘Admin- Utilities- Clear cached data’ - OK
I re-read the KBlog entry and had a look around the admin area for any left over happyraft.com to change to hostsaba.com but could not locate any. However I am very new to expression engine and admit that I dont know exactly where these places are
General Configuration,
Weblog Management,
File Upload Preferences,
Global Weblog Preferences,
Membership Preferences,
Captcha Preferences,
Emoticon Preferences.
I just looked arount the ‘Admin’ tab for any entries but could not locate any. (hoping that i got them all.)
You are welcome to submit any form on the hostsaba.com site as it is just for me to use for testing and getting to know the system.
The problems with the form are these.
* when all the fillable fields are filled in and submitted an error is displayed ‘Your section entry must have a title.’
* The ‘Tour Start Time’ dropdown field does not contain the tour times as it does in the origional.
* The date selector is not visible on the demo site.
The correct time field looks like this
<label for="field_id_38">Tour Start Time</label>
<select disabled="disabled" name="field_id_38" id="field_id_38" size="1">
<option value="" selected="selected"> </option>
<optgroup id="tour_3" class="tourtimes" label="Oboke Whitewater Rafting Tour (Half Day)">
<option value="8">Morning Start (10:00 - 13:00)</option>
<option value="9">Afternoon Start (14:00 - 17:00)</option>
</optgroup>
<optgroup id="tour_2" class="tourtimes" label="Koboke Whitewater Rafting Tour (One Day)">
<option value="10">Morning Start (09:00 - 16:30)</option>
</optgroup>
<optgroup id="tour_4" class="tourtimes" label="Musasabi Canyoning Tour (Half Day)">
<option value="8">Morning Start (10:00 - 13:00)</option>
<option value="9">Afternoon Start (14:00 - 17:00)</option>
</optgroup>
<optgroup id="tour_5" class="tourtimes" label="Oboke Combo Tour (One Day)">
<option value="37">Morning Start (Day 1: 10:00 - 1:00, Day 2: 14:00 - 17:00)</option>
</optgroup>
<optgroup id="tour_6" class="tourtimes" label="Koboke Combo Tour (One & Half Day)">
<option value="11">Morning Start (Day 1: 09:00 - 16:30, Day 2: 10:00 - 13:00)</option>
<option value="12">Afternoon Start (Day 1: 14:00 - 17:00, Day 2: 09:00 - 16:30)</option>
</optgroup>
<optgroup id="tour_7" class="tourtimes" label="Ultimate Combo Tour (Two Day)">
<option value="13">Morning Start (Day 1: 10:00 - 17:00, Day 2: 09:00 - 16:30)</option>
</optgroup>
</select>
<input name="field_ft_38" value="none" type="hidden">
The test site is missing this table. the test site looks like this
<label for="field_id_38">Tour Start Time</label>
<select name="field_id_38" id="field_id_38" size="1">
<option value="" selected="selected"> </option>
<optgroup id="tour_3" class="tourtimes" label="Oboke Whitewater Rafting Tour (Half Day)">
</optgroup>
<optgroup id="tour_2" class="tourtimes" label="Koboke Whitewater Rafting Tour (One Day)">
</optgroup>
<optgroup id="tour_4" class="tourtimes" label="Musasabi Canyoning Tour (Half Day)">
</optgroup>
<optgroup id="tour_5" class="tourtimes" label="Oboke Combo Tour (One Day)">
</optgroup>
<optgroup id="tour_6" class="tourtimes" label="Koboke Combo Tour (One & Half Day)">
</optgroup>
<optgroup id="tour_7" class="tourtimes" label="Ultimate Combo Tour (Two Day)">
</optgroup>
</select>
<input name="field_ft_38" value="none" type="hidden">
The code to create both of these entries is identical in the templates area. It looks like this
<label for="field_id_38">{if site_lang == "en"}Tour Start Time{if:elseif site_lang == "ja"}午前午後を選択{/if}</label>
<select name="field_id_38" id="field_id_38" size="1">
<option value="" selected="selected"> </option>
{exp:weblog:entries weblog="tours" orderby="date" sort="asc" dynamic="off" disable="categories|member_data|pagination|trackbacks" return="{site_url}booking/success"} <optgroup id="tour_{entry_id}" class="tourtimes" label="{tour_name_{site_lang}}">
{related_entries id="tour_times"}<option value="{entry_id}">{line_{site_lang}}</option>
{/related_entries} </optgroup>
{/exp:weblog:entries} </select>
<input type="hidden" name="field_ft_38" value="none" />
So if the code is identical then this leaves me woundering where to look for why the output is different. Maybe the datbase.. but What am i looking for?
The images not displaying is not so important since it is a testing site and they are working on the main site. But i would like to get the bookings working as i have some things to do there.
Thanks for your help
I see that {/related_entries} here too. This could possibly be the source of the problem