[symfony-users] Re: sf 1.1 : where has passed sfResponse parameter holder ?

2008-09-09 Thread Nicolas CHARLOT

Le 10 sept. 08 à 04:52, Kris Wallsmith a écrit :

> If you want to store a variable to the request scope in sf1.1, use the
> request attribute holder:
>
> sfContext::getInstance()->getRequest()->setAttribute('foo', 'bar');
>
> Is that what you're asking?

No, I'm asking for a way to store one or more objects with action cache.

For instance, isicsBreadcrumbsPlugin handles the breadcrumbs. Each  
action defines its own breadcrumbs. So when action is cached, we have  
to retrieve the breadcrumbs too.
In sf1.0, the parameter holder of sfResponse was used and worked very  
well.

In sf1.1, we this parameter holder isn't here, and we can't replace  
with sfRequest parameter holder since sfRequest isn't cached...
--
Nicolas CHARLOT
http://www.isics.fr




--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: new plugin: sfDB4toPropelPlugin

2008-09-09 Thread Jackovson

Thats a very good news !

I was allways going to http://blog.tooleshed.com/docs/dbd2propel/transform.php
to transform my propel file !
Does your plugin cal output .xml file ? It should be possible to
transform .yml to .xml, but maybe more efficient to directly output
xml ?
(maybe you can use the code described on the link I gave ?).

Thakns for your work !

Jackovson

On 9 sep, 19:25, Loïc Vernet <[EMAIL PROTECTED]> wrote:
> Hi symfonians !
>
> Just a little mail to announce the release of a new sf1.1 plugin: 
> sfDB4toPropelPlugin
>
> DB4toPropelPlugin is a plugin that adds to symfony a new task  
> propel:db4-to-propel
> that allows you to convert a DB4 schema (a DBDesigner 4 schema) into a valid 
> propel schema.yml file.
>
> More informations:
>  http://www.symfony-project.org/plugins/sfDB4toPropelPlugin
>
> Tutorial:
>  http://www.strangebuzz.com/index.php/2008/09/09/36-new-symfony-11-plu...
>
> See you. COil

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: new plugin: sfDB4toPropelPlugin

2008-09-09 Thread Jackovson

(it seems there is a problem when installing the plugin from symfony
task :
php symfony plugin:install sfDB4toPropelPlugin --release=1.0.1
Installation of "sfDB4toPropelPlugin" plugin failed: bad md5sum for
file /home/obi/public_html/dev/svn/test/fishomatic-web/branches/2.0/
plugins/sfDB4toPropelPlugin/package.xml )

On 9 sep, 19:25, Loïc Vernet <[EMAIL PROTECTED]> wrote:
> Hi symfonians !
>
> Just a little mail to announce the release of a new sf1.1 plugin: 
> sfDB4toPropelPlugin
>
> DB4toPropelPlugin is a plugin that adds to symfony a new task  
> propel:db4-to-propel
> that allows you to convert a DB4 schema (a DBDesigner 4 schema) into a valid 
> propel schema.yml file.
>
> More informations:
>  http://www.symfony-project.org/plugins/sfDB4toPropelPlugin
>
> Tutorial:
>  http://www.strangebuzz.com/index.php/2008/09/09/36-new-symfony-11-plu...
>
> See you. COil

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Little problem with sfValidatorFile and autogenerated forms with propel

2008-09-09 Thread José Ignacio

Hi all,

2 problems:

first: i want to use mime_categories with web_images in
sfValidatorFile but i think I'm doing it the wrong way
this is what i got

$this->setValidators(array(
'file' => new sfValidatorFile(array('mime_categories' =>
'web_images')),
));

when i run the script i can upload what ever i want

second: in the first problem i manually generate the form and the
upload work fine but when i use the forms that symfony auto generate
from the schema then the validation class convert the parameters of
the file upload (tmp_name, size, type, etc) into form fields and show
me the extra errors

* Extra field type.
* Extra field tmp_name.
* Extra field error.
* Extra field size.

now I'm gonna do the forms manually so my priority is the first
problem the second well if someone have any idea you welcome

best regards,

Jose Garaza

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Which IDE do you use?

2008-09-09 Thread Jim Barcelona
Vim 7.2 (for personal use) and Eclipse PDT (for work).

Ya, I love powerful code completion, too, which is what you've also got in
Vim 7.2 -- I have a quick cheat sheet for code completion and opening
declarations here:

http://www.codebelay.com/blog/?p=205

Cheers,
Barce

On Tue, Sep 9, 2008 at 3:29 PM, Bernhard Schussek <[EMAIL PROTECTED]>wrote:

>
> Eclipse PDT
>
> I really like the powerful code completion and the easy possibiltiy to
> jump to the declaration of any code you use by pressing a single key.
> Very helpful for debugging.
>
> >
>

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: sfGuard - how to implement registration

2008-09-09 Thread Sifix

Javo I find the solution.
if you use $this->form->getObject->save();
then you will save the modied value of the object that you did using

$this->form->getObject()->setUserId(1);

but the other fields that were posted through the form will not be
saved.
So what you have to do is the following

//Update the values of the model with the posted values of the form

$this->form->updateObject();

//Change the value to the model user id = 1
$this->form->getObject()->setUserId(1);

//Save the model

$this->form->getObject()->save();

