[symfony-users] Re: STILL CANNOT LOCATE Driver, sigh... Re: Couldn't locate driver named mysql

2009-06-09 Thread Jonathan Wage
Sometimes apache and the command line have different php.ini files. Make sure you are editing the php.ini for apache. You can check the location of your php.ini by checking phpinfo(); in a php script which is executed from the browser/apache. Thanks, Jonathan H. Wage (+1 415 992 5468) Open Source

[symfony-users] STILL CANNOT LOCATE Driver, sigh... Re: Couldn't locate driver named mysql

2009-06-09 Thread Emily
Sorry, I meant: It did NOT solve the problem. -- Emily At 10:20 PM 6/9/2009, Emily wrote: >Thanks for the suggestion. > >I have restarted Apache each time. It did solve the problem. > >-- Emily > >At 08:39 PM 6/9/2009, Dheeraj Kumar Aggarwal wrote: > >Hi > > > >i don't know the solution of yo

[symfony-users] Re: Couldn't locate driver named mysql

2009-06-09 Thread Emily
Thanks for the suggestion. I have restarted Apache each time. It did solve the problem. -- Emily At 08:39 PM 6/9/2009, Dheeraj Kumar Aggarwal wrote: >Hi > >i don't know the solution of your problem . >but may be it can be solved by restarting the apache. >have you restart your apache after cha

[symfony-users] Re: jobeet day 2 (subversion)

2009-06-09 Thread Gareth McCumskey
Subversion isn't an apache thing as far as I know. Its a standalone program feel free to correct anyone but I'm pretty sure it isn't On Tue, Jun 9, 2009 at 1:48 PM, sm9...@gmail.com wrote: > > Jobeet doc describes how to create a repository for IIS in > http://www.symfony-project.com/cookbo

[symfony-users] Re: Couldn't locate driver named mysql

2009-06-09 Thread Dheeraj Kumar Aggarwal
Hi i don't know the solution of your problem . but may be it can be solved by restarting the apache. have you restart your apache after changing the php.ini file. because apache loads the configurations again untill it is restarted. On Wed, Jun 10, 2009 at 8:35 AM, Emily wrote: > > I used to be

[symfony-users] Re: Problem with my-first-project tutorial (Symfony 1.2)

2009-06-09 Thread Dheeraj Kumar Aggarwal
Hi i think u should check your application's settings.yml for prod: .settings: no_script_name: off set the no_script_name to off in your prod environment settings. On Sat, Jun 6, 2009 at 3:55 AM, Fabu wrote: > > Hi, > > I would like to keep "index.php" when I navigate into the fr

[symfony-users] Couldn't locate driver named mysql

2009-06-09 Thread Emily
I used to be able to run my Symfony 1.2.4 application on Virtual Box 2.0 with Ubuntu 8.1 I upgraded to Virtual Box 2.2 and Ubuntu 9.04. I get the following error: Couldn't locate driver named mysql. Frontend_dev.php reports that the error as follows: 500 | Internal Server Error | Doctrine_

[symfony-users] How to clear the stale value after using the AJAX.

2009-06-09 Thread happy oliver
First I say thanks to Francois Zaninotto http://www.sitepoint.com/article/symfony-beginners-tutorial/6/ I want to know how to clear the stale value after using the AJAX. At the above article, when I used the AJAX to submit the comment for the photo, the second click the "add the comment". the

[symfony-users] Problem with my-first-project tutorial (Symfony 1.2)

2009-06-09 Thread Fabu
Hi, I would like to keep "index.php" when I navigate into the frontend since when I click on my menu "list of posta" or "list of comments", I obtain a 404 error. With this url : "http://sf.localhost/frontend_dev.php/";, there are no problem. When I click on "list of posts" the server go to this

[symfony-users] Re: problem on file download

