Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6662991
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T02:27:01+00:00 2026-05-26T02:27:01+00:00

I have a file upload form in the frontend. At the moment, when a

  • 0

I have a file upload form in the frontend.

At the moment, when a new record is created, the file is uploaded to

%sf_data_dir%/files/

but due to some business logic I need the file to be uploaded to

%sf_data_dir%/files/%record_id%/

Therefore the uploaded file should be saved AFTER the record is created.

How can I achieve that?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T02:27:02+00:00Added an answer on May 26, 2026 at 2:27 am

    If you use file upload, your form certainly make use of the sfValidatorFile (if not, that’s wrong):

    $this->validatorSchema['image'] = new sfValidatorFile(array(
                                        'required' => true,
                                        'mime_types' => 'web_images',
                               ));
    

    This validator return a sfValidatedFile instance that can be saved anywhere you want (it’s safer than move_uploaded_file, there is checks on the directory, filename…).

    In your action (or in the form, as you want/need), you can now do this:

    protected function processForm(sfWebRequest $request, sfForm $form)
    {
      $form->bind(
        $request->getParameter($form->getName()),
        $request->getFiles($form->getName())
      );
    
      if ($form->isValid())
      {
        $job = $form->save();
        // Saving the file to filesystem
        $file = $form->getValue('my_upload_field');
        $file->save('/path/to/save/'.$job->getId().'/myimage.'.$file->getExtension());
        $this->redirect('job_show', $job);
      }
    }
    

    Don’t hesitate to open sfValidatedFile to see how it work.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an upload form with a file to be uploaded. The issue I
I have a File.aspx form where I display all the files. When I upload
I have a file upload form where the file gets uploaded to an S3
I have File Upload form which users use to upload certain files on the
I have a file upload form that is being posted back to a servlet
I have a file upload group in a form and I'd like to be
We have got an extjs 3.1.1 form with file upload field ( http://www.extjs.com/deploy/dev/examples/form/file-upload.html from
I have a form that excepts a file upload in ASP.NET. I need to
I have a form which binds a model and a file upload using the
I have a PHP validate statement for a file upload on a HTML form.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.