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

2009-10-29 Thread DEEPAK BHATIA
Please send me the code for same if possible. Thanks On Thu, Oct 29, 2009 at 10:47 AM, Gareth McCumskey gmccums...@gmail.comwrote: I think what he means is PHP's built in script execution time limitations and so on. One thing that you can do is dynamically alter the max execution time and

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

2009-10-29 Thread Gorka
Think of a website with a video gallery, managed by the site administrator who is a regular user with no particular interest on learning what FTP is and how to use it. Or, simply, because you want to give him a web integrated management with no external tools. Think of a dedicated server with

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

2009-10-29 Thread Gareth McCumskey
http://php.net/manual/en/function.ini-set.php On Thu, Oct 29, 2009 at 8:35 AM, DEEPAK BHATIA toreachdee...@gmail.comwrote: Please send me the code for same if possible. Thanks On Thu, Oct 29, 2009 at 10:47 AM, Gareth McCumskey gmccums...@gmail.comwrote: I think what he means is PHP's

[symfony-users] Re: change the value on the form with ajax

2009-10-29 Thread Adrien Mogenet
Humm I'm not using link_to_remote, but you can find an example of what I did here : http://code.google.com/p/piwam/source/browse/trunk/apps/front/modules/cotisation/templates/_form.php At the end of this source file, you can find JS function using ajaxupdater to update the amount text field.

[symfony-users] Re: change the value on the form with ajax

2009-10-29 Thread Gareth McCumskey
First of all why the onClick? link_to_remote creates a link with an onClick for you. To get the ajax to update the value of a form you will need to use JSON encoding in your action to return the value you want then you can use the complete callback option to set the value from the returned data.

[symfony-users] Re: how to implement sfWidgetFormInputSWFUploadPlugin tutorial?

2009-10-29 Thread Alexandre SALOME
Contact the creator of the plugin or have a look at source code, maybe a README file, or something similar. Last solution : read sourcecode. 2009/10/28 mel_06 06melc...@gmail.com i'm just really knew to symfony. is anyone knows how to use sfWidgetFormInputSWFUploadPlugin? thanks! --

[symfony-users] Re: functional tests : issue with auto-increment and userID

2009-10-29 Thread Alexandre SALOME
Have you set environments ? a dev, test prod ? Have you different databases ? In which one are you running your tests ? And if you drop all DB except the test, does it works ? 2009/10/27 Adrien Mogenet adrien.moge...@gmail.com Hi everyone, I'm using fixture to fill my database with 3

[symfony-users] Re: core.php/ not working

2009-10-29 Thread david
Do you have the zend debugger installed on the server? Check your web server (apache) error logs for Zend Debugger entries when you use the page with Opera. Sometimes the Zend debugger gets stuck trying to communicate with the server side module - clearing your Opera cookies for your site

[symfony-users] Re: sfWidgetFormPropelJQueryAutocompleter setdefault

2009-10-29 Thread Job
i solved partially the problem adding the following code to the render method in the sfWidgetFormJQueryAutocompleter if ($value != null) $visibleValue = $value; On 28 oct, 13:05, Job jordir...@gmail.com wrote: hi there, i am using a sfWidgetFormPropelJQueryAutocompleter which works

[symfony-users] Re: functional tests : issue with auto-increment and userID

2009-10-29 Thread Gareth McCumskey
This is the expected behaviour because symfony's load fixture methods dont drop the tables and recreate them. If you drop the database yourself and regenerate it before you run tests, or truncate each table, then you should have things working as you want. On Tue, Oct 27, 2009 at 6:09 PM, Adrien

[symfony-users] Tiny mce not working

2009-10-29 Thread asi007
i am getting this error message You must install TinyMCE to use this helper (see rich_text_js_dir settings). --~--~-~--~~~---~--~~ 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] Re: Tiny mce not working

2009-10-29 Thread Alexandru-Emil Lupu
that means you have to install Tiny_mce (which was embeded into sf 1.0 ) Alecs On Thu, Oct 29, 2009 at 12:33 PM, asi007 asim...@gmail.com wrote: i am getting this error message You must install TinyMCE to use this helper (see rich_text_js_dir settings). -- As programmers create bigger

[symfony-users] Re: Tiny mce not working

2009-10-29 Thread asim nizam
i have installed and donr setting in view.yml --~--~-~--~~~---~--~~ 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,

[symfony-users] Re: Tiny mce not working

2009-10-29 Thread asim nizam
Any body who used this tiny mce On Thu, Oct 29, 2009 at 4:39 PM, asim nizam asim...@gmail.com wrote: i have installed and donr setting in view.yml --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users

[symfony-users] How to set error_404_module for one module?

2009-10-29 Thread Tomasz Ignatiuk
Hi I have set error_404_module for my app. I also added web services in a module called API. And I would like to change error_404_module for this module, in order to prepeare an error page as a formatted XML page. Does anyone know how to make it? Tom

[symfony-users] Re: Tiny mce not working

