[symfony-users] Functionality wanted in the URL helper or routing system.

2010-03-03 Thread a...@speedypin.com
Hi, I don't know about 1.4 or 2.0 but in 1.2 Symfony I could not specify to print my URL over https easily as one of the URL helpr options or to say in the routing yaml that 'this URL needs to be rendered as https when I am on a http page. For example when rendering a login credentials form on

[symfony-users] Re: General Questions about Symfony / Doctrine

2010-02-19 Thread a...@speedypin.com
Perhaps have a doctrine entity of 'userDedicatedDatabase' with enough credentials and crap declared in the entity that you can create/instanciate a database handle (like the ones in databases.yml) from the values of entity. the entity can also have business model methods to create the users

[symfony-users] Re: sflive2010 Symfony Core Dev QA session

2010-02-18 Thread a...@speedypin.com
Thanks dude, your efforts are appreciated. Great vids. On Feb 17, 5:50 am, Ben Haines ben.hai...@gmail.com wrote: After Stefan Koopmanschap's talk about community on Saturday at sflive2010 I feel compelled to give something back ;) So here is the Symfony Core Dev Team in HD ;) Enjoy!

[symfony-users] Re: Apostrophe 1.0 Stable Release: a mature CMS for Symfony!

2010-02-12 Thread a...@speedypin.com
2nds on the congrats... Is this a CMS that can be intergrated into an existing symfony project? sfSympalPlugin and diemPlugin need to be selected at the beginning point of starting a projectSucks for those (like me) who have been developing for more than 1+ years on a current project an

[symfony-users] Re: FREE ticket to sflive2010

2010-02-12 Thread a...@speedypin.com
This would be sweet if I could muster up $1500 for the airfair and another $500 for expenses... On Feb 12, 2:46 am, Lee Bolding l...@leesbian.net wrote: Yes, that's right. Unfortunately, I'm snowed under at work, so can't go. If anybody would like my ticket instead give me a shout and you

[symfony-users] Is there Symfony's Coding Standards available as templates in Netbeans 6.8

2010-02-11 Thread a...@speedypin.com
I have been seeing a lot of support for Symfony in Netbeans 6.8 (Two things I am very happy with, together ahhh) One thing that would be nice though is if I could get Netbeans to use Symfony's coding standards. (its pretty close, just a tweek here, and a tweek there) does anyone know how I

[symfony-users] Does the Doctrine package concept work?

2010-02-04 Thread a...@speedypin.com
http://www.doctrine-project.org/documentation/manual/1_0/hu/yaml-schema-files#features-examples:packages Does this work? I tried about a year ago and couldnt get it to work, but now I see it again and could really use this feature. -- You received this message because you are subscribed to the

[symfony-users] Re: generator.yml : disallow a field modification for a user that doesn't have a credential

2010-02-03 Thread a...@speedypin.com
I think he means not making a template but messing around with the generator yaml. On Feb 1, 10:50 am, Richtermeister nex...@gmail.com wrote: Hey there, I know that sounds like a good idea, but it really isn't. The right place to control access to form fields is in the form class itself,

[symfony-users] Re: Symfony's Database Session's table structure.

2010-01-21 Thread a...@speedypin.com
, a...@speedypin.com wrote: I want to use a database managed session system as opposed to filesystem based. My question is : What would symfony expect for the table structure of sessions table to be, both columns and data types? As usual, this is documented: http://www.symfony-project.org/book/1_2/06

[symfony-users] Symfony's Database Session's table structure.

2010-01-19 Thread a...@speedypin.com
I want to use a database managed session system as opposed to filesystem based. My question is : What would symfony expect for the table structure of sessions table to be, both columns and data types? So far I have found and done: a) add a factory.yml entry for each app for the storage

[symfony-users] Re: Symfony's Database Session's table structure.

2010-01-19 Thread a...@speedypin.com
I started looking at the sql query logs from mysql, it looks like sess_time is a Unix time stamp. On Jan 19, 1:45 pm, a...@speedypin.com a...@speedypin.com wrote: I want to use a database managed session system as opposed to filesystem based. My question is : What would symfony expect

