[symfony-users] Re: Best way to store app settings that are configurable from administrator interface

2010-03-25 Thread Gorka
Wouldn't Alex's solution also need a cache reload? On 24 mar, 13:58, Tom Haskins-Vaughan t...@templestreetmedia.com wrote: Sorry Alex, this was meant to arrive before yours ;-) On Wed, Mar 24, 2010 at 8:57 AM, Tom Haskins-Vaughan t...@templestreetmedia.com wrote: I think the problem

[symfony-users] Re: PHP symfony reports

2009-11-03 Thread Gorka
I might be wrong, but I think he's looking for a reporting engine like Crystal or Jasper. If that's the case, you might look into PHP Java Bridge to use Jasper Reports, COM under Windows to use Crystal, or Agata Reports under puré PHP. I'm looking into it, but have not tested any of theese

[symfony-users] Re: How to manage big uploads

2009-10-29 Thread Gorka
, Oct 28, 2009 at 4:41 PM, Gorka glopezdeto...@gmail.com wrote: When it comes to video or audio files, uploading via http forms does not seem to be the best approach: timeouts, size limits, etc... usually get on the way. How would you manage big (+20MB) or batch uploads? I guess the best

[symfony-users] Re: How to manage big uploads

2009-10-29 Thread Gorka
a limit on upload else your server could be crashed for no space On Wed, Oct 28, 2009 at 4:41 PM, Gorka glopezdeto...@gmail.com wrote: When it comes to video or audio files, uploading via http forms does not seem to be the best approach: timeouts, size limits, etc... usually get

[symfony-users] How to manage big uploads

2009-10-28 Thread Gorka
When it comes to video or audio files, uploading via http forms does not seem to be the best approach: timeouts, size limits, etc... usually get on the way. How would you manage big (+20MB) or batch uploads? I guess the best solution would be a client-side code either in java, flash o

[symfony-users] Re: Propel 1.3 nestedset strange behavior

2009-03-04 Thread Gorka
Last time I checked -though it was months ago- I think nodes could not be moved through the tree, but I am not sure. Maybe the limitation was that they could not be moved between different trees (different scopes)... sorry for my bad memory. Anyway, I've personally found Propel1.3 nestedset

[symfony-users] Re: Component using different views per module

2008-11-25 Thread Gorka
/modules/blog/templates/myActionSuccess.php: !-- Whatever content this template shows -- ?php include_component('blog', 'lastPosts') ? !-- Whatever content this template shows -- Phew... that was a long one! Hope it clarified my point. Cheers, Gorka. On 25 nov, 08:15, Eus [EMAIL PROTECTED

[symfony-users] Re: Component using different views per module

2008-11-24 Thread Gorka
Thanks again for your comments :) On Nov 24, 2:37 am, Eus [EMAIL PROTECTED] wrote: Hi Ho! --- On Sat, 11/22/08, Gorka [EMAIL PROTECTED] wrote: Hi Eus, Thanks for your reply. Components are already available to all modules, you can call include_component('blog', 'lastPosts') in any

[symfony-users] Re: Component using different views per module

2008-11-22 Thread Gorka
this module On Nov 22, 8:03 am, Eus [EMAIL PROTECTED] wrote: Hi Ho! --- On Fri, 11/21/08, Gorka [EMAIL PROTECTED] wrote: I'm working on an application with a blog module. The blog module defines a component 'lastPosts' that show the N last posts on the blog, an 'archive' component

[symfony-users] Component using different views per module

2008-11-21 Thread Gorka
I'm working on an application with a blog module. The blog module defines a component 'lastPosts' that show the N last posts on the blog, an 'archive' component that show the last months with articles and a 'lastComments' component that shows the last approved comments. The problem is these