I basically followed all possible scenario settings on this. But, could not get a file to upload.
Anyway, my settings. I am using cakephp 2.2.3
untar files to: app/Plugins/Uploader/
composer.json Config Locale Model readme.md Test Vendor
Config/bootstrap.php
CakePlugin::loadAll();
Controller/RecordsController.php
public function add() {
App::import('Vendor', 'Uploader.Uploader');
$this->Uploader = new Uploader();
$data = $this->Uploader->upload()
}
Model/Record.php
public $actsAs = array(
'Uploader.Attachment' => array(
'fileName' => array(
'name' => 'formatFileName', // 'formatFileName', // Name of the function to use to format filenames
//'baseDir' => '', // See UploaderComponent::$baseDir
'uploadDir' => '/files/upload/', // See UploaderComponent::$uploadDir
'dbColumn' => 'filename', // (uploadPath) The database column name to save the path to
//'importFrom' => '', // Path or URL to import file
//'defaultPath' => '', // Default file path if no upload present
'maxNameLength' => 30, // Max file name length
'overwrite' => true, // Overwrite file with same name if it exists
'stopSave' => true, // Stop the model save() if upload fails
'allowEmpty' => false, // Allow an empty file upload to continue
'transforms' => array(), // What transformations to do on images: scale, resize, etc
//'s3' => array(), // Array of Amazon S3 settings
/*'metaColumns' => array( // Mapping of meta data to database fields
'ext' => '',
'type' => '',
'size' => '',
'group' => '',
'width' => '',
'height' => '',
'filesize' => ''
)*/
)
),
'Uploader.FileValidation' => array(
'file' => array(
'extension' => array(
'value' => array('gif', 'jpg', 'jpeg'),
'error' => 'Only gif, jpg and jpeg images are allowed!'
),
'required' => true
),
));
View/Records/add.ctp
echo $this->Form->input('fileName', array('type' => 'file'))
Well, are pretty much has the correct setup. But, it still returns a false. "There was an error uploading this file, please try again."
I saw the debug, it saw the filename. But, it does not seem to upload. Although, it did create a folder. But, no files are being uploaded. The folder has 777 perm.
array(
'Record' => array(
'user_id' => '1',
'record_type_id' => '2',
'equipment_model_id' => '1022',
'clicks' => '1',
'status' => '1',
'fileName' => 'equipment_models.txt'
)
)
Any help is appreciated.
Thanks
enctype? Also yourUploader.FileValidationappears to referencefile, whereas your input name isfileName- might be relevant. – Ross Nov 18 '12 at 13:46