On Sep 9, 3:49 pm, Sifix <[EMAIL PROTECTED]> wrote:
> Hello,
> Whtat I have understand is
> if instead of $sf_guard_user_profile = $this->form->save();
> you use $sf_guard_user_profile = $this->form->getObject->save();
>
> then you will be able tosavethe id you set above..
>
> Please also take not the following post on my 
> threadhttp://www.symfony-project.org/forum/index.php/m/60467/#msg_60467
>
> it uses the same method with yours but with the exception for a
> strange reason in the
> setPassword method works fine and not in the setEmail.
>
> On Aug 27, 6:15 pm, javo <[EMAIL PROTECTED]> wrote:
>
> > So,
>
> > I separated my functions (register and update),
> > first I'll make my register function, I've tried to rewrite it all
> > I want to create user ONLY (temporarily) in sf_guard_user_profile
> > ( ALWAYS with user_id = 1(I'm trying to understand symfony system)) ,
> > so I did something like this
>
> >   public function executeRegister($request){
>
> >        $this->forward404Unless($request->isMethod('post'));
>
> >     $this->form= new SfGuardUserProfileForm();
>
> >     $this->form->bind($request->getParameter('sf_guard_user_profile'));
>
> > $this->form->getObject()->setUserId(1);   // line 71
> >     if ($this->form->isValid())
> >     {
> >       $sf_guard_user_profile = $this->form->save();
> >       $this->redirect('user/edit?id='.$sf_guard_user_profile->getId());
>
> >     }
>
> >     $this->setTemplate('edit');
> >   }
>
> > althought if I echo $this->form->getObject()->getUserId() the result
> > is 1 (instead of 3 from $_POST), result in the database is default (3)
> > instead of 1, I'm really confused
> > can somebody help me?
>
> > On Aug 26, 9:20 pm, Lee Bolding <[EMAIL PROTECTED]> wrote:> You're using a 
> > function named update to create new users???
>
> > > Try using separate functions for creating and updating users, it will  
> > > make your life a LOT easier.
>
> > > The update function doesn't need to create any new objects, and in the  
> > > registration function, you can use the shortcut $profile = $user-
> > >  >getsfGuardProfile() to get a users profile OR create a new one if  
> > > one doesn't exist for that user. You don't need to create a new  
> > > sfGuardUserProfile object.
>
> > > HTH
>
> > > On 26 Aug 2008, at 13:20, javo wrote:
>
> > > > thx but setNew(FALSE) won't solve my problem, because I want to create
> > > > new users, not just update them
>
> > > > On Aug 26, 12:06 am, "Jim Barcelona" <[EMAIL PROTECTED]> wrote:
> > > >> You can try something like this:
> > > >> $sfGuardUser->setNew(FALSE);
>
> > > >>> On Aug 25, 10:49 am, Lee Bolding <[EMAIL PROTECTED]> wrote:
> > >  On 25 Aug 2008, at 09:02, javo wrote:
>
> > > > public function executeUpdate($request)

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: sf 1.1 : where has passed sfResponse parameter holder ?

2008-09-09 Thread Kris Wallsmith

If you want to store a variable to the request scope in sf1.1, use the  
request attribute holder:

sfContext::getInstance()->getRequest()->setAttribute('foo', 'bar');

Is that what you're asking?

Kris

On Sep 9, 2008, at 8:27 AM, Nicolas CHARLOT <[EMAIL PROTECTED]> wrote:

>
> Le 9 sept. 08 à 16:48, CaffeineInc a écrit :
>
>> it does support parameterHolder.. but the way you access it is
>> different as context is now a singleton.
>>
>> sfContext::getInstance->getRequest()->getParameterHolder();
>>
>> will work the same way.
>> or $this->getRequest()->getParamterHolder() from your action.
>
> in sf 1.0, isicsBreadcrumbs was using response parameter in order to
> store the breadcrumbs with action cache.
> Since sfRequest parameter holder isn't stored with action, this
> solution will not work (we've already tested it).
>
> But i'm still looking for a way... We've to run into Dustin answer
> (writing his own view class or?).
>
> --
> Nicolas CHARLOT
> http://www.isics.fr
>
>
>
>
> >

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: How to troubleshoot eclipse

2008-09-09 Thread Ant Cunningham

Steve Daniels wrote:
 > 2008/9/9 Sumedh <[EMAIL PROTECTED]>:

 > I love it! Once you've got the php plugin installed (through Aptana's
 > own interface) and the svn plugins it's brilliant IMHO.
 >

I feel the same about my Eclipse setup:

PDT
Subclipse
Mylyn
JSEclipse
SQLExplorer
RDT (YAML editor mainly)
FlexBuilder (dabbling :-))

-- 
Ant Cunningham
Graphic Designer | Web Developer
Vector Based Design
[EMAIL PROTECTED]

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Which IDE do you use?

2008-09-09 Thread Ant Cunningham

On my Mac i use Eclipse+PDT for complex projects and Textmate/E/Kate 
(under their respective OSes) for lighter projects.

I tried Symfoclipse for awhile but the only thing I was really using was 
the YAML editor. After a while it got annoyting to have to navigate 
through the file tree to the proper level directory to execute a task. I 
preger my completely open External Tool definition... it symply points 
to ${project_loc}/symfony and takes a single ${string_prompt} 
argument... letting me free form all the commands. much easier, just 
hotkey, type, and hit enter :-)

