2012-04-12 31 views
0

我使用MeioUpload 4.0插件的行为从https://github.com/jrbasso/MeioUpload集成在CakePHP MeioUpload行为2.1.1

我通过安装的git插件:混帐混帐克隆://github.com/jrbasso/MeioUpload.git插件/ MeioUpload 现在,我的目录结构是这样的:

/app 
/Plugin 
    /MeioUpload 
    /Model 
    /Behavior 
    /MeioUploadBehavior.php 
    /Locale 
    /Test 

我的图片模型是这样的:

<?php 
App::uses('AppModel', 'Model'); 
class Picture extends AppModel { 
$actsAs = array(
    'MeioUpload.MeioUpload' => array(
     'picture' => array(
      'dir' => 'img{DS}pictures', 
      'create_directory' => true, 
      'allowed_mime' => array('image/jpeg', 'image/pjpeg', 'image/png'), 
      'allowed_ext' => array('.jpg', '.jpeg', '.png'), 
      'zoomCrop' => true,    
      'thumbsizes' => array(
       'small' => array('width'=>165, 'height'=>115), 
       'medium' => array('width'=>800, 'height'=>600) 

      ), 
      'default' => 'default.jpg' 
     ) 
    ) 
); 
} 
?> 

当我试图访问/图片/加时I g et在调试日志中出现以下错误:

2012-04-12 21:42:38 Error: [MissingPluginException] Plugin MeioUpload could not be found. 
#0 C:\wamp\www\starter211\lib\Cake\Core\App.php(364): CakePlugin::path('MeioUpload') 
#1 C:\wamp\www\starter211\lib\Cake\Core\App.php(225): App::pluginPath('MeioUpload') 
#2 C:\wamp\www\starter211\lib\Cake\Core\App.php(542): App::path('Model/Behavior', 'MeioUpload') 
#3 [internal function]: App::load('MeioUploadBehav...') 
#4 [internal function]: spl_autoload_call('MeioUploadBehav...') 
#5 C:\wamp\www\starter211\lib\Cake\Model\BehaviorCollection.php(121): class_exists('MeioUploadBehav...') 
#6 C:\wamp\www\starter211\lib\Cake\Model\BehaviorCollection.php(68): BehaviorCollection->load('MeioUpload.Meio...', Array) 
#7 C:\wamp\www\starter211\lib\Cake\Model\Model.php(725): BehaviorCollection->init('Picture', Array) 
#8 [internal function]: Model->__construct(Array) 
#9 C:\wamp\www\starter211\lib\Cake\Utility\ClassRegistry.php(156): ReflectionClass->newInstance(Array) 
#10 C:\wamp\www\starter211\lib\Cake\View\Helper\FormHelper.php(145): ClassRegistry::init(Array) 
#11 C:\wamp\www\starter211\lib\Cake\View\Helper\FormHelper.php(331): FormHelper->_getModel('Picture') 
#12 C:\wamp\www\starter211\app\View\Pictures\add.ctp(2): FormHelper->create('Picture', Array) 
#13 C:\wamp\www\starter211\lib\Cake\View\View.php(908): include('C:\wamp\www\sta...') 
#14 C:\wamp\www\starter211\lib\Cake\View\View.php(872): View->_evaluate('C:\wamp\www\sta...', Array) 
#15 C:\wamp\www\starter211\lib\Cake\View\View.php(463): View->_render('C:\wamp\www\sta...') 
#16 C:\wamp\www\starter211\lib\Cake\Controller\Controller.php(959): View->render(NULL, NULL) 
#17 C:\wamp\www\starter211\lib\Cake\Routing\Dispatcher.php(110): Controller->render() 
#18 C:\wamp\www\starter211\lib\Cake\Routing\Dispatcher.php(85): Dispatcher->_invoke(Object(PicturesController), Object(CakeRequest), Object(CakeResponse)) 
#19 C:\wamp\www\starter211\app\webroot\index.php(96): Dispatcher->dispatch(Object(CakeRequest), Object(CakeResponse)) 
#20 {main} 

回答

0

我有同样的问题。要解决我这样做:

  • 移动MeioUploadBehavior.php到/应用/型号/行为的文件夹(即取出其子文件夹)
  • 负荷的行为,而点符号。

    $actsAs = array(
        'MeioUpload' => array(...options here...) 
    ); 
    

不知道为什么有它的子目录下,抛出缺少插件例外此版本的CakePHP的,但如果你想有一个临时补丁,这是它!

0

你把这条线放在引导程序中吗?

CakePlugin::loadAll(); 
0

杉杉你需要的时候你克隆到的文件夹,以MeioUpload重新命名它具有ckaephp-MeioUpload清晰和在线订购把

MeioUpload在

yourapp

/app/config/boostrap.php

添加此

CakePlugin ::负载( 'MeioUpload');

and all working good :)