2009-06-09 Thread sfNico
Portable and a little bit simpler : protected function sendFile($response,$contentType,$filePath) { $response = $this->getResponse(); $file = sfConfig::get('sf_root_dir').'/[dir]/'.$filePath; // [dir] is inaccessible from the web if(is_file($file)) { $response->setHttpHeader('Content

[symfony-users] Error in Form validation - Jobeet tutorial?

2009-06-09 Thread fesja
Hi, I'm newby with Symfony, doing the Jobeet tutorial and learning a lot. I'm liking it, how everything has been well thought. I've found a problem in Day 11 - Testing your forms. I'm validating the job form and there is an error with the mime type. If I post that job in the browser it works. So

[symfony-users] jobeet day 2 (subversion)

2009-06-09 Thread sm9...@gmail.com
Jobeet doc describes how to create a repository for IIS in http://www.symfony-project.com/cookbook/1_0/web_server_iis I use WAMP, any pointer for using subversion in Apache? Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[symfony-users] Wrong segments.gen file format - Zend Search

2009-06-09 Thread fesja
Hi everyone, I'm following the Jobeet tutorial and now I'm testing the search. However I have the following error: (http://jobeet/frontend_dev.php/search?query=labs) in SF_ROOT_DIR/lib/vendor/Zend/Search/Lucene.php line 256 ... # if ($format != (int)0xFFFE) { # throw new

[symfony-users] Re: Status of PayPal plugin(s)

2009-06-09 Thread Marijn
P.s. it makes use of sfWebBrowserPlugin to prevent reinventing the wheel for api requests but it can be injected with any object that implements a sfWebBrowserInterface On Jun 10, 12:23 am, Marijn wrote: > Hi everybody, > > I currently have a private plugin that manages a dutch payment > service

[symfony-users] Re: Status of PayPal plugin(s)

2009-06-09 Thread Marijn
Hi everybody, I currently have a private plugin that manages a dutch payment service. The approach I took was quite similar, using interfaces that can be implemented by any object to define transactions. I created a global transaction manager that manages the process that can be injected with any

[symfony-users] Re: Cannot run propel:build-sql with multiple schema XML files?

2009-06-09 Thread Eno
On Jun 9, 6:54 am, Konrad wrote: > ... what's more build-model uses package attribute for directory name. > >  You can use tag maybe it will help. > > http://propel.phpdb.org/trac/wiki/Users/Documentation/1.3/Schema One thing I noticed: I have schema in a plugin that contains a table that list

[symfony-users] Re: Cannot run propel:build-sql with multiple schema XML files?

2009-06-09 Thread Eno
On Jun 9, 6:47 am, Konrad wrote: > Build-sql generates sql files using package attribute for their names. > So you have to have different values for this attribute in each schema > or they will overwrite each other. > > propel: >   _attributes:      { package: apps.pp.lib.model } Yes they all

[symfony-users] Re: Cannot run propel:build-sql with multiple schema XML files?

2009-06-09 Thread Eno
On Jun 9, 6:54 am, Konrad wrote: >  You can use tag maybe it will help. > > http://propel.phpdb.org/trac/wiki/Users/Documentation/1.3/Schema How to use this when using schemas written in YAML? -- --~--~-~--~~~---~--~~ You received this message because you a

[symfony-users] Re: Doctrine i18n tables

2009-06-09 Thread Sailor
When i try this, I get a "Unknown relation alias Translation" error. Am I missing something ? Thank's a lot for your answer On 9 juin, 10:11, vl4dimir wrote: > I use > $typeList = Doctrine::getTable("Type") >                                ->createQuery("t") >                                ->l

[symfony-users] sfForm - validation error - field repopulation - how does it work?

2009-06-09 Thread klemens_u
Hi all, I'm hunting down a problem with sfForm in the state of an validation error. Somehow for one field the wrong value appears when the form is repopulated with the entered values. Can anyone enlighten me how the process of the repopulation in case of an validation error works? I mean the pro

[symfony-users] Re: Cannot run propel:build-sql with multiple schema XML files?

2009-06-09 Thread Konrad
... what's more build-model uses package attribute for directory name. You can use tag maybe it will help. http://propel.phpdb.org/trac/wiki/Users/Documentation/1.3/Schema On Jun 8, 4:33 pm, Eno wrote: > When running propel:build-sql in a symfony 1.2 project, I get this > error: > > Fatal e

[symfony-users] Re: Cannot run propel:build-sql with multiple schema XML files?

2009-06-09 Thread Konrad
Hi. Build-sql generates sql files using package attribute for their names. So you have to have different values for this attribute in each schema or they will overwrite each other. propel: _attributes: { package: apps.pp.lib.model } On Jun 8, 4:33 pm, Eno wrote: > When running propel:

[symfony-users] Re: problem on file download

2009-06-09 Thread Thomas Rabaix
Check that your file is valid ;) and use throw new sfStopException instead of sfView::NONE. 2009/6/9 ctrlming > > thank you, I tried many times , but the problem still exist. > I think it`s not code`s problem,maybe something else. > > On 6月7日, 下午10时09分, Tomasz Ignatiuk wrote: > > This is my ver

[symfony-users] Re: Status of PayPal plugin(s)

2009-06-09 Thread Antoine Leclercq
Sorry I haven't replied earlier, I'm kind of busy during my trips to France. @Russen : Please join us on the plugin page so that we can start the real stuff next week. On Tue, Jun 2, 2009 at 8:45 PM, Russen wrote: > > I'd love to get into some development with the PayPal interface! I'm > putting

[symfony-users] Re: Doctrine i18n tables

2009-06-09 Thread vl4dimir
I use $typeList = Doctrine::getTable("Type") ->createQuery("t") ->leftJoin("t.Translation name") ->execute(); --~--~-~--~~~---~--~~ You received this message because you are