[symfony-users] Re: Making a portable web application

2007-10-28 Thread Neonard0
Hi, I was recently thinking the same you need, and IMHO and a little of investigation the best way to do it is using a normal web server with a PHP, mysql, and all stuff, so the good news is that there is already a solution for you check this site http://www.server2go-web.de/index.html and you ar

[symfony-users] Re: Cross Domain Login

2007-10-28 Thread Neonard0
I read some time before, one standarization method for that purpose called OpenID, I think tha should help you, but I havent tested, but I know that symfony has an implemetation of this standar. S my advice check that out On Oct 28, 4:43 am, "Ian P. Christian" <[EMAIL PROTECTED]> wrote: > Andrea

[symfony-users] Making a portable web application

2007-10-28 Thread Robin
I recently received a request to update / improve a relatively simple application which is used for browsing a catalog of codes. The original developer of the application opted for a separate cd-rom based version (coded in VB) and web version (web version can be found here: http://www.icn.ch/icnpw

[symfony-users] Re: Anyone using MAMP

2007-10-28 Thread Kris Wallsmith
Could it be as simple as clearing the symfony cache? Other than that, my experience with blank screens when trying to access a symfony project is that the library and data folder variables in /config/ config.php aren't configured accurately. I use MAMP on my laptop and it works fine... Kris Tom

[symfony-users] Re: mod_rewrite on my production server

2007-10-28 Thread cleve
settings.yml -- prod: .settings: no_script_name: on dev: .settings: # E_ALL | E_STRICT = 4095 error_reporting:4095 web_debug: on cache: off no_script_name: off etag: off sta

[symfony-users] Re: Anyone using MAMP

2007-10-28 Thread Lee Bolding
Hey all, I just missed joined the list, so missed the beginning of this conversation. FWIW, I'm using MAMP 0.9 and Symfony works great (although you need to mess around to get PEAR installed). You have a specific problem with the MAMP stack? I'd be happy to help :) On 28 Oct 2007, at 20:55

[symfony-users] Re: Anyone using MAMP

2007-10-28 Thread Ant Cunningham
Ruby is bundled on 10.4 too... its just broken. They screwed something up in the cross compiling I think. there are instructions on how to repair it though. On 10/26/07 10:48 PM, "Tom Haskins-Vaughan" <[EMAIL PROTECTED]> wrote: > > I've never had any problems with LAMP. You'd think that as Mac

[symfony-users] Re: Anyone using MAMP

2007-10-28 Thread Ant Cunningham
Weird.. im not seeing my message with instructions showing up (even on the web interface) Stupid kMail :-). Anyhow here it is again in case you havent figured it out on your own: On Fri October 26 2007 22:57:59 Tom Haskins-Vaughan wrote: > Thanks Ant, > > Sorry to be a real idiot, but you coul

[symfony-users] Re: sfDoctrine and database indexes

2007-10-28 Thread Charley Tiggs
On Oct 28, 2007, at 4:45 AM, Ian P. Christian wrote: > > Charley Tiggs wrote: >> I'm using schema.yml to manage my models and to create the tables >> until the database structure settles down. I'm trying to create a >> multi-column index on a table and am not having any success. Here's >> the

[symfony-users] Re: validation files for different situations

2007-10-28 Thread Thierry
Ahh, I see.. hmm that might not be a bad idea at all. Thanks, ill go try that :) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to symfony-users@googlegroups

[symfony-users] Re: mod_rewrite on my production server

2007-10-28 Thread Amit Rana
can you also post frontend's settings.yml? On 10/28/07, cleve <[EMAIL PROTECTED]> wrote: > > Hi everyone, > > Im having real trouble trying to get URL Rewriting working on my > redhat apache2 prod server. > > When going to: > http://fuzzed/static/watch > > it just displays > "Not Found > The requ

[symfony-users] mod_rewrite on my production server

2007-10-28 Thread cleve
Hi everyone, Im having real trouble trying to get URL Rewriting working on my redhat apache2 prod server. When going to: http://fuzzed/static/watch it just displays "Not Found The requested URL /chart was not found on this server." But http://fuzzed/index.php/static/watch works fine. mod_rewr

[symfony-users] Re: validation files for different situations

2007-10-28 Thread Kiril Angov
validateXXX can be also used to overwrite validation from the yml file. So in your yaml file you put all the 4 fields. Then in your valdiateXXX method you check if the user needed to enter all 4 or just one and if the user did not need to enter all fields then you can use sfRequest->removeErro

[symfony-users] Re: validation files for different situations

2007-10-28 Thread Thierry
Yes, but this way I cannot use yml files can I? Or is there any way to use yml validation from the action? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to

[symfony-users] Re: validation files for different situations

2007-10-28 Thread Julien Levasseur
In your validateXXX(), you have to distinct the user by an attribute's user. With a switch(attribute)...case you can validate an input or not. So your form will be validate for 1 or 4 inputs according to user attribute. On Oct 28, 1:37 pm, Thierry <[EMAIL PROTECTED]> wrote: > Nope, nothing too mu

[symfony-users] Re: validation files for different situations

2007-10-28 Thread Thierry
Nope, nothing too much about this in the manual. Im curious, how did you guys deal with this problem? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to symfo

[symfony-users] Re: validation files for different situations

2007-10-28 Thread Thierry
The validateXXX() might be nice The validation process doesn't stop when a validator fails. Symfony tests all the validators and declares the validation failed if at least one of them fails. And even if some of the rules of the validation file fail, symfony will still look for a validateXXX() met

[symfony-users] validation files for different situations

2007-10-28 Thread Thierry
What if depending on some parameters you serve a different form, which submits to the same update actions. So someone which is logged in might have to fill in one field and someone which is not logged in 4. However if you are not logged in you really need to fill in all 4. How to accomplish thi

[symfony-users] Re: Symfony coders needed / symfony e-commerse module...

2007-10-28 Thread Ámon Tamás
Charley Tiggs írta: > I'd be happy to help work on it. I just need to know how we're > communicating about it and what is still needed. Me too. Because I must to write an e-commerce website for my client and I like to make in symfony and easiest to make it together for everybody :) > > Charl

[symfony-users] Re: sfDoctrine and database indexes

2007-10-28 Thread Ian P. Christian
Charley Tiggs wrote: > I'm using schema.yml to manage my models and to create the tables > until the database structure settles down. I'm trying to create a > multi-column index on a table and am not having any success. Here's > the table: > Please create a ticket for this in the symfo

[symfony-users] Re: Sometimes suffix sometimes not

2007-10-28 Thread Ian P. Christian
Tom Haskins-Vaughan wrote: > Also, not sure if this is fool proof, but as a last rule in routing.yml > I tried: > > catch_all: >url: /*. >param: { module: catchall, action: index } > > This will catch everything left at the end of the routing rules: > > www.domain.com/incorrectly_entere

[symfony-users] Re: Cross Domain Login

2007-10-28 Thread Ian P. Christian
Andreas Stephan wrote: > Does anyone have an idea how Yahoo implemented their Yahoo ID? Or how > Microsoft implemented their passport service? > As far as I can see, they have managed to maintain pretty urls and > still have a cross domain login. > Why not just implement a SOAP API for authenti