7913 Posts in 1355 Topics by 930 members
DataObjectManager Module
SilverStripe Forums » DataObjectManager Module » Bug Reports
Discuss the DataObjectManager module, and the related ImageGallery module.
Moderators: martimiz, UncleCheese, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba, simon_w
| Go to End | Next > | |
| Author | Topic: | 37715 Views |
-
Re: Bug Reports

8 September 2009 at 11:11pm
@silk78
>> I found an entry in apache error-log, though:
>> File does not exist: /srv/rsv-kanu_neu/bulk_uploader
Don't know if you found out how to get reid of this log-entry yet. The only reference I found: in dataobject_manager/javascript/facebox.js - line 100: replace
<img src="/bulk_uploader/images/closelabel.gif" title="close" class="close_image" /> \
by
<img src="/dataobject_manager/images/closelabel.gif" title="close" class="close_image" /> \
cheers
-
Re: Bug Reports

9 September 2009 at 2:02am Last edited: 9 September 2009 2:03am
My lord.. The bulk_uploader module hasn't existed in many, many months. No idea why that was in there.
-
Re: Bug Reports

11 September 2009 at 5:54pm
Would it be possible to estimate a time frame for a release of a bug fix of the above mentioned bug?
-
Re: Bug Reports

12 September 2009 at 1:08am
The image path bug? That was fixed right after it was posted.
-
Re: Bug Reports

15 September 2009 at 6:29pm Last edited: 15 September 2009 6:30pm
Hi UncleCheese
I get a error with 2.3.3 when accessing my gallery page from the frontend.
Fatal error: Argument 1 passed to ImageGalleryUI::updateItems() must not be null, called in /httpdocs/dev/image_gallery/code/ImageGalleryPage.php on line 268 and defined in /httpdocs/dev/image_gallery/gallery_ui/ImageGalleryUI.php on line 18.
I am using the latest trunk as of this point.
-
Re: Bug Reports

16 September 2009 at 12:20am
I'm not seeing it. Can you replicate the issue on the demo site? http://dataobjectmanager.carlinowebdesign.com
-
Re: Bug Reports

16 September 2009 at 1:51am Last edited: 16 September 2009 2:00am
I found a bug in the FileDataObjectManager when used on a multilanguage site.
When trying to upload a file the iframe popup is empty.
After some digging i found that the href on the upload link was "admin/EditForm/field/Resources?locale=sv_SE/upload". Witch obviously is wrong. There was also a problem with the import button that was related.This was very easy to fix and here is the patch for it:
Index: FileDataObjectManager.php
===================================================================
--- FileDataObjectManager.php (revision 274)
+++ FileDataObjectManager.php (working copy)
@@ -123,7 +123,7 @@
protected function importLinkFor($file)
{
- return $this->BaseLink()."/import/$file->ID";
+ return Controller::join_links($this->BaseLink(), "/import/$file->ID");
}
protected function getImportFolderHierarchy($parentID, $level = 0)
@@ -233,7 +233,7 @@
public function UploadLink()
{
- return $this->BaseLink().'/upload';
+ return Controller::join_links($this->BaseLink(), '/upload');
}
protected function getUploadFields()
| 37715 Views | ||
| Go to Top | Next > |

