[symfony-users] is it possible to have security set at the application level?

2011-02-01 Thread matt
Writing a lot of security.yml files for each module seems tedious. I've got 20 modules and they all need some security settings. Is there a way to set all this info at the application level? -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.

[symfony-users] Re: Re : [Symfony 2] Form Date Field Format

2011-05-05 Thread Matt
format but it is not used anywhere in the DateType class in Symfony2 Beta1. Hope this help, Matt -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups "symfony

[symfony-users] Re: Render field date format

2011-05-09 Thread Matt
ote that the date_pattern accept Intl patterns ( http://userguide.icu-project.org/formatparse/datetime) Regards, Matt -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Group

[symfony-users] Re: SF 2 - Referrer object similar to Request object?

2011-05-09 Thread Matt
rer = $this->generateUrl('index'); return new RedirectResponse($referer); } I'm not sure if it is the best to do it way but it works for me in my use cases. Regards, Matt -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-proje

[symfony-users] Re: Security : add custom AuthenticationProvider [SF2]

2011-05-13 Thread Matt
there is all it needs to implement your own I think. Feel free to ask questions about it, I'm far from the author of it but I made my first steps with the security component with it. So if I can help you, I will be glad to do so. Regards, Matt -- If you want to report a vulnerabili

[symfony-users] svn: Can't move '.svn/tmp/entries' to '.svn/entries': File exists

2010-05-10 Thread Matt
I perform the following command on the CLI (CentOS): $ svn checkout http://svn.symfony-project.com/branches/1.4/ This is in a fresh, brand new, never existed before lib/vendor directory. Here is what I get: svn: Can't move '1.4/.svn/tmp/entries' to '1.4/.svn/entries': File exists I would like t

[symfony-users] i18n and accents problem

2010-11-15 Thread Matt G
Hi list: This is the first time I work with i18n and Symfony together, but not the same with gettext. Anyway, I've found an issue that would probably have an easy solution, but I'm unable to find it out (not at Google at least). I'm on a French project and we use accents in every part of the code

[symfony-users] Re: Avoiding the damn "Can't connect to local MySQL server through socket '/tmp/mysql.sock" error

2011-01-26 Thread Matt Robinson
ket location is mentioned a few times in my.cnf - change them all. PHP ini directives: mysql.default_socket mysqli.default_socket pdo_mysql.default_socket If you need to know where the socket actually is, run 'mysql' from the command-line and type \s to get status info, including the socket l

[symfony-users] Re: How to let my users edit their password/profile ? [sfDoctrineGuardPlugin]

2011-02-07 Thread Matt Robinson
I'd recommend using $this->useFields() instead of unsetting the fields you don't want. It protects you from accidentally blanking new fields if you forget to unset them across all forms for that object, and as a bonus you can pass an argument to it to set the order that the widgets appear. On Feb

[symfony-users] Re: Use compenents from symfony 2.0 in symfony 1.4

2011-02-09 Thread Matt Robinson
cific optimisations in your app. It's really quite surprising that routing is taking up 30% of your script execution - I'm not arguing, mind you. How complex a routing table are we talking? Hundreds of routes? -- Matt -- If you want to report a vulnerability issue on symfony, please send

[symfony-users] Re: [Symfony2] How to create Forms in PR6?

2011-02-09 Thread Matt Robinson
e examples, so view raw, or wait for the site to update -- we ought to be only a few days away from RC1. That said, I can't see anything in the Forms documentation about embedding forms, so I have no idea how you got as far as you did. I'm still flailing around in the dark! :)

Re: [symfony-users] Two Foreign keys refferencing same primary key

2011-02-12 Thread Matt Gibson
I remember, when I was mucking around with this stuff, it's important to clear the Symfony cache before diving back into the admin interface after regenerating your models, otherwise things get confused. Matt -- If you want to report a vulnerability issue on symfony, please send it to secur

[symfony-users] Overriding the Stylesheet of a Plugin's Forms?

2011-02-19 Thread Matt Gibson
aking my own versions of all the forms? Sorry if there's an obvious answer here; I tried both searching and thinking, honest :) but I'm a Symfony beginner... Thanks, Matt -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You rec