E is decent - its not quite as good as Textmate, but it does support all 
the same bundles so thats a big plus. Kate is lacking, but has the 
advantage of being completely open so you can remedy that assuming you 
have the skills and free time - I unfortunately, do not.

Sumedh wrote:
-- 
Ant Cunningham
Graphic Designer | Web Developer
Vector Based Design
[EMAIL PROTECTED]> I don't think we have a feature of poll here...?
> 
> Thought would help to know what are people generally using for symfony
> projects...
> 
> I am using Eclipse PDT so far...but it's crashing every hour since
> yesterday...so don't know what to do... :(
> > 


-- 
Ant Cunningham
Graphic Designer | Web Developer
Vector Based Design
[EMAIL PROTECTED]

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] [Announcement]: Givvy.com goes live.

2008-09-09 Thread James

Hello Everyone.

For the past 9 months my business partners and I have been working on  
a Giving Management System built on top of Symfony 1.0

Please check it out. It is aimed at the american charitable giving  
market and we hope that we will be able to take it global as well.

http://www.givvy.com/

We are also launching GivvyBase a free database of user driven charity  
information.  The data's pretty thin right now, but with your help we  
hope to grow it.  In the future we hope to add functionality like APIs  
so you can do mashups with the data like Google and flickr do with  
their APIs

http://base.givvy.com/

Thanks,
James

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Which IDE do you use?

2008-09-09 Thread Bernhard Schussek

Eclipse PDT

I really like the powerful code completion and the easy possibiltiy to
jump to the declaration of any code you use by pressing a single key.
Very helpful for debugging.

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Introducing sfExceptionFormatsPlugin

2008-09-09 Thread Kris Wallsmith

I've just released a new plugin called sfExceptionFormatsPlugin,  
available on symfony-projects.org. This plugin extends the request  
formats feature added in symfony 1.1 to include the error 500 and  
exception pages. With this plugin installed, any uncaught exceptions  
thrown will render as the appropriate content type, per the  
sfWebRequest format option.

http://www.symfony-project.org/plugins/sfExceptionFormatsPlugin/1_0_0?tab=plugin_readme

Kris


--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] new plugin: sfDB4toPropelPlugin

2008-09-09 Thread Loïc Vernet
Hi symfonians !

Just a little mail to announce the release of a new sf1.1 plugin: 
sfDB4toPropelPlugin

DB4toPropelPlugin is a plugin that adds to symfony a new task  
propel:db4-to-propel 
that allows you to convert a DB4 schema (a DBDesigner 4 schema) into a valid 
propel schema.yml file.

More informations:
  http://www.symfony-project.org/plugins/sfDB4toPropelPlugin

Tutorial:
  
http://www.strangebuzz.com/index.php/2008/09/09/36-new-symfony-11-plugin-tutorial-sfdb4topropelplugin

See you. COil



  
--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re : [symfony-users] Re: Which IDE do you use?

2008-09-09 Thread Loïc Vernet
Does someone use nano to edit his php files ?  :)



- Message d'origine 
De : Eno <[EMAIL PROTECTED]>
À : "symfony-users@googlegroups.com" 
Envoyé le : Mardi, 9 Septembre 2008, 15h31mn 34s
Objet : [symfony-users] Re: Which IDE do you use?


On Mon, 8 Sep 2008, Sumedh wrote:

> Thought would help to know what are people generally using for symfony
> projects...
> 
> I am using Eclipse PDT so far...but it's crashing every hour since
> yesterday...so don't know what to do... :(

I dont like IDEs - I use vim for everything.





  
--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: sf 1.1 : where has passed sfResponse parameter holder ?

2008-09-09 Thread Nicolas CHARLOT

Le 9 sept. 08 à 16:48, CaffeineInc a écrit :

> it does support parameterHolder.. but the way you access it is
> different as context is now a singleton.
>
> sfContext::getInstance->getRequest()->getParameterHolder();
>
> will work the same way.
> or $this->getRequest()->getParamterHolder() from your action.

in sf 1.0, isicsBreadcrumbs was using response parameter in order to  
store the breadcrumbs with action cache.
Since sfRequest parameter holder isn't stored with action, this  
solution will not work (we've already tested it).

But i'm still looking for a way... We've to run into Dustin answer  
(writing his own view class or?).

--
Nicolas CHARLOT
http://www.isics.fr




--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Which IDE do you use?

2008-09-09 Thread Serkan Koyuncu

@sumedh:

Last month I had similar problem on my EclipsePDT (SuSE 11).
I suggest you to remove all projects from eclipse and delete all
.cache
.settings
.project
file & folders from each projects' root folder.
Now you can create new projects.

I hope it helps.

By the way, I use VI and EclipsePDT on Linux, DW and EclipsePDT on Windows.

Regards
Serkan Koyuncu



2008/9/9 Eno <[EMAIL PROTECTED]>:
>
> On Tue, 9 Sep 2008, Jacob Coby wrote:
>
>> There is a textmate clone for Windows called E.  http://www.e-texteditor.com/
>>
>> I don't know how good E is compared to TextMate, but TM is a great
>> editor.  I just wish it had Vim bindings :)
>
> We had a co-worker using E for awhile - he switched to vim eventually...
>
>
>
> >
>

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Which IDE do you use?

2008-09-09 Thread Nicolas CHARLOT

