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.

DataObjectManager Module /

Discuss the DataObjectManager module, and the related ImageGallery module.

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

Uploadify in a subclassed form – trouble...


Go to End


2 Posts   893 Views

Avatar
joelg

Community Member, 134 Posts

25 February 2011 at 1:06am

Hi there

I'm trying to use Uploadify in a subclassed form. My form constructor is looking like this:


function __construct($controller, $name) {
	  
		$Uploadify = new FileUploadField('Picture', 'Some title', array (
		'buttonText' => 'Click me!'
		));
		
		$fields = new FieldSet(
			new TextField('FirstName', 'First name'),
         	new EmailField('Email', 'Email address'),
		 	$Uploadify
      	);
		
      	$actions = new FieldSet(
         	new FormAction('submit', 'Submit')
      	);
 
		parent::__construct($controller, $name, $fields, $actions);
   }

It is also possible for me to get the Fieldholder into my template with this code:

$dataFieldByName(Picture).FieldHolder

However, when I try to upload I get a 404 error in charles... How can I debug this?

Thanks for any help

Joel

Avatar
joelg

Community Member, 134 Posts

1 March 2011 at 12:08am

Problem solved. The error was caused by wrong implementation of the form in the controller. Uploadify works now in my subclassed form.