Hi
I have this situation on my server
A have symfony project instaled in: home/domain/mydomain/myproject
And web directory in: home/domain/mydomain/public_html
In ProjectConfiguration.class.php I set everything like this:
public function setup()
{
$this->enableAllPluginsExcept(array('sfDoctrinePlugin',
'sfCompat10Plugin'));
$this->setWebDir('/home/domains/myproject/public_html/');
$this->setCacheDir('/home/domains/mydomain/myproject/cache/');
$this->setRootDir('/home/domains/mydomain/myproject/');
}
In API I read that setWebDir sets also sf_upload_dir.
public function setWebDir($webDir)
sfConfig::add(array(
'sf_web_dir' => $webDir,
'sf_upload_dir' => $webDir.DIRECTORY_SEPARATOR.'uploads',
));
}
But when I use file field in form like this:
$this->setWidgets(array('file' => new sfWidgetFormInputFile()));
$this->setValidators(array('file' => new sfValidatorFile(array
('required' => false,'path' => sfConfig::get('sf_upload_dir').'/
scans'))));
It uploads files but not to: home/domains/myproject/public_html/
uploads/scans
as I expect but to: home/domains/mydomain/myproject/web/uploads/scans'
Can You tell me why?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"symfony users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---