Le 9 sept. 08 à 08:13, Sumedh a écrit :

> I don't think we have a feature of poll here...?
>
> Thought would help to know what are people generally using for symfony
> projects...
>
> I am using Eclipse PDT so far...but it's crashing every hour since
> yesterday...so don't know what to do... :(


I'm using TM and PDT too and I can't choose one of them :
- PDT is very powerfull and give us a lot of usefull plugins (SVN,  
Azzurry Clay, Aptana, etc.)
- TM is very faster and powerfull too but the completion isn't working  
as well as PDT since is just based on words...
   PHP Bundle seems to provide a good PHP completion but it's today  
not able to find out the current file (even I defined the  
PHP_INCLUDE_PATH)... SVN bundle package generates often errors (So,  
i'm using svn command line or PDT).

--
Nicolas CHARLOT
http://www.isics.fr




--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: sf 1.1 : where has passed sfResponse parameter holder ?

2008-09-09 Thread CaffeineInc

it does support parameterHolder.. but the way you access it is
different as context is now a singleton.

sfContext::getInstance->getRequest()->getParameterHolder();

will work the same way.
or $this->getRequest()->getParamterHolder() from your action.


On Aug 19, 6:58 pm, Nicolas CHARLOT <[EMAIL PROTECTED]> wrote:
> Hi,
>
> In Sf 1.0, I used to store an objects as a sfResponse params in order  
> to retrieve it even action was cached.
> For instance isicsBreadcrumbsPlugin was adding a "isicsBreadcrumbs"  
> param to sfResponse.
>
> In Sf 1.1, sfReponse doesn't supports a parameter holder anymore...
>
> How to replace it ?
>
> Thanks.
> --
> Nicolas CHARLOThttp://www.isics.fr
--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Debugging site on the prod server

2008-09-09 Thread Dmitry Nesteruk
apache log and symfony log

it is enough

2008/9/9 jukea <[EMAIL PROTECTED]>

>
> A bad thing indeed, but...
>
> In a perfect world, you would test on the development server, and
> deploy on the prod server when your code is bug free. However, for
> various reasons (ie: error while manually syncing the prod tables with
> dev) , you sometimes have a working site on dev and a blank page , or
> internal server error on prod, which is really a hassle, because
> you're out in the wild without your debug toolbar...
>
> So my question is : what do you usually check / do when prod is
> broken ?
>
> for example :
>
> - Without display_errors=1 (I think that's the case on most prod
> servers) a bad DB connection causes a fatal error, hence a blank page,
> so that's one of the things I'd check first.
> - Enable symfony logs, and check them
> - Some people upload the dev controller to have more info, ( and yes,
> they usually repent after telling me so ..! )
>
> jukea
> >
>

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Debugging site on the prod server

2008-09-09 Thread jukea

A bad thing indeed, but...

In a perfect world, you would test on the development server, and
deploy on the prod server when your code is bug free. However, for
various reasons (ie: error while manually syncing the prod tables with
dev) , you sometimes have a working site on dev and a blank page , or
internal server error on prod, which is really a hassle, because
you're out in the wild without your debug toolbar...

So my question is : what do you usually check / do when prod is
broken ?

for example :

- Without display_errors=1 (I think that's the case on most prod
servers) a bad DB connection causes a fatal error, hence a blank page,
so that's one of the things I'd check first.
- Enable symfony logs, and check them
- Some people upload the dev controller to have more info, ( and yes,
they usually repent after telling me so ..! )

jukea
--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Which IDE do you use?

2008-09-09 Thread Eno

On Tue, 9 Sep 2008, Jacob Coby wrote:

> There is a textmate clone for Windows called E.  http://www.e-texteditor.com/
> 
> I don't know how good E is compared to TextMate, but TM is a great  
> editor.  I just wish it had Vim bindings :)

We had a co-worker using E for awhile - he switched to vim eventually...



--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: How to troubleshoot eclipse

2008-09-09 Thread Steve Daniels

2008/9/9 Sumedh <[EMAIL PROTECTED]>:
>
> No...didn't know this one...is it good?
>

I love it! Once you've got the php plugin installed (through Aptana's
own interface) and the svn plugins it's brilliant IMHO.

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Which IDE do you use?

2008-09-09 Thread Eno

On Tue, 9 Sep 2008, Sumedh wrote:

> I am not very geeky so won't be using Vim... :) ...

A text editor is geeky?

vim has the advantage of being available for almost every platform and is 
usually available on every Linux server Ive ever used...


-- 



--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Which IDE do you use?

2008-09-09 Thread Julien

on a MAC, I use :

Coda + Versions (for svn, versionapp.com) + Changes for diffs


On Sep 9, 2:13 am, Sumedh <[EMAIL PROTECTED]> wrote:
> I don't think we have a feature of poll here...?
>
> Thought would help to know what are people generally using for symfony
> projects...
>
> I am using Eclipse PDT so far...but it's crashing every hour since
> yesterday...so don't know what to do... :(
--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Which IDE do you use?

2008-09-09 Thread Jacob Coby

There is a textmate clone for Windows called E.  http://www.e-texteditor.com/

I don't know how good E is compared to TextMate, but TM is a great  
editor.  I just wish it had Vim bindings :)

On Sep 9, 2008, at 9:57 AM, Tom Haskins-Vaughan wrote:

