Re: [symfony-users] Major deploment issue!

2009-11-24 Thread Gareth McCumskey
So go ahead and try using WinSCP then to manually upload the files needed. Technically the deploy commands are just there for convenience so if they don't work do it yourself rather. On Mon, Nov 23, 2009 at 10:51 PM, Parijat Kalia kaliapari...@gmail.comwrote: using cygwin for my

Re: [symfony-users] Re: Avoid losing the changes each time a module is regenerated

2009-11-24 Thread Gareth McCumskey
So go ahead and regenrate the module as a different name, find the fields in the newly generated one and copy/paste them over to your existing module's templates, then delete the one you copied from. Or just add the forms yourself into your existing modules templates. The symfony commands allow

Re: [symfony-users] !.3 and 1.4 .. the difference?

2009-11-24 Thread Gareth McCumskey
Thanks for the info guys and after going through the documentation on what is going to be deprecated I had another question. I see that the ajax helpers (remote_function(), link_to_remote(), etc) are deprecated in 1.3. My question is what is replacing this as we use those helpers quite

[symfony-users] Re: sfDoctrineGuardPlugin errors with 1.3/1.4

2009-11-24 Thread ken
you might want to check this ticket http://www.doctrine-project.org/jira/browse/DC-271 On Nov 24, 2:20 pm, Alexandre SALOME alexandre.sal...@gmail.com wrote: I use it with the 1.3 symfony. I only get errors in the backend (user edit form). Don't hesistate to create ticket/purpose patches.

[symfony-users] Re: Need advise regarding a Doctrine_Template that all CMS entities will actAs

2009-11-24 Thread john
I'd recommend, you take a look at http://www.sympalphp.org where a similar approach is being made. Best regards, Johannes On 23 Nov., 22:59, Jonathan Dart jonathand...@gmail.com wrote: Hi Users, I'm planning on using Symfony to make a CMS and I'm making some decisions at the moment that I

[symfony-users] Re: !.3 and 1.4 .. the difference?

2009-11-24 Thread Massimiliano Arione
On 24 Nov, 10:56, Gareth McCumskey gmccums...@gmail.com wrote: Thanks for the info guys and after going through the documentation on what is going to be deprecated I had another question. I see that the ajax helpers (remote_function(), link_to_remote(), etc) are deprecated in 1.3. My question

[symfony-users] Re: Major deploment issue!

2009-11-24 Thread ken
Make sure that the target directory is writable by you. I also have the same development environment, cygwin + rsync. This is the command im using. ./symfony project:deploy production --go --rsync-options=-rltzC -- force --delete --chmod=og=rx On Nov 24, 4:53 pm, Gareth McCumskey

[symfony-users] Re: !.3 and 1.4 .. the difference?

2009-11-24 Thread Tom Boutell
Check out sfJqueryReloadedPlugin. It contains jQuery versions of the classic Symfony JavaScript helpers. If some of the helpers that have been removed in Symfony 1.3 are not reimplemented in sfJqueryReloadedPlugin, feel free to copy or reimplement them there (with a jq_ prefix) and/or bring it up

[symfony-users] sfGuardUser: Unknown method sfGuardUser::getProfile

2009-11-24 Thread axel at
Hello, I try to customize the sfGuardUser model, therefore I added sfGuardUserProfile to my schema.yml and built/executed model and sql for it. here's the problem: $this-getUser()-getProfile()-getFirstName(); throws the following error: Unknown method sfGuardUser::getProfile my configuration:

[symfony-users] Multiple Doctrine Databases / Sf1.4 Issues

2009-11-24 Thread PhiKapJames
Found an issue with using multiple databases. I'm using the lastest 1.4 tag updated up to 20 minutes ago. To test the issue, I created a test project and documented the steps I used to have the issue. The issue seems to be that no matter what connection is specified, once the model is used, it

[symfony-users] Re: Multiple Doctrine Databases / Sf1.4 Issues

2009-11-24 Thread PhiKapJames
I created a ticket, but appears that one was already created 2 days ago. On Nov 24, 11:06 am, PhiKapJames phikapja...@gmail.com wrote: Found an issue with using multiple databases.  I'm using the lastest 1.4 tag updated up to 20 minutes ago.  To test the issue, I created a test project and

[symfony-users] deployment question

