Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
I assume your form has the necessary enctype? Also your Uploader.FileValidation appears to reference file, whereas your input name is fileName - might be relevant. – Ross Nov 18 '12 at 13:46
Shoot. Forgot to add the enctype, it's now working. Thanks! – Louie Miranda Nov 20 '12 at 14:44

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.