| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 4 years, 5 months |
| seen | May 17 at 19:16 | |
| stats | profile views | 80 |
|
Apr 24 |
comment |
Multiple subdomains requesting one Symfony application. Is this going to work? Thanks for this. I'm progressing slowly with my moonlighting project involving this and its working well although I haven't done anything special with caching yet and quite likely won't need to. |
|
Apr 23 |
awarded | Popular Question |
|
Mar 8 |
comment |
How do I specify which schema to use for Doctrine 2.2 / Symfony 2.2 and PostgreSQL? I only seem to have the public schema, at least that's all I can see in pgAdmin. |
|
Mar 8 |
comment |
Doctrine 2.2 wants to recreate all my tables I ended up doing the same. It seems strange that this didn't affect the normal runtime operation. Maybe a bug or inconsistency in Doctrine or Symfony. stackoverflow.com/questions/15280032/… |
|
Mar 7 |
comment |
How do I specify which schema to use for Doctrine 2.2 / Symfony 2.2 and PostgreSQL? Thanks but that doesn't really explain why app/console doctrine:schema:update tries to do things on the user schema, rather than public and how to stop it. I've just solved my immediate problem by editing my PostgreSQL config to take $user out of the search_path as explained here forums.enterprisedb.com/posts/list/302.page but ... I think I'm missing something in the bigger picture. I'm new to PostgrSQL |
|
Mar 7 |
asked | How do I specify which schema to use for Doctrine 2.2 / Symfony 2.2 and PostgreSQL? |
|
Mar 7 |
comment |
Doctrine 2.2 wants to recreate all my tables This sounds like my problem. Where do I specify the schema? |
|
Mar 7 |
accepted | What is the @var annotation for in a Doctrine entity in Symfony? |
|
Mar 7 |
comment |
What is the @var annotation for in a Doctrine entity in Symfony? Okay ... thanks. |
|
Mar 7 |
asked | What is the @var annotation for in a Doctrine entity in Symfony? |
|
Mar 6 |
comment |
Symfony2 ParamConverter not associated with @Annotation (cache must be cleared after any file change) Thanks for that. |
|
Mar 6 |
comment |
Symfony2 ParamConverter not associated with @Annotation (cache must be cleared after any file change) It doesn't seem to be related to APC. It sounds like something to report to the Symfony project although it's kind of a hard one to define accurately. I've only used ParamConverter in a couple of places so easy to work around for now. |
|
Mar 6 |
comment |
Symfony2 ParamConverter not associated with @Annotation (cache must be cleared after any file change) I added some more to my comment since you replied. No, not using eAccelerator but I am using APC. I'll try turning that off. |
|
Mar 6 |
comment |
Symfony2 ParamConverter not associated with @Annotation (cache must be cleared after any file change) I have the same problem after upgrading a project to Symfony 2.2. It only seems to happen in the prod environment, dev is okay. It works after clearing cache until I hit another controller with a ParamConverter on any action, not necessarily the action I'm hitting. After that, no action in any controller with ParamConverter works. |
|
Feb 24 |
awarded | Self-Learner |
|
Jan 23 |
accepted | How do I use Git to manage my custom Drupal module code which I use on several sites? |
|
Jan 23 |
comment |
How do I use Git to manage my custom Drupal module code which I use on several sites? I think this is the right answer although still a little confusing for a git newbie. I was missing the fact that nested git repos work just fine. Now I have my custom modules in their own repos. Those repos are cloned inside whole Drupal sites which have their own repos at their root level. I can work on the modules in any site (although I tend to use one site for module development), commit and push just the module and pull that on any of the other sites. Then I can commit and push a whole site and that commit will include module changes. |
|
Jan 20 |
comment |
How do I save the “Many” side of a Many to One if I only have the id of the “One” side? Thanks again. Doctrine is pretty smart. |
|
Jan 20 |
comment |
How do I save the “Many” side of a Many to One if I only have the id of the “One” side? Another thought. How about the reverse? Let's say I have an instance of EntityMany. I have not accessed its getEntityOne() method so, with lazy loading, EntityOne has not been loaded. Is there any way of knowing the id of its EntityOne other than actually loading it with $entityMany->getEntityOne()->getId() ? |
|
Jan 20 |
comment |
How do I save the “Many” side of a Many to One if I only have the id of the “One” side? Thanks. Just what I was looking for. |