Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Archive /

Our old forums are still available as a read-only archive.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo

Problem in tutorial-3 Contact-form


Go to End


7 Posts   1730 Views

Avatar
Mayuri

Community Member, 19 Posts

23 April 2008 at 10:59am

Hi everyone,
I am new to Silver Stripe and get stuck with contact-us form of tutorial 3.
If I try to use check box with required option checked in form then it works.
But if it is not checked in form then it gives error like

XML Parsing Error: junk after document element
Location: http://localhost/mimomax/contact-us/?executeForm=Form
Line Number 2, Column 1:<b>Notice</b>: Undefined index: EditableCheckbox12 in <b>C:\wamp\www\mimomax\cms\code\PageTypes\UserDefinedForm.php</b>; on line <b>216</b><br />
^

Normally we use check box either it may require or not. It is not compulsory for every user, so how can I solve this problem???????

Also have problem with drop down option, it works well on published site but got error on CMS site like;

Notice: Undefined variable: default in C:\wamp\www\mimomax\sapphire\forms\EditableDropdownOption.php on line 75

Point to notice in both case is that it stores the record in Submissions of the CMS site.

Can you please help me how to solve this problem!!

Cheers

Avatar
Willr

Forum Moderator, 5523 Posts

27 April 2008 at 6:22pm

Both errors appear to be caused by php notices. You can switch notices off by adding error_reporting(E_ALL ^ E_NOTICE); to your _config.php in your mysite directory. The XML error is probably from these notice outputs too so if you turn off notices it should fix the XML error

Avatar
Mayuri

Community Member, 19 Posts

28 April 2008 at 9:11am

Hi Willr

Thank you very much for reply, but there is no any _config.php in mysite directory.
I have _config.php in following folders;
C:\wamp\www\mimomax\auth_openid
C:\wamp\www\mimomax\cms
C:\wamp\www\mimomax\sapphire
C:\wamp\www\mimomax\tutorial

Do i need to change the _config.php in tutorial folder????

Plz. reply asap

Avatar
Sean

Forum Moderator, 922 Posts

28 April 2008 at 9:14am

Use the one in the "tutorial" directory

Avatar
Willr

Forum Moderator, 5523 Posts

28 April 2008 at 9:15am

Edited: 28/04/2008 9:16am

Ok weird you should have an _config in there as thats were the db details are stored!, are you using the blackcandy default install or the tutorial theme?.

Edit: Bah sean you posted exact same time :P. What he said!

Avatar
Mayuri

Community Member, 19 Posts

28 April 2008 at 9:33am

I am using blackcandy default

Avatar
Mayuri

Community Member, 19 Posts

28 April 2008 at 9:47am

Thank you both of you i did change in _config.php of tutorial folder & now its working