Re: [symfony-users] Re: Overriding the Stylesheet of a Plugin's Forms?

2011-02-20 Thread Matt Gibson
On 20 Feb 2011, at 10:48, Grzegorz Śliwiński wrote: > Hi Matt, you'll have to either override the getStylesheet method, or > look at the line here: > https://github.com/fizyk/sfForkedDoctrineApplyPlugin/blob/master/modules/sfApply/templates/applySuccess.php#L2 > > Just overr

Re: [symfony-users] sfGuardPlugin, rememberme cookie storage

2011-02-21 Thread Matt Gibson
a better "remember me" for it as a plugin -- see http://www.symfony-project.org/plugins/gbRememberMePlugin. Might give you some hint as to a possible way to go... I've not tried it yet, but the architecture might be helpful for your deliberations, at least... Matt -- If

Re: [symfony-users] Re: include_slot handling zero value wrong?

2011-03-02 Thread Matt Gibson
se; } ...if you pass in a $default of '0', then the ternary evaluates to false (because '0' == false), so the function returns false instead of printing. To workaround it, I'd just go for the slightly longer version: Matt -- If you want to report a vulnerability issue

[symfony-users] Functional Test (Mailer) Problem with Quoted-Printable Line Breaks (sf 1.4)

2011-03-04 Thread Matt Gibson
s what's going on? Is there a way of getting the mailer tester to ignore the line-breaks? Or am I doing something silly? Thanks, Matt -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subsc

Re: [symfony-users] Functional Test (Mailer) Problem with Quoted-Printable Line Breaks (sf 1.4)

2011-03-04 Thread Matt Gibson
mail_html', $mail_fields), 'text/html')); $message->attach(new Swift_MimePart($this->getPartial('submitted_mail_text', $mail_fields), 'text/plain')); $this->getMailer()->send($message); ...but are these both ending up, technical

Re: [symfony-users] Practical Symfony Jobeet Tutorial not working. slugify replaces view with the words 'Paris, France'

2011-03-15 Thread Matt Gibson
e of times doing the tutorial, I managed to find my answer by browsing the "official" code for that particular day and comparing it to what I had. Because you only change a few files on any given day, it's normally quite easy to see what you've done that's different.

Re: [symfony-users] Re: Practical Symfony Jobeet Tutorial not working. slugify replaces view with the words 'Paris, France'

2011-03-16 Thread Matt Gibson
beet.class.php OK but is that where it should > be ? That doesn't sound like the same problem. Yes, lib/Jobeet.class.php should be found by the autoloader. What, exactly, is in your file? Matt -- If you want to report a vulnerability issue on symfony, please send it to security at sy

Re: [symfony-users] [Symfony2] Injecting routes with parameters into javascript

2011-03-27 Thread Matt Gibson
On 27 Mar 2011, at 20:41, Dennis Jacobfeuerborn wrote: > That's what I'm aiming for but I have a \d+ requirement set for the id so the > above only results in an error. I could remove that requirement but that > seems kind of hack-y as I shouldn't have to restrict the way I create routes > to a

[symfony-users] Caching a renderText() Action? (sf1.4)

2011-03-28 Thread Matt Gibson
s let me down, possibly because of the number of Symfony answers out there that have "action" and "clear the cache" as a part of their advice!) Thanks, Matt -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You rece

[symfony-users] Re: Functional Test (Mailer) Problem with Quoted-Printable Line Breaks (sf 1.4)

2011-03-31 Thread Matt Gibson
gt; You would need to iterate through the children of the message object to get > the mime part you are interested in. > > something like... Hi Eric, Sorry, I managed to miss your reply at the time! Thanks very much for the help; that was exactly what I ended up doing, and it worked just fi

Re: [symfony-users] Want jobeet-1.4-doctrine-en.pdf reference source code

2011-04-04 Thread Matt Gibson
ease send it it to me. You want the source for Jobeet itself? It's in SVN, here: http://svn.jobeet.org/doctrine/tags/ ...with a tag for the code at the end of each day of the tutorial. Matt -- If you want to report a vulnerability issue on symfony, please send it to security at symfon