2009-10-29 Thread Eno
On Thu, 29 Oct 2009, asim nizam wrote: Any body who used this tiny mce When you say you installed it, what does that mean precisely? Normally tinymce should inside the js folder under your web folder (or whatever folder you're using for your front controllers). --

[symfony-users] Re: Tiny mce not working

2009-10-29 Thread asim nizam
thanks i have used tiny mce using simple way not symfony way. --~--~-~--~~~---~--~~ 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

[symfony-users] Re: Tiny mce not working

2009-10-29 Thread Eno
On Thu, 29 Oct 2009, asim nizam wrote: thanks i have used tiny mce using simple way not symfony way. There's not much to it: the js files need to be in the right place but you still haven't told us what you've done. Secondly, if tinymce is installed you pass the correct parameters to the

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

2009-10-29 Thread Gorka
Thanks, Gareth and Deepak, but Im not searching for php.ini configurarion and there is no code i can show. Im asking for the best practice when it comes to uploading big files such as video files. Thanks, anyway :) On Oct 29, 8:02 am, Gareth McCumskey gmccums...@gmail.com wrote:

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

2009-10-29 Thread Miloslav Kmeť
I do it exactly like you described. I have no code to share, but you can really look in the php.ini settings especially on the settings upload_max_filesize post_max_size There is no magic. Metadata from the uploaded video i am retrieving with ffmpeg-php and I never need to increase the

[symfony-users] Re: functional tests : issue with auto-increment and userID

2009-10-29 Thread Adrien Mogenet
I run tests under 'test' env which works perfectly, using a app-test database :-) The point I would like to figure out is really the issue with the ID that my sfBrowser is returning after signing in, which is different from the ID in Database, but not the first time, just after reloading

[symfony-users] Symfony 1.3, load data failed (override plugin schema)

2009-10-29 Thread FlyLM [ML]
Hello, I use Symfony 1.3 (with doctrine) and my application database schema overrides the database schema of the plugin sfDoctrineGuardPlugin. My sf_guard_user definition look like that : ** sfGuardUser: actAs:

[symfony-users] Re: Production routing vs. dev environment routing.

2009-10-29 Thread Zach
Hi Eno, I am not using a virtual host... This is an existing application that has been working fine for over a year. Everything else on the site works great, it's just this one URL that I am having a problem with. What is the difference between the dev environment and the production environment

[symfony-users] Re: Production routing vs. dev environment routing.

2009-10-29 Thread Zach
Ok, so it ended up being a simple issue... one of the parameters had a numeric value with a decimal... which was breaking my url. If I remove the dot first, everything works fine. Thanks everyone for their ideas. Does anyone know why the dot works in the dev environment but not the prod

[symfony-users] Re: Symfony 1.3, load data failed (override plugin schema)

2009-10-29 Thread FlyLM [ML]
I just try with an other computer, I've updated the working copy and the data-load works fine ^^ Sorry for the noise. Fabien 2009/10/29 FlyLM [ML] flylm...@gmail.com: Hello, I use Symfony 1.3 (with doctrine) and my application database schema overrides the database schema of the plugin

[symfony-users] Unknown method JobeetJob::getDateTimeObject

2009-10-29 Thread HiDDeN
I'm following the Jobeet tutorial, and in the Day 11, just before the Forms Security section, in the last portion of code, there is a line that says $job-getDateTimeObject('expires_at')-format('y/m/d'). When running that code, I get this error: Unknown method JobeetJob::getDateTimeObject Is the

[symfony-users] Re: Unknown method JobeetJob::getDateTimeObject

2009-10-29 Thread Jonathan Wage
Are you using Symfony 1.3? - Jon On Thu, Oct 29, 2009 at 5:17 PM, HiDDeN sombrasdepa...@gmail.com wrote: I'm following the Jobeet tutorial, and in the Day 11, just before the Forms Security section, in the last portion of code, there is a line that says

[symfony-users] Re: Unknown method JobeetJob::getDateTimeObject

2009-10-29 Thread HiDDeN
Nope, I'm using the version that comes with Jobeet (it's 1.2.9-DEV). On 29 oct, 22:28, Jonathan Wage jonw...@gmail.com wrote: Are you using Symfony 1.3? - Jon On Thu, Oct 29, 2009 at 5:17 PM, HiDDeN sombrasdepa...@gmail.com wrote: I'm following the Jobeet tutorial, and in the Day 11,

[symfony-users] Re: Unknown method JobeetJob::getDateTimeObject

2009-10-29 Thread HiDDeN
Ok, I have seen it is a method only present in 1.3 version. I have downloaded 1.3 BETA1 and tried to go to the homepage, but I'm getting this error: Configuration file /var/www/jobeet/lib/vendor/symfony/lib/config/ config/filters.yml specifies category common with missing class key. On 29 oct,

[symfony-users] Symfony 1.3, sfDoctrineGuardPlugin error

2009-10-29 Thread FlyLM [ML]
Hi, I use admin generator to manage my sf_guard_user in my backend. The project is under Symfony 1.3 (trunk) and I use sfDoctrineGuardPLugin from the trunk too. When I save (edit) I get this error : Unknown method sfGuardUser::reloadGroupsAndPermissions If I remove goups_list from the form

[symfony-users] Speed Javascript

2009-10-29 Thread roberto german puentes diaz
Awesome http://blog.sproutcore.com/post/225219087/faster-loading-through-eval -- Cr. Puentes Diaz MP 10.12726.9 Córdoba - Argentina www.puentesdiaz.com.ar/blog/ www.puentesdiaz.com.ar/blog/novedades www.twitter.com/puentesdiaz Linux User n° 441474 Ubuntu/Symfony/Eclipse Rocks! Sign for Free

[symfony-users] Re: Tiny mce not working

2009-10-29 Thread asim nizam
i have not get help on google group just wastage of time --~--~-~--~~~---~--~~ 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