[symfony-users] Symfony 1.2 / Propel ODBC Driver

2008-12-18 Thread Tim
I'm having a problem using the ODBC connection to connect to a MSSQL server. The mssql PDO driver is a little buggy. Propel supports specifying separate values for its PDO connection DSN vs its internal adapter. As I understand it, specifying a dsn that begins with ODBC: along with "mssql" as t

[symfony-users] Re: Exceptions in production environment

2008-12-18 Thread Dan Leech
Thanks -- actually I remember that now The reason it was set to true in the first place was that when it is false the autoloading doesnt seem to work -- e.g. it cannot find 'sfYamlConfigHandler' 2008/12/18 Lee Bolding : > > it should be... > >> getApplicationConfiguration('ourapp', 'prod', false

[symfony-users] Catalog of opensource projects

2008-12-18 Thread Dmitry Nesteruk
Who want to uphold symfony, you can to confirm using symfony and rate it. https://www.ohloh.net/p/symfony --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to sy

[symfony-users] Re: Exceptions in production environment

2008-12-18 Thread Lee Bolding
it should be... > getApplicationConfiguration('ourapp', 'prod', false); The last arg is to enable/disable debugging On 18 Dec 2008, at 17:03, Dan Leech wrote: > > Hi all > > We are receiving full stack traces in the production environment > instead of the error500 template since upgrading to 1

[symfony-users] Exceptions in production environment

2008-12-18 Thread Dan Leech
Hi all We are receiving full stack traces in the production environment instead of the error500 template since upgrading to 1.2 from 1.0 the font controller says : ... getApplicationConfiguration('ourapp', 'prod', true); Any ideas on why this might be? cheers dan -- Dan Leech Dynamic Web S

[symfony-users] Report

2008-12-18 Thread AlphaX
Hello ... Does anyone Plugin for generating reports on the PHPReports type symfony 1.1? I am very ... Thank you! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send em

[symfony-users] generator.yml dynamic credentials

2008-12-18 Thread Garakkio
I have an "item" table related with a "user" table (1-n: a user can be related to many items). In backend, I want that an user can see every item, but edit/delete only his/her ones. So, I check for "owned" items in login and I add a credential for each one, say "item1", "item2", etc ("itemXX", whe

[symfony-users] Re: Routing problem

2008-12-18 Thread Kostrowsky
routing.yml: homepage: url: / param: { module: indexsplash, action: index } default_symfony: url: /symfony/:action/* param: { module: default } default_index: url: /:module param:

[symfony-users] Re: What is Base64 encoding?

2008-12-18 Thread Samir van de Sand
Ok, I know understood that non ASCII strings are treated as binary data. Thank you very much everybody ;) On Thu, Dec 18, 2008 at 11:54 AM, Bernhard Schussek wrote: > Hi Samir, > > On Thu, Dec 18, 2008 at 10:52 AM, Samir van de Sand > wrote: > > Ok, thank you for your reply. However, I still do

[symfony-users] Re: What is Base64 encoding?

2008-12-18 Thread Bernhard Schussek
Hi Samir, On Thu, Dec 18, 2008 at 10:52 AM, Samir van de Sand wrote: > Ok, thank you for your reply. However, I still don't understand why I should > save cookie contents with base64 encoding? They aren't binary data? Nicolas already gave you the answer: On Wed, Dec 17, 2008 at 3:44 PM, Nicolas

[symfony-users] Re: Freeze vs Unfreeze

2008-12-18 Thread small
Agree with Jacob - checkout this article http://symfonynerds.com/blog/?p=123 On Dec 18, 9:08 am, Jacob Coby wrote: > You're better off putting a full symfony install in lib/vendor by   > using a svn:externals or just extracting the code there.  You'll need   > to update config.php (1.0) and Pro

[symfony-users] Re: Plugin repository should be more informative

2008-12-18 Thread Stefan Koopmanschap
Problems with plugins should usually be reported in trac. In the 'contribute' tab of the plugin there is a link to the open tickets for a plugin, so that information is already linked to. user rating was discussed on SymfonyCamp this year I think, and denied because it is open to gaming too much.

[symfony-users] Plugin repository should be more informative

2008-12-18 Thread Yuretsz
Symfnony's plugin repository http://www.symfony-project.org/plugins/ has * 369* plugins. Thats alot. Some of them good some of them are crappy. It could take more than a month to test all of them, but why do we need need to test them all? But what would happen If I'll find a bug in It? It's only me

[symfony-users] Re: What is Base64 encoding?

2008-12-18 Thread Samir van de Sand
Ok, thank you for your reply. However, I still don't understand why I should save cookie contents with base64 encoding? They aren't binary data? On Thu, Dec 18, 2008 at 12:06 AM, Eno wrote: > > On Dec 17, 9:04 am, "Samir van de Sand" > wrote: > > > 2. Does this mean everytime I transfer (binary

[symfony-users] Re: Routing problem

2008-12-18 Thread Bernhard Schussek
Could it be that your .htaccess file is messed up? Could you maybe post that file, the contents of your routing.yml and that of settings.yml here? Otherwise it's quite hard to help you. Bernhard --~--~-~--~~~---~--~~ You received this message because you are subs

[symfony-users] Re: admin generator: changing field type in 1.2

2008-12-18 Thread juro
Hi, 1. you define the type of fields in the Form class of the model. so the code would look something like $this->widgetSchema['myReadOnlyField'] = new sfWidgetFormInput(array ('readonly' => true)); 2. have a look at the sfFormExtraPlugin. it ships with a sfWidgetFormJQueryDate widget which shou