[symfony-users] Validation propagating to related entities in Symfony2

2011-04-16 Thread Matt Johnston
I have two entities that are joined by a ManyToOne relation. Each entity has it's own set of validators. When I submit a form for the one object, the related object is also being validated. Is there any way that the related object can not be validated? Here is an example, I am using Symfony2 PR11:

[symfony-users] Varnish with ESI and Symfony2 Beta1

2011-04-30 Thread Matt Drollette
I was able to get ESI's to work with the built in Symfony reverse proxy. But then i switched to Varnish and they weren't behaving the same. I can make ESI work correctly if I manually put the in the template. But if i use: {% render '...:news' with {}, {'standalone': true} %} Then it just ren

[symfony-users] Re: [Symfony2][PR12] Route "_internal" does not exist

2011-04-30 Thread Matt Drollette
Described here http://symfony.com/doc/2.0/book/http_cache.html#using-esi-in-symfony2 You need to load this in your routing: _internal: resource: "@FrameworkBundle/Resources/config/routing/internal.xml" prefix: /_internal -- If you want to report a vulnerability issue on symfony, plea

[symfony-users] Sf2: the right way to start a project

2011-05-04 Thread Matt Robinson
symfony standard files aren't really supposed to change once Symfony2 goes stable (the symfony 1.4 ones never did), so it doesn't matter, right? Or is there another better method I haven't thought of? -- Matt -- If you want to report a vulnerability issue on symfony, please sen

Re: [symfony-users] Symfony Production

2011-05-04 Thread Matt Robinson
/config/databases.yml (and maybe /apps/frontend/config/app.yml) into your /config/rsync_exclude.txt file, and uploading them manually the first time, then they can have different configuration for each instance. -- Matt [1] http://www.cyberciti.biz/faq/apache-restrict-access-based-on-ip-address

Re: [symfony-users] Re: Symfony Production

2011-05-04 Thread Matt Robinson
On 4 May 2011, at 23:39, Laxmi wrote: > Thanks Matt for your reply, > > I successfully completed the web application on my laptop. Now I am > pushing it on server. What are the changes i need to do so that my > application runs smoothly on server. You linked to the Jobeet pa

Re: [symfony-users] Dealing with VERY complex query

2011-05-04 Thread Matt Robinson
ur site's PHP scripts (in a simple cache table or object store). You never want a simple request page to be doing so much heavy lifting that it'll slow down and prevent you scaling later. If the heavy processing stuff is split off into a separate process, you can also move that process to

Re: [symfony-users] symfony2 batch script

2011-05-10 Thread Matt Robinson
;batch" application). > > I tried to figure out if it's possible to do the same with Symfony2 reading > the book, but I cannot understand. > > Is it still possible? Can someone help me or point me to an example or doc? This might help: http://blog.servergrove.com

Re: [symfony-users] Fatal Error Using "date" widget

2011-05-12 Thread Matt Robinson
Sounds like you're missing the PHP intl extension…? On 12 May 2011, at 17:07, Roger Webb wrote: > The Error: > > Fatal error: Call to undefined function Symfony\Component\Form > \Extension\Core\DataTransformer\intl_get_error_code() in /var/www2/ > vendor/symfony/src/Symfony/Component/Form/Extens

[symfony-users] Assetic and versioning assets

2011-05-14 Thread Matt Drollette
In this presentation kris talks about an assets_version config option (slide 97) that will append "?version" to the assets paths... but i can't seem to make this work or even find any mention of it in Asse

Re: [symfony-users] Assetic and versioning assets

2011-05-14 Thread Matt Drollette
Thanks, it was the use_controller that i was overlooking -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send emai

[symfony-users] Assetic twig grouping assets and filters

2011-05-15 Thread Matt Drollette
I have some regular javascript files and some coffee scripts. I am wondering if there is currently a way to dump them all to a single minified .js using twig helpers? If not, how would I do this directly using assetic? -- If you want to report a vulnerability issue on symfony, please send it to

Re: [symfony-users] Assetic twig grouping assets and filters

2011-05-15 Thread Matt Drollette
Yeah, the coffee filter works great. But I can only apply it to .coffee files. The best I can do with the twig javascripts helper is to dump one js file from the coffee sources and one js file from everything else... but I want one minified js file from everything. -- If you want to report a

