[symfony-users] Re: Affordable managed hosting for use with symfony

2010-05-29 Thread pghoratiu
I use Dreamhost, it costs around 9 USD / month and they provide SSH access for their accounts so deploying the application is quite easy this way. Search for a provider that gives you ssh access and an admin panel. As far sa VPS providers go I recomend http://www.intovps.com/. gabriel On May

[symfony-users] why not host symfony1.4 on shared-hosting?

2010-05-29 Thread comb
Hi! Obiously it takes some tweaks to run symfony 1.4 on a shared host, but what's wrong with it? One can add a .htaccess files to prevent unauthorized access for the hole symfony project folder, another one for the web/-directory to enable normal access there and then point http://domain.com to th

[symfony-users] Re: why not host symfony1.4 on shared-hosting?

2010-05-29 Thread comb
Oh I forgot to say "on a shared host without ssh!" On 29 Mai, 09:46, comb wrote: > Hi! > > Obiously it takes some tweaks to run symfony 1.4 on a shared host, but > what's wrong with it? > One can add a .htaccess files to prevent unauthorized access for the > hole symfony project folder, another o

[symfony-users] Re: why not host symfony1.4 on shared-hosting?

2010-05-29 Thread pghoratiu
The major issue with shared hosting in my experience are: - performance, can be really poor in some cases with no performance guarantees - you can have a page responding in 1 sec, another time 20 sec and you have no control over this. Also if you are over your quota in resource usage (cpu mostly)

[symfony-users] Re: why not host symfony1.4 on shared-hosting?

2010-05-29 Thread rooster (Russ)
The biggest issue is security... You have a cache folder with 777 permissions which anyone else on the same host can write to and execute arbitrary PHP code. Some shared hosting providers get round this by using chroot jails and a number of other tricks, but you need to make sure the one you are u

[symfony-users] Re: why not host symfony1.4 on shared-hosting?

2010-05-29 Thread comb
Thanks for your detailed answers pghotariu & rooster (Russ), I have a managed server for my business projects, but for a more or less private page I have a shared host, too. They use mod_php5 + chroot jails + open_basedir and no ssh. So this is ok with me. The mentioned performance issues seems to

Re: [symfony-users] Re: why not host symfony1.4 on shared-hosting?

2010-05-29 Thread Sela Yair
what is the cheapest i can get for a dedicated server? On 29 May 2010 14:20, comb wrote: > Thanks for your detailed answers pghotariu & rooster (Russ), > > I have a managed server for my business projects, but for a more or > less private page I have a shared host, too. They use mod_php5 + > chr

Re: [symfony-users] Re: why not host symfony1.4 on shared-hosting?

2010-05-29 Thread Alexandru-Emil Lupu
Well ... you can try a VPS for a start. I have a provider that gives me 10 E / month the smallest packet http://www.intovps.com/ Alecs On Sat, May 29, 2010 at 2:29 PM, Sela Yair wrote: > what is the cheapest i can get for a dedicated server? > > > On 29 May 2010 14:20, comb wrote: > >> Thanks

Re: [symfony-users] Re: why not host symfony1.4 on shared-hosting?

2010-05-29 Thread Sid Bachtiar
10 Euro or 10 USD? The site uses $ sign. If it is USD $10, that's a good deal. But how long have you been with them? On Sat, May 29, 2010 at 11:32 PM, Alexandru-Emil Lupu wrote: > Well ... you can try a VPS for a start. > > I have a provider that gives me 10 E / month the smallest packet > http:

Re: [symfony-users] Re: why not host symfony1.4 on shared-hosting?

2010-05-29 Thread Sela Yair
i saw on the website you suggested different linux, which is the best for symfony project? On 29 May 2010 14:40, Sid Bachtiar wrote: > 10 Euro or 10 USD? The site uses $ sign. > > If it is USD $10, that's a good deal. But how long have you been with them? > > On Sat, May 29, 2010 at 11:32 PM, Al

[symfony-users] get all models with behavior XYZ

2010-05-29 Thread comb
Hi everybody! I have a behavior FloodCheckable and I want to get all Models (indeed their tables) that have the behavior set in the schema.yml like: Video: actAs: FloodCheckable: ~ How can I find/access those models? comb -- If you want to report a vulnerability issue on symfony, please

Re: [symfony-users] symfony criteri

2010-05-29 Thread Eno
On Fri, 28 May 2010, Parijat Kalia wrote: > $c= new Criteria() > $c->add(QuestionsPeer::USERNAME,'ali'); > $results = QuestionsPeer::doSelect($c); > > Now $results contains all the data of the questions table, where I am > looking only for the question column, what do I need to add to the above >

[symfony-users] Re: why not host symfony1.4 on shared-hosting?

2010-05-29 Thread Olivier
An Unbuntu or a Debian. Stay away from CentOS at all costs if you want recent binary packages. -- 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 to the Google Groups "symfony users" g

Re: [symfony-users] Re: sfForkedDoctrineApplyPlugin with sfFacebookConnectPlugin

2010-05-29 Thread Sela Yair
thanks for your reply. I got another question. in order to use the facebook api you need access to facebook you need url, but when you develop i got localhost domain and not a real one. do i miss something here? On 25 May 2010 16:32, Fabrice Bernhard wrote: > There is no reason they should confl

[symfony-users] Re: why not host symfony1.4 on shared-hosting?

2010-05-29 Thread pghoratiu
I recommend Ubuntu 10.04 if you start now because: a. Enterprise support - 5 yrs of updates b. Ships with latest PHP version (5.3.2). Other Linux distributions are still shipping PHP 5.2.x series because of many PHP software that still relies on it. gabriel -- If you want to report a vulner

Re: [symfony-users] Re: how to prevent save in preInsert?

2010-05-29 Thread Georg Gell
add this to each form's configure() method, that you want to have flood protected (I expect that you want to protect this way (form) of entering data from flooding, and not the model itself): $this->validatorSchema->setPostValidator(new CombValidator(null, array(), array('invalid' => 'Flooding is

Re: [symfony-users] Re: why not host symfony1.4 on shared-hosting?

2010-05-29 Thread Eno
On Sat, 29 May 2010, Olivier wrote: > An Unbuntu or a Debian. Stay away from CentOS at all costs if you want > recent binary packages. I avoid the Redhat/CentOS/Fedora family like the plague. I run Gentoo on all my servers (source-based distros have faster updates than binary ones :-) --

Re: [symfony-users] symfony criteri

2010-05-29 Thread Parijat Kalia
Dude..that is obvious way to do it...but still $results has all the data in it, most of which happens to be unnneeded data...I was asking for a way to filter that out and retrieve only the question part...thanks though! On Sat, May 29, 2010 at 5:40 AM, Eno wrote: > On Fri, 28 May 2010, Parijat Ka

Re: [symfony-users] symfony criteri

2010-05-29 Thread Eno
On Sat, 29 May 2010, Parijat Kalia wrote: > Dude..that is obvious way to do it...but still $results has all the data in > it, most of which happens to be unnneeded data...I was asking for a way to > filter that out and retrieve only the question part...thanks though! Which part of object-relation