>
> That's exactly what I thought! I wanted to use TextMate because I'd
> heard amazing things about it. But obviously in order to use TextMate
> you need a Mac. I wasn't going to shell out all that money just so  
> that
> I could use one app.
>
> So I gave Vim a go. And with a few plugins, it's perfect for symfony.
> Easy to use, and very powerful.
>
> Anyway, just my tuppence worth :D
>
> Sumedh wrote:
>> Thanks guys...
>>
>> I am not very geeky so won't be using Vim... :) ...
>>
>> Guys who use Eclipse PDT, could you please help me troubleshoot the
>> issue? there is no log file generated...how can I find out problem
>> point?
>>
>> I've now downloaded and configured NetBeans...
>>
>> On Sep 9, 6:31 pm, Eno <[EMAIL PROTECTED]> wrote:
>>> On Mon, 8 Sep 2008, Sumedh wrote:
 Thought would help to know what are people generally using for  
 symfony
 projects...
 I am using Eclipse PDT so far...but it's crashing every hour since
 yesterday...so don't know what to do... :(
>>> I dont like IDEs - I use vim for everything.
>>>
>>
>
> -- 
> Tom Haskins-Vaughan
> Temple Street Media: Design and Development for the Web
> [EMAIL PROTECTED] | www.templestreetmedia.com
>
> >

--
Jacob Coby
[EMAIL PROTECTED]




--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Which IDE do you use?

2008-09-09 Thread Cindy Cullen

I like Coda - let's me edit, ssh, and sftp all in one.  It even has  
reference materials built-in.


On Sep 9, 2008, at 1:49 AM, Jonathan H. Wage wrote:

>
> Textmate and vi for everything.
>
> On Sep 9, 2008, at 1:13 AM, Sumedh <[EMAIL PROTECTED]> wrote:
>
>>
>> I don't think we have a feature of poll here...?
>>
>> Thought would help to know what are people generally using for  
>> symfony
>> projects...
>>
>> I am using Eclipse PDT so far...but it's crashing every hour since
>> yesterday...so don't know what to do... :(
>>>
>
> >


--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: sfGuard - how to implement registration

2008-09-09 Thread Sifix

Hello,
Whtat I have understand is
if instead of $sf_guard_user_profile = $this->form->save();
you use $sf_guard_user_profile = $this->form->getObject->save();

then you will be able to save the id you set above..

Please also take not the following post on my thread
http://www.symfony-project.org/forum/index.php/m/60467/#msg_60467

it uses the same method with yours but with the exception for a
strange reason in the
setPassword method works fine and not in the setEmail.