Re: [symfony-users] Assetic twig grouping assets and filters

2011-05-15 Thread Matt Drollette
fantastic -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com 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 unsubscr

Re: [symfony-users] Assetic twig grouping assets and filters

2011-05-15 Thread Matt Drollette
almost worked... but a couple explosions... assets: some_coffee: inputs: '@DrolletteDemoBundle/Resources/public/js/test.coffee' filters: coffee filters: coffee: apply_to: "\.coffee$" yui_js: jar: "%kernel.root_dir%/Resources/java/yu

[symfony-users] [Symfony2] [Form] How to handle edit form with FileType

2011-05-22 Thread Matt Drollette
I have a basic form with a file upload field. The upload and persistence work fine, but is there a standard or recommended way to handle editing this object? Using the the same form type always wants a new file to be uploaded. I would expect the default to just display the pathname if there is a

[symfony-users] Re: [Symfony2] [Form] How to handle edit form with FileType

2011-05-22 Thread Matt Drollette
sorry, I mean... $builder->add('file_name', 'file'); the "string" was just me trying randomness -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups "symfony users

[symfony-users] Re: @extra annotations - what is the new format?

2011-05-23 Thread Matt Robinson
Try these: use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route; use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template; use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter; /** * @Route("/", name="home") * @Template() */ and * @ParamConverter("id"

Re: [symfony-users] Re: @extra annotations - what is the new format?

2011-05-23 Thread Matt Robinson
Really? Odd, works for me without the "as". Oh well, if it breaks, I'll know what to do. Ta. :) On 23 May 2011, at 18:39, keymaster wrote: > Actually the correct form of the uses is (so you can use the shorted @Route > instead of the long pathname): > > use Sensio\Bundle\FrameworkExtraBundle\

Re: [symfony-users] [sf1.4] Display a captcha in a form, not everytime

2011-05-24 Thread Matt Robinson
Might be better to skip ReCaptcha if someone's already used it once: set a cookie if the captcha validates, then drop the reCaptcha widget & validation from later forms. That way your repeat posters aren't inconvenienced. -- Matt -- If you want to report a vulnerability issu

Re: [symfony-users] [Symfony2] ReflectionException: Class Doctrine\Common\Annotations\FileCacheReader does not exist

2011-05-24 Thread Matt Robinson
Try disabling the JMSSecurityExtraBundle unless you're using it (comment it out in config.yml and AppKernel.php) and see if the problem goes away. I think it might be a bit behind (or ahead of) the main standard edition. On 24 May 2011, at 22:06, Carl wrote: > I just recently updated to the la

Re: [symfony-users] [S2] Project configuration onn a Shared hosting.

2011-05-26 Thread Matt Robinson
l host configuration isn't reading your .htaccess file. Check that .htaccess is readable by Apache Check that the virtual host has an appropriate AllowOverrides value (else it won't read .htaccess) -- Matt -- If you want to report a vulnerability issue on symfony, please send it t

Re: [symfony-users] Why does Symfony2 change config file formats - why not standardize?

2011-06-08 Thread Matt Robinson
I agree that it makes things a little more fractured. It's certainly not my preference either. My two cents is that having multiple formats forces coders to learn all the formats just to be able to debug or learn the framework and third party bundles properly. But it's an issue that's been debat

Re: [symfony-users] [symfony2:beta4] where has gone doctrine:generate:repositories ?

2011-06-08 Thread Matt Robinson
It's now built-in to the doctrine:generate:entities command - as long as you declare the repository class name in your @orm\entity declaration, generate:entities will also generate the repository. On 8 Jun 2011, at 12:05, spider wrote: > Hello, > > I just upgraded to BETA4 and tried to generat

Re: [symfony-users] Limit results with Doctrine

