[symfony-users] Re: .htaccess - redirect example.com/index.php to example.com

2010-07-05 Thread Mickael HOAREAU
[QSA,L]). I dont really like this solution because i would like to keep centralized all the rewrite rules in the htaccess. Mickael -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed

[symfony-users] Re: .htaccess - redirect example.com/index.php to example.com

2010-06-28 Thread Mickael HOAREAU
[NC] RewriteRule ^index.php$ http://www.example.com/ [L,R=301] RewriteCond %{REQUEST_FILENAME} !-f # no, so we redirect to our front web controller RewriteRule ^(.*)$ index.php [QSA,L] /IfModule === Mickael On 28 juin, 20:30, pghoratiu pghora

[symfony-users] Routing: use underscore as separator in url

2010-05-24 Thread Mickael HOAREAU
\-]+)$ datePublished: \d+ id: \d+ If i try the url : /article/lorem-_45.html I have the following error: Unable to parse /article/:info-:datePublished_:id.html route near :id.html. Any body knows what is wrong in my sample ? Thanks in advance. Mickael -- If you want to report

[symfony-users] How to install sfPiwikPlugin with Symfony 1.4

2010-03-25 Thread Mickael
Console : symfony plugin:install sfPiwikPlugin I get a message saying that it couldn't find this sfPiwikPlugin. So I know there is a manual install for every plugin but I don't understand how I have to do. Someone could help me please? What should I do step by step ? Thanks in advance, Mickael

[symfony-users] Define model inside of apps folder

2009-11-04 Thread Mickael HOAREAU
Hi! By default, all the models are defined inside of project_root/lib/ model/doctrine/. That makes the model accessible for every applications inside of apps. What about if i want to make one model accessible only for one app ? (for example a model User with some special methods which should be