[symfony-users] Re: Conception problem... Module / Application

2008-06-12 Thread obalais
Hi, I read the entire dwhittle article about ysfDimensions plugin and I think it can't solve my problem. The dimensions allowed values must be declared in a yml configuration file. I can't edit this yml file each time a member create his own online shop... Maybe I'm wrong and there is a tip

[symfony-users] Re: Conception problem... Module / Application

2008-06-12 Thread cokker
With sfYaml you can edit a yml-file in your script. greets Sven obalais schrieb: Hi, I read the entire dwhittle article about ysfDimensions plugin and I think it can't solve my problem. The dimensions allowed values must be declared in a yml configuration file. I can't edit this yml file

[symfony-users] Re: Redirect to another apps ?

2008-06-12 Thread Cédric Sadai
funny... I came accross the exact same problem yesterday (giving a front office live preview link from the backend). I finally found that http://www.symfony-project.org/forum/index.php/m/31105/?srch=routing#msg_31105 I don't like the absolute links, but for a prototype it will be fine cedric

[symfony-users] Re: Conception problem... Module / Application

2008-06-12 Thread obalais
Thank you all... On 12 juin, 09:38, cokker [EMAIL PROTECTED] wrote: With sfYaml you can edit a yml-file in your script. greets Sven obalais schrieb: Hi, I read the entire dwhittle article about ysfDimensions plugin and I think it can't solve my problem. The dimensions allowed

[symfony-users] How to check if a plugin is installed

2008-06-12 Thread Mauro Casula
Dear List, :) I have a problem. I'm developing a plugin that will require a second plugin. In the code, I have to check if the second plugin is installed. I can check if the directory exists.. but my question is: Do exists in Symfony a way to check if a plugin is installed? Best Regards.

[symfony-users] Re: Setting response parameters for images and css files located in web/images and web/css

2008-06-12 Thread rmorrison
Thanks a lot, that worked! On Jun 11, 4:29 pm, Dustin Whittle [EMAIL PROTECTED] project.com wrote: It sounds like you are trying to setup caching for css/js, use these rules to gzip js/css + set expires headers: DeflateFilterNote ratio AddOutputFilterByType DEFLATE text/css text/plain

[symfony-users] symfony exeption apres propel-init-admin

2008-06-12 Thread Jason - Antiquites-en-france.com
bonjour, l'admin généré m'affiche une execption symfony que j'ai du mal a comprendre, vola le deteil : schema.yml : propel: member: _attributes:{ phpName: Member } id: society: { type: varchar, size: 255, required: true } name: { type: varchar, size:

[symfony-users] Re: How to mix form object and form error !

2008-06-12 Thread Mark D
It's all explained in the book: http://www.symfony-project.org/book/1_0/10-Forms#Repopulating%20the%20Form On Jun 11, 2:21 am, Sylver [EMAIL PROTECTED] wrote: Hello, i have a quick question. How use both of the form objects and form error ? Ex : (form object) ?php echo

[symfony-users] Re: How to mix form object and form error !

2008-06-12 Thread Richtermeister
Hey Sylver, the form_error function is still available, even when you use object input tags. so in your case: ?php echo form_error(mail); ? ?php echo object_input_tag($client, 'getMail'); ? is perfectly valid and works. Hope this helps, Daniel On Jun 11, 2:21 am, Sylver [EMAIL PROTECTED]

[symfony-users] Re: Ascending Order in a Dropdown?

2008-06-12 Thread Jill Elaine
peer_method is the way to go! http://www.symfonylab.com/how-to-populate-object_select_tag-with-your-own-objects/ and http://www.symfony-project.org/forum/index.php/m/47117/ Hope this helps! Phil wrote: I have a table with a list of food styles which are entered in random order. I have a

[symfony-users] Re: Conception problem... Module / Application

2008-06-12 Thread Richtermeister
Hey Olivier, I would build one app with all the required modules for a store (catalog, checkout, account, etc), and make each module smart enough to customize itself based on certain parameters, such as the url. Then you can swap out layout, templates, stylesheets etc, based on store

[symfony-users] Re: Slightly off topic, MLS feeds - was efficient capitalising

2008-06-12 Thread Jacob Coby
On Jun 10, 2008, at 6:29 PM, Tom Haskins-Vaughan wrote: Thanks for that Jacob, They'll (Mosso) let me set up a cron job but unfortunately just a PHP script. Now, I maybe able to use exec() to run unzip. Not sure how that will effect memory issues. Shouldn't hurt you at all. You'll

[symfony-users] Re: Slightly off topic, MLS feeds - was efficient capitalising

2008-06-12 Thread Tom Haskins-Vaughan
Thanks Jacob, On my local server, I've so far managed to list the contents of the ftp dir, download a zip file and unzip it. Just tried it on my production server (Mosso) and it throws: PHP Warning: ftp_get(tmp/IF20080612_001655_COM_3.zip): failed to open stream: No such file or directory

[symfony-users] Slightly offtopic - CC encryption / decryption

2008-06-12 Thread Richtermeister
Hi all, this is not specific for symfony, but advice is so good here, I thought I'd ask. I have no experience with encrypting / decrypting data, but the app I'm working on needs to store Credit Card numers for a brief amount of time... how would you go about en / de-crypting those? (No one way

[symfony-users] Re: Slightly offtopic - CC encryption / decryption

2008-06-12 Thread Mohammad Ali Safari
Hi, I use the methods in PHP mcrypt module. I have these two methods: // Decription Encryption public static function encrypt($string, $key){ $cipher_alg = MCRYPT_RIJNDAEL_128; $iv = mcrypt_create_iv(mcrypt_get_iv_size($cipher_alg, MCRYPT_MODE_ECB), MCRYPT_RAND);

[symfony-users] Re: Slightly offtopic - CC encryption / decryption

2008-06-12 Thread Richtermeister
Thanks Mohammad, that is exactly what I was looking for! And another reason to get mcrypt working on my server ;) Thanks again, have a great day. Daniel On Jun 12, 1:37 pm, Mohammad Ali Safari [EMAIL PROTECTED] wrote: Hi, I use the methods in PHP mcrypt module. I have these two methods:

[symfony-users] Re: Slightly offtopic - CC encryption / decryption

2008-06-12 Thread Lee Bolding
You may want to check this : http://en.wikipedia.org/wiki/PCI_DSS before you go ahead and do that. A company processing, storing, or transmitting payment card data must be PCI DSS compliant or risk losing their ability to process credit card payments and being audited and/or fined I think

[symfony-users] Re: How do I access a validate .yml setting in my template?

2008-06-12 Thread Daevid Vincent
I asked this before and got no real answer. Is this not possible? Can I not access values of the validate/update.yml file? -Original Message- From: symfony-users@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daevid Vincent Sent: Tuesday, June 03, 2008 1:58 PM To:

[symfony-users] Re: Slightly offtopic - CC encryption / decryption

2008-06-12 Thread Alistair Stead
There are major implication of storing such data and in the UK there are particularly stringent restrictions on how and where you can store such data. I believe this goes as far as dictating hardware setup etc. My advice would be evaluate the reason why you are storing this information and think

[symfony-users] HOT PHOTOS AND VIDEOS COME FROM INDIA

2008-06-12 Thread shanthi
HOT PHOTOS AND VIDEOS COME FROM INDIA http://www.funnygames2all.page.tl/ http://www.rojahot1.blogspot.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send