2011-06-08 Thread Matt Robinson
Generate your own repository, then create a method in it that contains the DQL. In your entity definition (if you're using annotations): /* * @orm\Table(name="thing") * @orm\Entity(repositoryClass="Me\MyBundle\Repositories\ThingRepository") */ Then re-run app/console doctrine:generate:entitie

Re: [symfony-users] Any chance of creating a new Google group for Symfony2 only?

2011-06-09 Thread Matt Robinson
pills, we don't have to make yet another mailing list to deal with it. :) -- Matt On 9 Jun 2011, at 08:16, Ricky wrote: > +1 > > It's a good idea that there is symfony2 group seperately, as we > sometimes can find our solution or get help from others more clearly. -- If yo

Re: [symfony-users] Could not open input file

2011-11-30 Thread Matt Farmer
This looks like the error php gives when it can not locate a file. I would make sure you are running the command in the correct directory and that when you do a `ls -al` your current user has read permissions on that file. -- Matt Farmer On Saturday, November 26, 2011 at 6:40 AM, Phil

Re: [symfony-users] How to display an app on the backend and frontend

2011-11-30 Thread Matt Farmer
It sounds like you might be confusing some of the terminology symfony uses. 'backend' and 'frontend' are names that are typically given to applications, so displaying and 'app' on both backend and fronted doesn't really makes sense (since they themse

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

2009-09-20 Thread Matt Robinson
On Sep 18, 5:09 pm, bghost wrote: > No, the crux of what I wanted to say is: > > Users should not spend more time to learn how some Web Framework > works but they need to learn a programming language. I'm struggling to understand this statement. If you're saying that it's bad for people to learn

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

2009-09-24 Thread Matt Robinson
On Sep 23, 12:29 pm, bghost wrote: > First: > [..] So you complicate some tasks in the Symfony > framework that already was simple and good. Well, that's certainly an opinion. > Second: > Almost 90% of the code that generates the Symfony framework > developer need to modify or re-write If the

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

2009-09-24 Thread Matt Robinson
On Sep 24, 10:20 pm, bghost wrote: > And where is the problem guys? I think the problem is that you > obviously > do not suffer any criticism. That's right, that's why we're all secretly using symfony 0.6, which is perfect. Don't let the door hit you on the way out. --~--~-~--~~

[symfony-users] Re: sfGuard passwords get corrupted with doctrine:data-dump/load

2009-10-14 Thread Matt Robinson
On Oct 13, 3:13 pm, Pablo Godel wrote: > I am using sfDoctrineGuard plugin. When I run doctrine:data-dump and then > data-load the passwords which are encripted by default with sha1 get > corrupted. As others have said, sfGuard's setPassword method is called by the data-load task, and re-hashes

[symfony-users] Re: Doctrine alterntive for sfWidgetFormPropelJQueryAutocompleter?

2009-10-16 Thread Matt Robinson
On Oct 15, 10:09 pm, Lukas Kahwe Smith wrote: > Just wondering if anyone has looked into porting   > sfWidgetFormPropelJQueryAutocompleter to Doctrine or if there is a   > widget that makes it easy to replace a standard drop down inside the   > admin generator with a livesearch while using Doctri

[symfony-users] Re: Doctrine alterntive for sfWidgetFormPropelJQueryAutocompleter?

2009-10-16 Thread Matt Robinson
Ah, one gotcha is that my quick bodge assumes that your primary key is called "id", which is pretty poor. I think you can just use Find() instead of FindOneById(), and it should be fine. --~--~-~--~~~---~--~~ You received this message because you are subscribed to t

[symfony-users] Re: Doctrine vs Propel 1.3

2008-09-03 Thread Matt Robinson
pel and doctrine, you'd probably want to go even further and use neither :) So pick the one that lets you do what you need to do, and if both do, pick the one you like the feel of (in your case, Propel, I guess!) -- Matt --~--~-~--~~~---~--~~ You received this me

[symfony-users] symfony1.2/ doctrine file upload, generateFilename function ?

2008-12-22 Thread matt marcum
Hi, I saw in the jobeet doctrine tutorial a method of having a function in your form the would generate filenames for uploaded files: if a generateLogoFilename() method exists in the form, it will be called by the validator and the result will override the default generated logo filename. The m

[symfony-users] Re: symfony1.2/ doctrine file upload, generateFilename function ?

2008-12-22 Thread matt marcum
Sorry, the lines I changed to get this to work or 503-505: else if (method_exists($this, $method)) { return $this->getValue($field)->save($this->$method($this- >getValue($field))); } basically, change $this->object to $this On Dec 22, 4:25 pm, matt marcum wrote:

[symfony-users] symfony1.2 dynamic routes tutorial

2009-01-07 Thread matt marcum
Hi, I spent a little time trying to figure out how to generate routes (semi)dynamically in symfony1.2 and I think I finally figured it out. I wrote up a quick tutorial if anyone's interested. Give it a read and let me know what you think. http://dfwtek.com/blog/129-dynamic-routes-in-symfony12.ht

[symfony-users] Re: symfony1.2 dynamic routes tutorial

2009-01-08 Thread matt marcum
On Jan 7, 10:43 pm, "Цырульник Вячеслав" wrote: > > $categories=Doctrine::getTable('Category')->findAll(); > > $products=Doctrine::getTable('Product')->findAll(); > > What if you have 500 000 records for category and even more for > produc

[symfony-users] Re: symfony1.2 dynamic routes tutorial

2009-01-13 Thread matt marcum
tion login will calculate categories part and 1 static > route will do the job. > > Or put ur routing configuration in separate table and update it when > it's need (new subcategories, etc). So you don't need to fetch it from > product, it's bad business logic. >

[symfony-users] Re: Improve plugin:install method to not use PEAR

2009-12-14 Thread Matt Robinson
On Dec 13, 3:10 pm, Simon Cast wrote: > Hi, > > Installing plugins via the plugin:install method seems to require more > time battling PEAR than it should. [...] > The biggest problem I see with using SVN is possible conflicts between > the developers SVN for his project and the SVN for the plugin

[symfony-users] Re: Discount Code for Symfony Users - Perq - A Symfony Powered Website

2009-12-18 Thread Matt Robinson
On Dec 17, 6:30 pm, CA wrote: > The application, which is for small business people to track employee > paid time off, may or may not be right for you, but I wanted to give > back some way I could. > > Use SYMFONY50 and receive 50% off for six months. I've got a question - what's the URL? :) --

