1

有点远射,但任何人都可以对此有所了解吗?

我最近安装了 subsites 模块以从单个安装运行多个站点,现在收到错误消息:“我无法处理 Form 对象的子 URL。” 当我尝试向图片库对象添加描述/标题时。我已删除子站点以验证是否是导致问题的原因。我正在使用 2.4

我可以很好地上传图像,但是在尝试从弹出窗口中保存描述时会出现问题。

我也尝试过使用默认字段,但这仍然给出了同样的错误。

我的代码:

<?php

class Gallery extends Page {

   public static $db = array( 
      'SummaryText'=>'Text', 
      'GalleryText'=>'Text' 
   ); 

   static $has_many = array( 
      'Photos' => 'GalleryPhoto' 
   ); 

   function getCMSFields() { 
      $fields = parent::getCMSFields(); 


      $manager = new ImageDataObjectManager( 
         $this, // Controller 
         'Photos', // Source name 
         'GalleryPhoto', // Source class 
         'Image' // File name on DataObject 
      ); 
      $manager->uploadFolder = $this->URLSegment; 


      $fields->addFieldToTab('Root.Content.Main', new TextField('SummaryText', 'Summary Text (Appears in the section preview)'), 'Content'); 
      $fields->addFieldToTab('Root.Content.Main', new TextField('GalleryText', 'Gallery Text (entering anything in here will overwrite any image Titles and Descriptions)'), 'Content'); 
      $fields->addFieldsToTab("Root.Content.Gallery", array($manager));             
      $fields->removeFieldFromTab('Root.Content', 'StyledText'); 
      $fields->removeFieldFromTab('Root.Content', 'Column2'); 
      $fields->removeFieldFromTab('Root.Content', 'Content'); 


      return $fields; 

   } 


}

..

<?php

class GalleryPhoto extends Photo {

   public static $db = array( 
      'HTMLDescription'=>'HTMLText' 
   ); 

   static $has_one = array( 
      'Gallery' => 'Gallery' 
   ); 

   public function getCMSFields(){ 
      $fields = parent::getCMSFields(); 
      $fields->removebyname('Description'); 
      $fields->removebyname('Title'); 
      $fields->replaceField('HTMLDescription', new SimpleTinyMCEField('HTMLDescription')); 
      return $fields; 
   } 
}
4

2 回答 2

1

我只是遇到了同样的错误,搜索了几个小时。这是 /framework/control/Session.php 的问题

于 2013-01-30T16:40:15.040 回答
1

不幸的是,“我无法处理 Form 对象的子 URL。” 是一个非常通用的错误消息,根据我的经验,调试起来相当棘手。

老实说,在我看来,Subsites 模块并不是那么好,它可以工作,但它不是那么好,而且我猜它与其他模块并不真正兼容。

我可以想象你的错误的原因是因为 silverstripe 忘记了弹出窗口中的 SubsiteID 并且因为 SilverStripe 无法再找到你正在编辑的当前页面(因为它添加了一个过滤器 WHERE SubsiteID = x 到你所做的每个页面查询)

开始调试的一个地方是连接到 Subsite::currentSubsiteID() 并查看当您在弹出窗口中时它是否记得 SubsiteID

另外,当您收到错误消息时,调用的确切 url 是什么?

于 2012-08-21T16:13:33.897 回答