Disable symfony web debug for controller action
\sfConfig::set(’sf_web_debug’, false);
Helpful when running upload in dev ENV.
\sfConfig::set(’sf_web_debug’, false);
Helpful when running upload in dev ENV.
Tortoise SVN and other IDE integrated subversion clients was changing format of .svn/* files so that was not possible to use command line subversion client which is more secure.
Finally got upgraded subversion client for Ubuntu Hardy (8.04).
1. Copy source list from: https://launchpad.net/~anders-kaseorg/+archive/subversion-1.6
2. Add lists to /etc/apt/sources.list at bottom of file - Save file
3. apt-get install subversion
(Here [...]
1. Settings svn:ignore property
svn propset svn:ignore “*” folder1/
svn propset svn:ignore “*” folder2
2. Commit to apply changes.
svn ci -m “Data in these folders will be ignored by svn”
Source: http://www.devcha.com/2008/02/how-to-make-svn-ignore-some-folders.html