[symfony-users] Re: Memory Leak using Doctrine in Tasks?

2010-02-08 Thread Matt Robinson
On Feb 2, 7:59 pm, Brandon Turner wrote: > In the meantime, you could set up a new environment and disable the > profiler in that environment.  This can be done in your databases.yml by > adding param: "profiler: false".   Great tip Brandon. I've modified it slightly - I set "profiler: false" in

[symfony-users] Re: Error when checking out Symfony 2.0 SVN code

2010-02-19 Thread Matt Robinson
On Feb 18, 5:22 am, brent960 wrote: > I've just tried unsuccessfully to checkout the latest Symfony 2.0 code > from the Subversion mirror. [...] > It appears that the "YAML" subdirectory is rendered in all caps in one > place, and it first-letter cap-only on another. > > And Windows and/or Tortois

[symfony-users] Re: Symfony hangs !?

2007-11-24 Thread Matt Robinson
b' for benchmarking - it's pretty easy to use, and you'll get much better figures than battering your poor browser. Run a proper test with a bunch of concurrent connections and requests and see if the problem's still occurring. -- Matt Robinson http://lazycat.org/ --~--~

[symfony-users] Re: symfony sync X go

2007-12-17 Thread Matt Robinson
line 61-ish every release to remove the -- delete and modify some other rsync arguments. Wicked, bad, naughty me. :) -- Matt --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group.

[symfony-users] Re: Getting DB connection details

2007-12-21 Thread Matt Robinson
the getConnection() method on the active sfDoctrineDatabase object to return the open PDO database handler. Not entirely sure where that is, though, sorry. I'm still using sf 1.0.x and Propel 1.2, like some kind of anachronistic steam-powered babbage-engine coder. -- Matt --~--~

[symfony-users] Re: RSS Feed chapter?

2007-05-02 Thread Matt Robinson
for the office), there's some big stuff missing. There used to be a page on sending mail with sfMail and mail actions too, but it's noticably missing from the book, *shakefist*. Guess they were leaving room for a sequel ;) -- Matt --~--~-~--~~~---~--~~ Y