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

Issue with 2.3.6 and FileDataObjectManager


Go to End


5 Posts   1433 Views

Avatar
paul.mcilwaine

Community Member, 21 Posts

24 March 2010 at 7:03pm

Im running into a bit of an issue with the FileDataObjectManager (can't confirm if this is an issue with the ImageDataObjectManager) however when adding a new file and click upload Im getting "An error uploading a file" javascript error message. I than check out the assets directory (file system) and the file has been uploaded (directory too), it also appears in the database.

The code I am using is

$f->addFieldToTab( "Root.Content.ProjectFiles", $item = new FileDataObjectManager(
			$this,
			"ProjectItem",
			"ProjectItem",
			"File",
			array(),
			"getCMSFields",
			"",
			"SortOrder ASC"
		) );
		
		$item->setUploadFolder( sprintf( "projects/%s", str_replace( " ", "-", $this->Title ) ) );

Another thing I have noticed to when using v2.3.6 of SS (r388 dom) is that the assets file listing is now broken.

ERROR [Warning]: Missing argument 3 for ComplexTableField_Item::__construct(), called in /path/to/public_html/projectname/dataobject_manager/code/DataObjectManager.php on line 584 and defined
IN POST /admin/assets/getitem?ID=85&ajax=1

Avatar
dhensby

Community Member, 253 Posts

24 March 2010 at 11:12pm

DOM for 2.3 is now on its own tag: http://carlinowebdesign.svn.beanstalkapp.com/modules/branches/2.3/dataobject_manager

the main branch is 2.4 only now.

Avatar
paul.mcilwaine

Community Member, 21 Posts

30 March 2010 at 3:08pm

Ive updated to this revision now, but still get similar issues with uploading although it should be noted it did fix the Files & Assets issue. Has this got more to do with the swfupload module which I haven't updated in sometime mainly because I don't recall any updates to it.

Avatar
paul.mcilwaine

Community Member, 21 Posts

30 March 2010 at 4:14pm

Ive also moved to 2.3.5 SS and DOM r335 and its still a problem which makes me think Ive done something wrong in regards to the code Im using however its no different to others Ive implemented.

Avatar
paul.mcilwaine

Community Member, 21 Posts

30 March 2010 at 5:33pm

Please ignore, there was a typo in the DataObject has_one linking back to the Page Object.