[symfony-users] Re: Symfony's Database Session's table structure.

2010-01-19 Thread a...@speedypin.com
there is also this snippet http://snippets.symfony-project.org/snippet/26 -- You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send email to symfony-us...@googlegroups.com. To unsubscribe from this group, send email to

[symfony-users] Not quite symfony but very related (and cool)

2009-11-19 Thread a...@speedypin.com
http://www.youtube.com/watch?v=a0qMe7Z3EYgfeature=player_embeddedaia=true Dudes pretty cool, very funny, good info presented well/authentic. I just wanted to share, hopefully all Symfony developers are upper crust developers of the industry so may find this worth a view. (I certainly like it and

[symfony-users] Re: got strange issue in symfony sessions (urgent)

2009-11-17 Thread a...@speedypin.com
Look at the implementation of executeSignin in your sfGuardAuth Module and consider extending the single action or sfGuardAuthActions with your own implementation. ensure that your destination after login is set the way you want it, i.e. return the right views route from the action. (actions

[symfony-users] How to host a Symfony project's web assets(images/uploads) on the s3

2009-11-08 Thread a...@speedypin.com
I heard in a recent Usergroup meeting that the S3 is good for keeping web accessible assets that don't require the appserver (i.e. symfomy) to serve, as a high load/traffic optimization technique. Do you think the benefit is there? (Probably), and has anyone successfully partitioned the

[symfony-users] Re: Doctrine - Database migration version

2009-10-27 Thread a...@speedypin.com
I made a task in the doctrine namespae called :get-current-migration- version so i can do it from the command line: lib/task/getCurrentMigrationVersionTask.class.php ?php class getCurrentMigrationVersionTask extends sfBaseTask { protected function configure() {

[symfony-users] Re: Symfony has definitely become too complicated framework

2009-09-18 Thread a...@speedypin.com
It may be the case that Jobeet is trying to help you learn Symfony, so it is designed to touch on all the configurations, intentionally, so one becomes aware of them. On Sep 18, 7:45 am, bghost bggho...@gmail.com wrote: I thought on all parameters: in the command line, and various

[symfony-users] Re: Status of PayPal plugin(s)

2009-06-25 Thread a...@speedypin.com
I think Simon Cast has a point, a) Paypal is crucial, but Amazon Payments is building traction, (it’s a solid affordable solution for many vendors) b) Support reoccuring payments. [I am thinking through the adapter pattern as each provider that supports it will have a different implementation. I

[symfony-users] Re: Multiple Exentds myUser requests.

2009-06-22 Thread a...@speedypin.com
Perhaps a solid A.O.P. solution in the framework looks like what's needed here. http://en.wikipedia.org/wiki/Aspect-oriented_programming So plugin developers get their functionality running without stepping on eachothers feet. So Does that mean Symfony needs or is lacking an AOP component?

[symfony-users] Re: Multiple Exentds myUser requests.

2009-06-18 Thread a...@speedypin.com
to get away with such an awful crime. WITH BEST REGARDS, ALEX STONEHAM On Jun 17, 5:00 pm, Marijn marijn.huizendv...@gmail.com wrote: On Jun 18, 1:33 am, a...@speedypin.com a...@speedypin.com wrote: Hi, I want to use some lovely symfony plugins for my site. But the ones I want to use

[symfony-users] Re: Multiple Exentds myUser requests.

2009-06-18 Thread a...@speedypin.com
Doh! That won't work, all the other classes extend something or other, and that will thwart my god-awful crime of a composite class of all the plugins that want to be myUsers base class. Is the observer pattern what I need here? On Jun 18, 11:40 am, a...@speedypin.com a...@speedypin.com wrote

[symfony-users] Re: Recommended distibution for Symfony

2009-02-12 Thread a...@speedypin.com
Before this thread is closed, has anyone tried Symfony on the EC2 ? If so, could you let us know of your experience? On Feb 12, 12:35 pm, Daniel daniel.kol...@gmail.com wrote: I finally found Zend Core;http://www.zend.com/en/products/core/ and bought the silver package. I can really