2009-11-24 Thread Parijat Kalia
Hey guys, on the jobeet deployment page, here is a statement I read (Before running the project:deploy task for the first time, you need to connect to the server manually to add the key in the known hosts file.): *Before running the project:deploy task for the first time, you need to connect to

Re: [symfony-users] deployment question

2009-11-24 Thread Gábor Fási
I guess it's referring to ssh public key authentication. See http://sial.org/howto/openssh/publickey-auth/ On Tue, Nov 24, 2009 at 18:21, Parijat Kalia kaliapari...@gmail.com wrote: Hey guys, on the jobeet deployment page, here is a statement I read (Before running the project:deploy task for

[symfony-users] Re: Need advise regarding a Doctrine_Template that all CMS entities will actAs

2009-11-24 Thread jean-phi
Hi, I'm currently working on a Doctrine based cms. You'll find a demo over there : http://sfcmssolution.fri-dev.com/backend.php/ guest / guest Every content class act as a content node. cf : http://sfcmssolution.fri-dev.com/cms/en/code-sample I'll release it in few days under creative

[symfony-users] Re: Multiple Doctrine Databases / Sf1.4 Issues

2009-11-24 Thread Thomas Parisot // Oncle Tom
Isn't it similar to this? http://trac.symfony-project.org/ticket/7659 On 24 nov, 17:48, PhiKapJames phikapja...@gmail.com wrote: I created a ticket, but appears that one was already created 2 days ago. On Nov 24, 11:06 am, PhiKapJames phikapja...@gmail.com wrote: Found an issue with using

Re: [symfony-users] deployment question

2009-11-24 Thread Gareth McCumskey
I guess that you use Windows? The key he is referring to is the SSH key as Gabor has so eloquently explined. You don't however have to use a key as that is just one of the many fine and damned useful authentication mechanisms available. You can use just plain-old username/password authentication

Re: [symfony-users] deployment question

2009-11-24 Thread Parijat Kalia
but that did not work eitherYes I use windows btw...Can anyone explain me the steps taken (please not the wiki by symfony) coz that hasn't worked for me. I'll be really greatfull! On Tue, Nov 24, 2009 at 12:27 PM, Gareth McCumskey gmccums...@gmail.comwrote: I guess that you use Windows?

Re: [symfony-users] deployment question

2009-11-24 Thread David Ashwood
You're getting auth errors when it's trying to create the files folders - so it's not an issue of keys. As you're coming from a windows machine - you're likely to have an issue when it's trying to set the right perms on the top level folders (-a flag attempts to match the perms from the source

[symfony-users] Re: Need advise regarding a Doctrine_Template that all CMS entities will actAs

2009-11-24 Thread Jonathan Dart
I'd be interested in seeing your Noddable class. I'd be grateful if you let me know when you release the code. On Nov 24, 11:45 am, jean-phi jeanphi84...@gmail.com wrote: Hi, I'm currently working on a Doctrine based cms. You'll find a demo over there

Re: [symfony-users] deployment question

2009-11-24 Thread Eno
On Tue, 24 Nov 2009, Parijat Kalia wrote: Hey guys, on the jobeet deployment page, here is a statement I read (Before running the project:deploy task for the first time, you need to connect to the server manually to add the key in the known hosts file.): *Before running the project:deploy

[symfony-users] Re: sfGuardUser: Unknown method sfGuardUser::getProfile

2009-11-24 Thread larry
I just had a similar issue. In my case, I had copied info from the schema.yml file that comes with the sfGuardUserPlugin to the top-level config/schema.yml file in my project. That was pretty stupid on my part. When I ran propel:build-model, Symfony generated some generic model classes with names

Re: [symfony-users] Re: Trying to fetch one column

2009-11-24 Thread Gareth McCumskey
Honestly I don't know the answer as Propel 1.2 doesn't need you to limit whats returned with adding which columns you select. Anyone with Doctrine knowledge that could help the fella? On Mon, Nov 23, 2009 at 7:39 PM, tirengarfio tirengar...@gmail.com wrote: Thanks Garet, it worked! Anyway you

Re: [symfony-users] Re: Remove the layout from the signining page

2009-11-24 Thread Gareth McCumskey
That text you described is visible in the development environment and is NOT visible in the production environment. Does it matter is its there in the development environment? As long as the production one doesn't have it you shouldn't worry as your end-users wont see it. On Sun, Nov 22, 2009 at