On Aug 27, 6:15 pm, javo <[EMAIL PROTECTED]> wrote:
> So,
>
> I separated my functions (register and update),
> first I'll make my register function, I've tried to rewrite it all
> I want to create user ONLY (temporarily) in sf_guard_user_profile
> ( ALWAYS with user_id = 1(I'm trying to understand symfony system)) ,
> so I did something like this
>
>   public function executeRegister($request){
>
>        $this->forward404Unless($request->isMethod('post'));
>
>     $this->form = new SfGuardUserProfileForm();
>
>     $this->form->bind($request->getParameter('sf_guard_user_profile'));
>
> $this->form->getObject()->setUserId(1);   // line 71
>     if ($this->form->isValid())
>     {
>       $sf_guard_user_profile = $this->form->save();
>       $this->redirect('user/edit?id='.$sf_guard_user_profile->getId());
>
>     }
>
>     $this->setTemplate('edit');
>   }
>
> althought if I echo $this->form->getObject()->getUserId() the result
> is 1 (instead of 3 from $_POST), result in the database is default (3)
> instead of 1, I'm really confused
> can somebody help me?
>
> On Aug 26, 9:20 pm, Lee Bolding <[EMAIL PROTECTED]> wrote:> You're using a 
> function named update to create new users???
>
> > Try using separate functions for creating and updating users, it will  
> > make your life a LOT easier.
>
> > The update function doesn't need to create any new objects, and in the  
> > registration function, you can use the shortcut $profile = $user-
> >  >getsfGuardProfile() to get a users profile OR create a new one if  
> > one doesn't exist for that user. You don't need to create a new  
> > sfGuardUserProfile object.
>
> > HTH
>
> > On 26 Aug 2008, at 13:20, javo wrote:
>
> > > thx but setNew(FALSE) won't solve my problem, because I want to create
> > > new users, not just update them
>
> > > On Aug 26, 12:06 am, "Jim Barcelona" <[EMAIL PROTECTED]> wrote:
> > >> You can try something like this:
> > >> $sfGuardUser->setNew(FALSE);
>
> > >>> On Aug 25, 10:49 am, Lee Bolding <[EMAIL PROTECTED]> wrote:
> >  On 25 Aug 2008, at 09:02, javo wrote:
>
> > > public function executeUpdate($request)

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Which IDE do you use?

2008-09-09 Thread Hasse R. Hansen

Im using Eclipse PDT with the symfoclipse plugin, and on smaller
private projects, just the Vim editor, with some symfony enhancements

On Sep 9, 8:13 am, Sumedh <[EMAIL PROTECTED]> wrote:

>
> I am using Eclipse PDT so far...but it's crashing every hour since
> yesterday...so don't know what to do... :(

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Symfony Propel with addAsColumn

2008-09-09 Thread karol

anyone?

On 7 Wrz, 19:24, karol <[EMAIL PROTECTED]> wrote:
> Hi,
> I've a problem with this working out:
>
> $c->addAsColumn('tagg', '(SELECT COUNT(*) FROM wzory_tagi, tagi WHERE
> wzory_tagi.WZOR_ID=wzory.ID AND wzory_tagi.TAG_ID=tagi.ID AND tagi.tag
> LIKE "")');
>
> $c->add($c->getColumnForAs('tagg'), 0, Criteria::ALT_NOT_EQUAL);
> $c->addDescendingOrderByColumn($c->getColumnForAs('tagg'));
>
> the thing is that without add criteria it's working fine but i want to
> add criteria when column tagg is 0 then don't display this record i
> get this error:
>
> [PropelException]
> [wrapped: Cannot fetch TableMap for undefined table: (SELECT COUNT(*)
> FROM wzory_tagi, tagi WHERE wzory_tagi]
>
> Thanks for any help, Karol.

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Which IDE do you use?

2008-09-09 Thread Tom Haskins-Vaughan

That's exactly what I thought! I wanted to use TextMate because I'd 
heard amazing things about it. But obviously in order to use TextMate 
you need a Mac. I wasn't going to shell out all that money just so that 
I could use one app.

So I gave Vim a go. And with a few plugins, it's perfect for symfony. 
Easy to use, and very powerful.

Anyway, just my tuppence worth :D

Sumedh wrote:
> Thanks guys...
> 
> I am not very geeky so won't be using Vim... :) ...
> 
> Guys who use Eclipse PDT, could you please help me troubleshoot the
> issue? there is no log file generated...how can I find out problem
> point?
> 
> I've now downloaded and configured NetBeans...
> 
> On Sep 9, 6:31 pm, Eno <[EMAIL PROTECTED]> wrote:
>> On Mon, 8 Sep 2008, Sumedh wrote:
>>> Thought would help to know what are people generally using for symfony
>>> projects...
>>> I am using Eclipse PDT so far...but it's crashing every hour since
>>> yesterday...so don't know what to do... :(
>> I dont like IDEs - I use vim for everything.
> > 
> 

-- 
Tom Haskins-Vaughan
Temple Street Media: Design and Development for the Web
[EMAIL PROTECTED] | www.templestreetmedia.com

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Which IDE do you use?

2008-09-09 Thread Sumedh

Thanks guys...

I am not very geeky so won't be using Vim... :) ...

Guys who use Eclipse PDT, could you please help me troubleshoot the
issue? there is no log file generated...how can I find out problem
point?

I've now downloaded and configured NetBeans...

On Sep 9, 6:31 pm, Eno <[EMAIL PROTECTED]> wrote:
> On Mon, 8 Sep 2008, Sumedh wrote:
> > Thought would help to know what are people generally using for symfony
> > projects...
>
> > I am using Eclipse PDT so far...but it's crashing every hour since
> > yesterday...so don't know what to do... :(
>
> I dont like IDEs - I use vim for everything.
--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Extending sfGuardPlugin: problem with __toString()

2008-09-09 Thread Tom Haskins-Vaughan

I have a feeling that it has something to do with the fact that my 
tsmArticle.author_id field links to sf_guard_user. But surely, when I 
use a propel select widget and specify which class to use, it should 
override that?

Tom Haskins-Vaughan wrote:
> [Using symfony 1.1]
> 
> I am writing 2 simple plugins:
> 
>   * tsmArticlePlugin
>   * tsmGuardPlugin
> 
> The first one has a simple article table which includes an author_id. 
> The second one just extends sfGuardPlugin model by adding some extra 
> fields, such as firstname and lastname.
> 
> This is the custom schema file for tsmGuardPlugin:
> 
> propel:
>_attributes:  { package: plugins.sfGuardPlugin.lib.model }
> 
>sf_guard_user:
>  _attributes:{ phpName: sfGuardUser }
>  firstname:  { type: varchar, size: 128 } 
> 
>  lastname:   { type: varchar, size: 128 }
>  email:  { type: varchar, size: 128 }
> 
> This works fine. I get a mergerd table in the database.
> 
> This is part of my article schema:
> 
> propel:
>_attributes:  { package: plugins.tsmArticlePlugin.lib.model }
> 
>tsm_article:
>  _attributes:{ phpName: tsmArticle }
>  id:
>  title:  { type: varchar, size: 255, required: true }
>  stripped_title: { type: varchar, size: 255, index: unique }
>  author_id:  { type: integer, foreignTable: sf_guard_user, 
> foreignReference: id }
> 
> 
> **The problem I am having is getting a sfWidgetFormPropelSelect to 
> display the fullname instead of the username.**
> 
> I have change the model attributre in the select widget to "tsmGuardUser".
> 
> 
> In the tsmGuardPlugin I have the following inheritance:
> 
> tsmGuard extends PlugintsmGuard, which extends PluginsfGuard
> 
> And in PlugintsmGuard i have defined a __toString() method to return the 
> fullname. But when I view the form, it is displaying the username - the 
> default for sfGuard.
> 
> Any help much appreciated.
> 
> TIA
> 
> Tom

-- 
Tom Haskins-Vaughan
Temple Street Media: Design and Development for the Web
[EMAIL PROTECTED] | www.templestreetmedia.com

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Which IDE do you use?

2008-09-09 Thread Eno

On Mon, 8 Sep 2008, Sumedh wrote:

> Thought would help to know what are people generally using for symfony
> projects...
> 
> I am using Eclipse PDT so far...but it's crashing every hour since
> yesterday...so don't know what to do... :(

I dont like IDEs - I use vim for everything.



--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: sf 1.1 : where has passed sfResponse parameter holder ?

2008-09-09 Thread Florian


Hello,

Have you found a way to make this work ?

I maybe have a solution :

replace with getRequest()->getParameterHolder()-
>has('isicsBreadcrumbs'))

On 20 août, 01:35, Dustin Whittle <[EMAIL PROTECTED]>
wrote:
> Nicolas,
>
> I have run into the same issue and my solution was to extend the view class
> and add the data as part of the response content. Also, you can define a
> contextual slot (with a cache_key tied to the uri. (which will get cached).
> Otherwise, you might be able to store as a user attribute.
>
> - Dustin
>
> On 8/19/08 9:58 AM, "Nicolas CHARLOT" <[EMAIL PROTECTED]> wrote:
>
>
>
> > Hi,
>
> > In Sf 1.0, I used to store an objects as a sfResponse params in order
> > to retrieve it even action was cached.
> > For instance isicsBreadcrumbsPlugin was adding a "isicsBreadcrumbs"
> > param to sfResponse.
>
> > In Sf 1.1, sfReponse doesn't supports a parameter holder anymore...
>
> > How to replace it ?
>
> > Thanks.
> > --
> > Nicolas CHARLOT
> >http://www.isics.fr
--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Which IDE do you use?

2008-09-09 Thread Tom Haskins-Vaughan

Vim

Kris Wallsmith wrote:
> Textmate and vi. I'm also going to check out the latest version of Coda.
> 
> Kris
> 
> On Sep 9, 2008, at 3:48 AM, "markus.staab" <[EMAIL PROTECTED]>  
> wrote:
> 
>> Eclipse PDT
>>
>> On 9 Sep., 12:35, "Dmitry Nesteruk" <[EMAIL PROTECTED]> wrote:
>>> Eclipse
>>>
>>> 2008/9/9 danielwinter <[EMAIL PROTECTED]>
>>>
>>>
>>>
>>>
>>>
 I love my PhpEd - SFTP sync, SSH terminals, code folding, (symfony)
 code insight, code templates (with hot-keys), debugging, profiling,
 code navigation and completion (even for HTML tags), integrated  
 custom
 CHM help files
 Not the cheapest but IMHO the best.
 On Sep 9, 4:13 pm, Sumedh <[EMAIL PROTECTED]> wrote:
> I don't think we have a feature of poll here...?
> Thought would help to know what are people generally using for  
> symfony
> projects...
> I am using Eclipse PDT so far...but it's crashing every hour since
> yesterday...so don't know what to do... :(- Zitierten Text  
> ausblenden -
>>> - Zitierten Text anzeigen -
>>>
> 
> > 
> 

-- 
Tom Haskins-Vaughan
Temple Street Media: Design and Development for the Web
[EMAIL PROTECTED] | www.templestreetmedia.com

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Which IDE do you use?

2008-09-09 Thread g0d br
Eclipse PDT


On Tue, Sep 9, 2008 at 9:36 AM, Kris Wallsmith <[EMAIL PROTECTED]>wrote:

>
> Textmate and vi. I'm also going to check out the latest version of Coda.
>
> Kris
>
> On Sep 9, 2008, at 3:48 AM, "markus.staab" <[EMAIL PROTECTED]>
> wrote:
>
> >
> > Eclipse PDT
> >
> > On 9 Sep., 12:35, "Dmitry Nesteruk" <[EMAIL PROTECTED]> wrote:
> >> Eclipse
> >>
> >> 2008/9/9 danielwinter <[EMAIL PROTECTED]>
> >>
> >>
> >>
> >>
> >>
> >>> I love my PhpEd - SFTP sync, SSH terminals, code folding, (symfony)
> >>> code insight, code templates (with hot-keys), debugging, profiling,
> >>> code navigation and completion (even for HTML tags), integrated
> >>> custom
> >>> CHM help files
> >>
> >>> Not the cheapest but IMHO the best.
> >>
> >>> On Sep 9, 4:13 pm, Sumedh <[EMAIL PROTECTED]> wrote:
>  I don't think we have a feature of poll here...?
> >>
>  Thought would help to know what are people generally using for
>  symfony
>  projects...
> >>
>  I am using Eclipse PDT so far...but it's crashing every hour since
>  yesterday...so don't know what to do... :(- Zitierten Text
>  ausblenden -
> >>
> >> - Zitierten Text anzeigen -
> > >
>
> >
>

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Which IDE do you use?

2008-09-09 Thread Kris Wallsmith

Textmate and vi. I'm also going to check out the latest version of Coda.

Kris

On Sep 9, 2008, at 3:48 AM, "markus.staab" <[EMAIL PROTECTED]>  
wrote:

>
> Eclipse PDT
>
> On 9 Sep., 12:35, "Dmitry Nesteruk" <[EMAIL PROTECTED]> wrote:
>> Eclipse
>>
>> 2008/9/9 danielwinter <[EMAIL PROTECTED]>
>>
>>
>>
>>
>>
>>> I love my PhpEd - SFTP sync, SSH terminals, code folding, (symfony)
>>> code insight, code templates (with hot-keys), debugging, profiling,
>>> code navigation and completion (even for HTML tags), integrated  
>>> custom
>>> CHM help files
>>
>>> Not the cheapest but IMHO the best.
>>
>>> On Sep 9, 4:13 pm, Sumedh <[EMAIL PROTECTED]> wrote:
 I don't think we have a feature of poll here...?
>>
 Thought would help to know what are people generally using for  
 symfony
 projects...
>>
 I am using Eclipse PDT so far...but it's crashing every hour since
 yesterday...so don't know what to do... :(- Zitierten Text  
 ausblenden -
>>
>> - Zitierten Text anzeigen -
> >

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Autoloading problem with Propel 1.3

2008-09-09 Thread Eric Fredj
Hi,

It seems it should work fine because in SfNestedSetBuilder and 
SfNestedSetPeerBuilder classes, the call to addIncludes() method depends 
on the addInclude properties so the require() line should not be generated.

http://trac.symfony-project.org/ticket/3716

Can you check your propel.ini use the right builder ?

ErIC

[EMAIL PROTECTED] a écrit :
> W odpowiedzi na e-mail od: ruFog otrzymany dnia 2008-09-06 01:07 :
>   
>> It`s simple to comment require line in Your Base*NestedSet*.php
>> files ;)
>>
>>   
>> 
> hmm but you must do it every model rebuild
> really annoying

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: One click installer for symfony

2008-09-09 Thread Ant Cunningham

alexander lind wrote:
> I use DarwinPorts - http://darwinports.com  It makes installation of  
> things like php, apache etc a little more bearable.
> 
> You still compile things yourself with ports, but you can edit the  
> config file if you want to change something.
> 
> Its not apt-get, but its better than doing it manually :p
> 
> Alec

Yeah i actually used Macports to install the jpg and png libs to meet 
the GD dependencies... but i did compile MAports from sorce too - IT 
seemed to be the only way to control the install dir 
(/usr/local/macports for me) :-).

And youre right.. its definitely no apt-get - unfortunately. haha.
-- 
Ant Cunningham
Graphic Designer | Web Developer
Vector Based Design
[EMAIL PROTECTED]

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Which IDE do you use?

2008-09-09 Thread markus.staab

Eclipse PDT

On 9 Sep., 12:35, "Dmitry Nesteruk" <[EMAIL PROTECTED]> wrote:
> Eclipse
>
> 2008/9/9 danielwinter <[EMAIL PROTECTED]>
>
>
>
>
>
> > I love my PhpEd - SFTP sync, SSH terminals, code folding, (symfony)
> > code insight, code templates (with hot-keys), debugging, profiling,
> > code navigation and completion (even for HTML tags), integrated custom
> > CHM help files
>
> > Not the cheapest but IMHO the best.
>
> > On Sep 9, 4:13 pm, Sumedh <[EMAIL PROTECTED]> wrote:
> > > I don't think we have a feature of poll here...?
>
> > > Thought would help to know what are people generally using for symfony
> > > projects...
>
> > > I am using Eclipse PDT so far...but it's crashing every hour since
> > > yesterday...so don't know what to do... :(- Zitierten Text ausblenden -
>
> - Zitierten Text anzeigen -
--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Which IDE do you use?

2008-09-09 Thread Dmitry Nesteruk
Eclipse

2008/9/9 danielwinter <[EMAIL PROTECTED]>

>
> I love my PhpEd - SFTP sync, SSH terminals, code folding, (symfony)
> code insight, code templates (with hot-keys), debugging, profiling,
> code navigation and completion (even for HTML tags), integrated custom
> CHM help files
>
> Not the cheapest but IMHO the best.
>
> On Sep 9, 4:13 pm, Sumedh <[EMAIL PROTECTED]> wrote:
> > I don't think we have a feature of poll here...?
> >
> > Thought would help to know what are people generally using for symfony
> > projects...
> >
> > I am using Eclipse PDT so far...but it's crashing every hour since
> > yesterday...so don't know what to do... :(
> >
>

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Which IDE do you use?

2008-09-09 Thread danielwinter

I love my PhpEd - SFTP sync, SSH terminals, code folding, (symfony)
code insight, code templates (with hot-keys), debugging, profiling,
code navigation and completion (even for HTML tags), integrated custom
CHM help files

Not the cheapest but IMHO the best.

On Sep 9, 4:13 pm, Sumedh <[EMAIL PROTECTED]> wrote:
> I don't think we have a feature of poll here...?
>
> Thought would help to know what are people generally using for symfony
> projects...
>
> I am using Eclipse PDT so far...but it's crashing every hour since
> yesterday...so don't know what to do... :(
--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Unit Testing Class autoload for 1.1

2008-09-09 Thread Gareth McCumskey
Hi all,

I have had a few problems in the past trying to implement as test-driven
approach with symfony due to the class loading in a unit test. I found a
site that offers a great way to make sure all classes are included but it
seems to be for symfony 1.0:

**

I was wondering if someone could help me out by detailing how that would be
altered for symfony 1.1 with its new class based config structure...

Thanks in advance

Gareth McCumskey

--~--~-~--~~~---~--~~
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.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---