RE: [symfony-users] I can't see the images of the default module.

2009-12-19 Thread Daniel Kucharski
Check if your /sf alias in your http config is pointing to the right directory. -Original Message- From: symfony-users@googlegroups.com [mailto:symfony-us...@googlegroups.com] On Behalf Of tirengarfio Sent: vrijdag 18 december 2009 21:23 To: symfony users Subject: [symfony-users] I can't

[symfony-users] ckWebServicePlugin parameters

2009-12-19 Thread lorenx
hi all. i'm able to generate a valid wsdl but i'm not able to pass any parameters to my methods. an example: /** * A test method. * * @ws-enable * @ws-method HelloWorld * * @param string $name The name * * @return string The result */ public function

[symfony-users] Re: I can't see the images of the default module.

2009-12-19 Thread PachinSV
Hi tirengarfio, your have to configure virtualhosts in your webserver, and use an alias statement that point to the right folder (I use xampp too, I hope this help you) e.g.: # you have to be sure, you only have one of this statements (NameVirtualHost) NameVirtualHost *:80 VirtualHost *:80

Re: [symfony-users] ysfYUIPlugin and isXmlHttpRequest()

2009-12-19 Thread Jonathan Wage
I've actually had this issue when using YUI for ajax. I hacked around it by sending my own flag so that Symfony knows it is an ajax request. - Jon On Sat, Dec 19, 2009 at 2:36 AM, Lukas Kahwe Smith m...@pooteeweet.orgwrote: On 18.12.2009, at 13:20, Lukas Kahwe Smith wrote: On 18.12.2009,

[symfony-users] Re: Doctrine Form - multiple/recursive embedRelation - Apache

2009-12-19 Thread ScherlOMatic
I'm not sure, but i guess there's a problem with your apache version. I am developing with Windows as well and i never expected problems with the embedRelation() function. Maybe you could try the Xampp package from apachefriends. It works like charming. Sincerly, Stefan On 17 Dez., 15:21,

[symfony-users] Re: Doctrine Form - multiple/recursive embedRelation - Apache

2009-12-19 Thread ScherlOMatic
I'm not sure but I guess there's a problem with your apache version. Maybe you could try to update or to use xampp package instead. I'm developing on Windows as well and I never expected problems with the embedRelation() function. Sincerly, Stefan On 17 Dez., 15:21, Tobias

[symfony-users] Why config is not read from generator.yml

2009-12-19 Thread George
Hi, Why I get the Affiliate List instead of Affiliate Management with admin view of Jobeet tutorial tutorial. It seems as if symfony does not read the config. --- generator: class: sfDoctrineGenerator param: model_class: JobeetAffiliate theme:

[symfony-users] How to configure a web server without changing the httpd.conf?

2009-12-19 Thread Boris
Hello everyone. Thanks to the netbeans 6.8 support i decided to learn symfony. So i start with jobeet project. My opinion is that this is the easiest way to understand how this framework works. Successfully passed the first lesson :), but i have some additional questions, if someone is in a mood

[symfony-users] admin generator, change redirect target after create/update

2009-12-19 Thread Georg Gell
Hello, I would like to change the target of the redirect in an auto generated admin form, after the object is saved. This target is hard coded in processForm() in the base action. Is there an easier way then copying the whole processForm() method into the action, and then change only the target

Re: [symfony-users] How to configure a web server without changing the httpd.conf?

2009-12-19 Thread Alexandru-Emil Lupu
HI! If you want to install symfony on a shared host please check previous threads in the usregroup. It has been discussed before, and unfortunatelly my ISP does not give me enough juice to perform the search Alecs On Sat, Dec 19, 2009 at 9:51 PM, Boris borisdel...@gmail.com wrote: Hello

Re: [symfony-users] admin generator, change redirect target after create/update

2009-12-19 Thread Alexandre Salomé
Hi, You can wrap the function in a try...catch block and do your stuff : public function processForm() { try { parent::processForm(); } catch (sfStopException $e) { $this-redirect(...); } } Not sure if this will work... Try and tell us. Alexandre 2009/12/19 Georg Gell

Re: [symfony-users] How to set variables In the Global template?

2009-12-19 Thread Alexandre Salomé
Hey ! What if symbol is ../../../../../config/databases.yml ??? Warning !! Security !! Haaa !! 2009/12/18 Alexandru-Emil Lupu gang.al...@gmail.com sfConfig::set($name, $value) maybe ? On Thu, Dec 17, 2009 at 4:44 PM, ajit csa...@gmail.com wrote: Hi all, I have an application

Re: [symfony-users] Re: plugin:install not working for 1.3/1.4?

2009-12-19 Thread Alexandre Salomé
You should use SVN to manage your development and define your plugins as svn externals. 2009/12/18 Kevin kevinb...@gmail.com I should have clarified, all these plugins I am trying to install are compatible with 1.3. On Dec 18, 9:24 am, Stéphane stephane.er...@gmail.com wrote: There are

Re: [symfony-users] Render single choice of sfWidgetFormSelectCheckbox

2009-12-19 Thread Alexandre Salomé
There is just no way. First of all, your form is wrong. Validator and Widgets must have the same name. To achieve what you want to do, you could do something like this : $choices = array ( 'option1' = '%%option1%%', 'option2' = '%%option2%%' ); In your template : str_replace(array (

Re: [symfony-users] Why config is not read from generator.yml

2009-12-19 Thread Daniel Lohse
Did you clear the cache? Daniel On Dec 19, 2009, at 10:41 AM, George wrote: Hi, Why I get the Affiliate List instead of Affiliate Management with admin view of Jobeet tutorial tutorial. It seems as if symfony does not read the config. --- generator: class:

Re: [symfony-users] How to configure a web server without changing the httpd.conf?

2009-12-19 Thread Boris
Thank you for your response, given that there are already issues with this problem. I didn't found them because I didn't used the term shared host in the search. Moreover there is also a wiki where all this is explained nicely. http://trac.symfony-project.org/wiki Best regards, Boris On Sat, Dec

[symfony-users] swift mailer multiple servers

2009-12-19 Thread ScherlOMatic
Hello everybody! This is my first post and I'm glad if somebody could help me. Sorry if I there will be some spelling errors, buts it's been a while I've spoken English. Problem: I need to have multiple mail servers (exactly 2 servers) and I'm not sure if it's possible to realize it in symfony

Re: [symfony-users] How to configure a web server without changing the httpd.conf?

2009-12-19 Thread Parijat Kalia
What kind of shared hosting are you on. There are some that assist symfony based websites, A2 hosting, ServerGrove, Dream hosting, go daddy...each of them has a wiki of it's own explaining the hosting...u can't really configure the web server httpd.conf, on a shared hosting. although, if possible,