[symfony-users] Re: Slightly offtopic - CC encryption / decryption

2008-06-12 Thread Lee Bolding
You may want to check this : http://en.wikipedia.org/wiki/PCI_DSS before you go ahead and do that. A company processing, storing, or transmitting payment card data must be PCI DSS compliant or risk losing their ability to process credit card payments and being audited and/or fined I think

[symfony-users] Re: Webflows in symfony???

2008-05-29 Thread Lee Bolding
LMAO, I was just about to post about sfWorkFlowPlugin! I've been messing around with it for about a week, and I can't make the example work. Anybody had any success? I can get the first page working, the ticket is generated etc - but once I try to submit the form it does nothing :-/ On

[symfony-users] *BEST* validation practice?

2008-05-20 Thread Lee Bolding
Hey all, Can somebody recommend to me a good validation practice? I want to cut down on the amount of duplication in my code. I see the options as : Propel Validations - handy as I can put the validations inside my schema. This is useful for simple validations - min and max chars,

[symfony-users] Re: *BEST* validation practice?

2008-05-20 Thread Lee Bolding
Thanks Nicolas, I haven't looked at 1.1 yet - is it stable and ready for production use yet? On 20 May 2008, at 10:54, Nicolas Perriault wrote: 2008/5/20 Lee Bolding [EMAIL PROTECTED]: Anybody have any thoughts about how best to validate your models AND your forms with minimal (ideally

[symfony-users] Re: sfGuardPlugin DB Layout Question

2008-05-19 Thread Lee Bolding
Make the user_profile-sfGuardUser a 1:1 relationship, then you don't need to do a join - the profile ID will always be the same as the user id. Realistically, are users ever going to have more than 1 profile? On 19 May 2008, at 10:34, kayoone wrote: nobody using sfGuard for complex

[symfony-users] XML Schema and sfAlternativeSchemaPlugin?

2008-05-19 Thread Lee Bolding
Is anybody using XML schema with sfAlternativeSchemaPlugin? Or is it planned to support XML schema's soon? I can't use Propel validators at the same time as sfAlternativeSchemaPlugin at the moment... Ofcourse, adding Propel validators to the YML syntax would also solve this problem :)

[symfony-users] Re: sfGuardPlugin DB Layout Question

2008-05-19 Thread Lee Bolding
, otherwise they wont work. But i will try if that works, still the profile_id will be different from the user_id On 19 Mai, 12:21, Lee Bolding [EMAIL PROTECTED] wrote: Make the user_profile-sfGuardUser a 1:1 relationship, then you don't need to do a join - the profile ID will always be the same

[symfony-users] Re: sfGuardPlugin DB Layout Question

2008-05-19 Thread Lee Bolding
content since thats also a primary key and we have only one profile per user, but that wont solve the problem that i have to do extra joins to get the username, also $article-getSfGuardUser() wont work then either i think. I really wonder how other people do this. On 19 Mai, 16:30, Lee Bolding

[symfony-users] Re: regarding error 500

2008-05-12 Thread Lee Bolding
Ideally, but if the 500 error has happened before Symfony has even been instantiated (eg from a bad .htaccess config), there isn't much you can do. How often do your contact details change I'd have thought this is pretty safe to be hardcoded in a static HTML file... you can always

[symfony-users] I18N/L10N and dates

2008-05-08 Thread Lee Bolding
I seem to be making a real mess of dates in combination with I18N. Dates are stored in the DB in the MySQL date format (-MM-DD). When I retrieve my date from the database using my models getDate (for instance), I use date_format to format the date according to the users culture, which

[symfony-users] [PROBLEM] I18N/L10N and dates

2008-05-08 Thread Lee Bolding
the locale files directly? On 8 May 2008, at 11:07, Lee Bolding wrote: I can see this is my log... May 08 10:56:07 symfony [info] {sfRequest} request parameters array ( 'module' = 'my_module', 'action' = 'showTaskDetails', 'startdate' = '08', '05' = '2008', 'enddate' = '15

[symfony-users] Re: i18n question

2008-05-07 Thread Lee Bolding
But then if there is no target for the key, the output will be Products_Services_Publications, which is pretty ugly. Were you using the same amp; in the key in your template? On 7 May 2008, at 19:08, Whisller wrote: trans-unit id=5 sourceProducts_Services_Publications/source

[symfony-users] Re: Validating a non-required field

2008-05-06 Thread Lee Bolding
In your validate.yml just set required: false for the field On 6 May 2008, at 13:10, Rytis Daugirdas wrote: Hello, Is it possible to define a validator that would be executed with each request, no matter if the field it validates is empty or not? Or is my only option to do that in the

[symfony-users] Re: password validation / sfCompareValidator / group_msg

2008-05-02 Thread Lee Bolding
and that will show when user fills only the second password. (in case you get 2 errors on password2, which i doubt, removing the group_msg from password2 should do the trick) Lee Bolding wrote: Hey gang, I have a form where users can edit their profiles - and it has fields so that the user can change

[symfony-users] Re: Security: How can I restrict an action to the owner only?

2008-05-02 Thread Lee Bolding
There's the sfPropelAuthoredBehavior plugin for this On 2 May 2008, at 17:33, arhak wrote: mmm... thank you, but no, that wasn't the question all subscribers may post, but each subscriber only can edit/delete hes own posts I can dynamically check if he is owning the post he is trying

[symfony-users] password validation / sfCompareValidator / group_msg

2008-05-01 Thread Lee Bolding
Hey gang, I have a form where users can edit their profiles - and it has fields so that the user can change their password. These aren't required though - if they are left blank, the user doesn't want to change their password. The Symfony manual states how to achieve this here :

[symfony-users] Re: PDFs generation and Report Generator integration

2008-04-29 Thread Lee Bolding
On 28 Apr 2008, at 15:54, Nicolas Perriault wrote: On Mon, Apr 28, 2008 at 4:25 PM, Antonio [EMAIL PROTECTED] wrote: We use PDF generation for creating printing reports. If the user requests a report just after he or she changed the information, the report would have to be created on

[symfony-users] Re: Custom Logging..

2008-04-28 Thread Lee Bolding
Not sure about a separate log file, but isn't this what log level INFO is for? eg. sfContext::getInstance()-getLogger()-info($message); On 28 Apr 2008, at 06:15, Richtermeister wrote: Hi all, I'm looking to log some events in my ecommerce application, mainly to have some data on the

[symfony-users] Re: Web user interface for editing translations (i18n)

2008-04-22 Thread Lee Bolding
Sounds interesting - and VERY useful. I'd be happy to help developing an implementation of this :) On 22 Apr 2008, at 11:20, Cédric Sadai wrote: Hey David, What I would do is pretty similar of how Facebook implemented their interactive translation system. I would replace all the calls to

[symfony-users] Re: save()-Method always inserts a new Record and does no updates

2008-04-16 Thread Lee Bolding
Hmm... they're both foreignkeys? Not tried that before maybe that's the problem :-/ On 16 Apr 2008, at 00:54, Daniel Haller wrote: Hi Lee, Are you sure that in your schema.yml you've set both columns to have PrimaryKey=true? Yes, I think so... :-) This is how the generated SQL

[symfony-users] Re: Call to peer method causing blank screen

2008-04-16 Thread Lee Bolding
try setting your error_reporting level to 8191 On 16 Apr 2008, at 17:31, [EMAIL PROTECTED] wrote: Even in dev public static function doReports(Criteria $criteria, $con = null) { $weeks = array(); foreach

[symfony-users] Re: a mixing for all get*

2008-04-04 Thread Lee Bolding
On 4 Apr 2008, at 03:05, hutchic wrote: Lee: Not so much auditing although an interesting idea as well. Basically I was looking to catch and log all fatal errors however it's occured to me that this will not work. We end up with fatal errors in our application (no body's fault but our own)

[symfony-users] sfAlternativeSchemaPlugin broken on Windows?

2008-04-03 Thread Lee Bolding
Hi All, Can somebody verify for me that sfAlternativeSchemaPlugin doesn't work on Windows? I've tried it on my own machine, and another developer here on his machine and it just doesn't seem to build the objects. The same codebase works fine on our Linux servers, and on my Mac. I'm

[symfony-users] Re: Webmail integration

2008-04-01 Thread Lee Bolding
You need to be more specific... How do you want to use Symfony? is it with an existing application or something you're developing yourself? Symfony isn't an application, it's a framework - so 'integration' can be interpreted in many different ways. Without an application there is no

[symfony-users] Re: Webmail integration

2008-04-01 Thread Lee Bolding
- or better still, try the NOCC mailing list :) On 1 Apr 2008, at 14:38, Olivier Revollat wrote: Hi ! I want to use an existing webmail (for example nocc) and use sfGuard to centralize authentication... is it possible ? Thanks. 2008/4/1, Lee Bolding [EMAIL PROTECTED]: You need to be more

[symfony-users] Re: a mixing for all get*

2008-04-01 Thread Lee Bolding
it sounds like a silly idea to me, but I guess you want to be modifying __call, don't you? is this for some kind of audit/logging functionality? On 1 Apr 2008, at 20:57, hutchic wrote: I was wondering if someone could direct me on how to define a mixin for any model method matching get?

[symfony-users] Re: sfGuard forgotten password functionality

2008-03-30 Thread Lee Bolding
to be acceptable. On 29 Mar 2008, at 12:56, Jérôme TEXIER wrote: On 28 mar, 10:48, Lee Bolding [EMAIL PROTECTED] wrote: Currently, if using sfGuard you cannot rely on email address being available for use in forgotten password functionality - as this requires that not only sfGuardUserProfile has been

[symfony-users] Re: sfGuard forgotten password functionality

2008-03-28 Thread Lee Bolding
On 28 Mar 2008, at 09:11, Jérôme TEXIER wrote: Hi all, On 26 mar, 16:50, Nicolas Perriault [EMAIL PROTECTED] wrote: I agree that an 'email' column should exist by default in sf_guard_user table, it's a so common needed information on web apps nowadays. It'd be a bit overkill to manage a

[symfony-users] sfGuard forgotten password functionality

2008-03-26 Thread Lee Bolding
Hi All, This isn't yet fully implemented - and I need this functionality for one of my projects. I could implement it inside of a module, which is how we implemented similar functionality before migrating to sfGuard - BUT - it makes more sense to me if I finish off the missing

[symfony-users] Re: sfGuard forgotten password functionality

2008-03-26 Thread Lee Bolding
up works for us because we've pretty much standardized our sfguardUserProfile table across most of our projects On Mar 26, 7:18 am, Lee Bolding [EMAIL PROTECTED] wrote: Hi All, This isn't yet fully implemented - and I need this functionality for one of my projects. I could implement

[symfony-users] Re: sfGuard forgotten password functionality

2008-03-26 Thread Lee Bolding
Absolutely - 'email' should be added to sf_guard_user schema - it doesn't need to be a required column though (to maintain backward compatibility), a caveat of using password reset functionality should be that email column has been changed to both unique/required. Nicolas's implementation

[symfony-users] Re: Automated testing in symfony

2008-03-10 Thread Lee Bolding
, but not much on automation, right? will look again... On Mar 8, 4:58 pm, Lee Bolding [EMAIL PROTECTED] wrote: There's also an entire chapter in the Symfony manual about testing :p -Original Message- From: symfony-users@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nicolas Perriault

[symfony-users] Re: Automated testing in symfony

2008-03-08 Thread Lee Bolding
There's also an entire chapter in the Symfony manual about testing :p -Original Message- From: symfony-users@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nicolas Perriault Sent: 08 March 2008 08:51 To: symfony-users@googlegroups.com Subject: [symfony-users] Re: Automated

[symfony-users] Re: Shouldn't this group be moderated? To avoid porn?

2008-03-07 Thread Lee Bolding
Some days that's the most interesting thing on the list ;) If the pr0n is getting through (and it bothers you), get a better email provider with decent filtering criteria :p -Original Message- Subject: [symfony-users] Shouldn't this group be moderated? To avoid porn?

[symfony-users] Re: Separete in three phisical layers a symfony project

2008-03-07 Thread Lee Bolding
See my post yesterday regarding Symfony and REST (in the MVC separation thread) :) -Original Message- From: symfony-users@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Georg Sorst Sent: 07 March 2008 14:30 To: symfony-users@googlegroups.com Subject: [symfony-users] Re:

[symfony-users] Re: sfGuard: getUsername in template

2008-03-07 Thread Lee Bolding
What information? Are you remembering to persist anything you change with $sf_user-getGuardUser()-save()? Have you implemented sfGuardUserProfile? You need to tell us exactly what you are trying to do, or we can't help -Original Message- From: symfony-users@googlegroups.com

[symfony-users] Re: MVC separation in Symfony

2008-03-06 Thread Lee Bolding
Fabian, Nice reply - as was your previous one on the same subject :) Have you (or anybody else) considered inverting the View/API paradigm? By that I mean you DON'T create a view - other than REST (or SOAP). You then implement your view as a REST or SOAP client - effectively making your view

[symfony-users] Re: Item-level security

2008-03-06 Thread Lee Bolding
Hmm... yeah - I'd like an answer to this too... At the moment, I extend my model, adding a hasPermission($user) method, like this... public function hasPermission($user) { if ($user-hasPermission(Permissions::EDITOR)) return TRUE; return FALSE; } Permission/Credential could be

[symfony-users] IoC/DI/AOP revisited (and some unit testing too)

2008-03-05 Thread Lee Bolding
Hi All, I'm just about to start a new Symfony project - at the moment it's just a hobby/learning aid. I want to try and make this as 'perfect' as possible - that is, no code smells, using best practices, unit tests etc... I also want to try and get some IoC and DI stuff in there, rather than

[symfony-users] Re: sfUser in Model

2008-03-05 Thread Lee Bolding
I'd look at a way of putting the functionality to get a users votes into the extended USER object, not the vote object. $user-getVotes() would be far cleaner IMO. You can probably make Symfony automatically work out the dirty work with a correctly configured schema.yml - maybe not on the user

[symfony-users] Re: Putting forms in session

2008-03-04 Thread Lee Bolding
Yes, I submit the form - so you can't move onto the next 'tab' until you've successfully validated the current 'tab'. Otherwise you need to find a way of displaying validation errors across multiple tabs - a usability nightmare. It's like a mini wizard with previous, next and save options - but

[symfony-users] Re: Putting forms in session

2008-03-04 Thread Lee Bolding
forms in session Lee Bolding wrote: I don't know about JS validation, I don't use it for the above reasons... (can anybody give me an instance where JS validation *IS* useful?) Improving usability. Obviously you should ever rely on it, but it saves a roundtrip to the server to validate

[symfony-users] Re: anybody using PHP 5.2.5?

2008-03-04 Thread Lee Bolding
the original php file in /usr/bin (e.g.: mv php php_org). these are surely dirty methods, but with these i didn't get any error message about missing creole. Greets Dominik Zitat von amit [EMAIL PROTECTED]: Did you try disabling the optimizer in php.ini? On Mar 4, 4:20 am, Lee Bolding [EMAIL

[symfony-users] Re: Session performance

2008-03-03 Thread Lee Bolding
Don't cookies have a 4096 byte filesize limitation anyway? You'd only be able to use sessions for anything over this limitation. -Original Message- From: symfony-users@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ian P. Christian Sumedh wrote: Is symfony session storing

[symfony-users] Re: Putting forms in session

2008-03-03 Thread Lee Bolding
Symfony handles forms and validation very differently to Struts. You don't need to create a formbean and a formaction. Take a look at the forms section in the Symfony manual http://www.symfony-project.org/book/1_0/10-Forms Forms and validation are much simpler in Symfony :) -Original

[symfony-users] Re: Credentials for fields and validation

2008-03-03 Thread Lee Bolding
is not a part of validate.yml it is inside the generator.yml Lee Bolding wrote: Just an idea... This is something I've quickly thrown together, not tested - so it's probably got a few errors in it, but should be relatively simple to fix J Let me know if you get it working J ?php class

[symfony-users] anybody using PHP 5.2.5?

2008-03-03 Thread Lee Bolding
One of my clients has RHEL4 up2date running - it's just installed PHP 5.2.5, and now all the Symfony applications are broken with the Creole/creole.php not found error. Not sure if this is due to PHP 5.2.5 in general, or 5.2.5 in conjunction with Plesk... Previously it was 5.2.3, which worked

[symfony-users] Re: anybody using PHP 5.2.5?

2008-03-03 Thread Lee Bolding
OK, thanks to everybody so far (at this late hour!) - anybody using Plesk can confirm that is what is causing the error? I'm referring to the bug at the end of this thread http://www.symfony-project.org/forum/index.php/mv/msg/10245/45164/ If that is the case, it looks like I'm going to have to

[symfony-users] Re: Symfony @ DreamHost?

2008-02-25 Thread Lee Bolding
luck elsewhere. On Feb 22, 2:04 am, Lee Bolding [EMAIL PROTECTED] wrote: Has anybody on the list managed to get an application running on Symfony at DreamHost? I've frozen one of my projects and deployed it, and it *mostly* works... I think it's failing due to the way the rewriting is working

[symfony-users] Symfony @ DreamHost?

2008-02-22 Thread Lee Bolding
Has anybody on the list managed to get an application running on Symfony at DreamHost? I've frozen one of my projects and deployed it, and it *mostly* works... I think it's failing due to the way the rewriting is working (or not working). I've googled around and found a bunch of posts stating

[symfony-users] Re: Symfony @ DreamHost?

2008-02-22 Thread Lee Bolding
a trailing slash at the end of a .php request, like /index.php/ or /public_staging.php/ - the only answer, I find, is to run it with no_script_name enabled. Thanks, Elliott On 22/02/2008, at 11:04 PM, Lee Bolding [EMAIL PROTECTED] wrote: Has anybody on the list managed to get

[symfony-users] Re: adding extra to sf_gurad_group

2008-02-14 Thread Lee Bolding
sf_guard_group_id: { type: integer, foreignTable: sf_guard_group, foreignReference: id, primaryKey: true, required: true, onDelete: cascade } would be better. You may also want to add a loadLazy: true in there too J From: symfony-users@googlegroups.com [mailto:[EMAIL PROTECTED] On

[symfony-users] Symfony developers in Cambridge?

2008-02-13 Thread Lee Bolding
Hi All, I'm currently working at a contract role in Cambridge, UK. The client is trying to find another Symfony developer to join the team, but is having difficulty finding them. Rates are good (for PHP), usual skills required (OO PHP5, MySQL, XHTML, XML, JavaScript) If you're a Symfony

[symfony-users] Re: Symfony developers in Cambridge?

2008-02-13 Thread Lee Bolding
basis. Example symfony sites: http://www.clubland.fm/ http://www.2fast2soon.com/ http://www.nomoreliveswasted.com/ I am PHP5 zend certified and have vast amount of development experience. If I can be of any help then let me know. Kind regards Alistair On 13/02/2008, Lee

[symfony-users] Re: Criteria Question

2008-02-13 Thread Lee Bolding
Haven't tried this, but couldn't you just cast CurrencyPeer::MIN_AFFILIATE_PAYOUT to an integer? $c = new Criteria() ; $c-add(AffiliateCommissionBalancePeer::TOTAL , (int) CurrencyPeer::MIN_AFFILIATE_PAYOUT, Criteria::GREATER_EQUAL ) ; $payouts =

[symfony-users] Re: sfShoppingCart

2008-02-12 Thread Lee Bolding
Maybe a bit clunky, but if you store sessions in the database, you could use an onDelete cascade and a trigger to rollback items in the users cart when the session is deleted... not suggesting this to be implemented IN sfShoppingCart, but for the specific implementation this could be a reasonably

[symfony-users] Re: How popular is Symfony ?

2008-02-12 Thread Lee Bolding
It says 'Based on real world popularity' but doesn't explain how this was derived. Randomly, by the looks of things. Ruby on Rails is the most popular? Maybe the most popularly talked about, but certainly not the most popular in deployment (I'd hazard a guess at Struts or Spring). How on earth

[symfony-users] Re: Django

2008-02-07 Thread Lee Bolding
Only if you intend to upgrade your version of Python just for the hell of it. If your application works, don't fix what isn't broken :) -Original Message- From: symfony-users@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kdizza Sent: 07 February 2008 05:25 To: symfony users

[symfony-users] Re: Django

2008-02-06 Thread Lee Bolding
On a similar note - has anybody experimented with Grails? I'm going to have a play with it over the weekend... -Original Message- From: symfony-users@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rihad Sent: 06 February 2008 07:17 To: symfony users Subject: [symfony-users]

[symfony-users] Re: (SQL) exception handling + locking

2008-02-06 Thread Lee Bolding
Isn't it more flexible that retrieveByPK *DOESN'T* return an exception? This allows you to throw your own exception if you want or deal with it in whatever way you see fit. I believe there is an optimistic locking plugin... but remember HTTP is stateless :) -Original Message- From:

[symfony-users] Re: [Possible Spam][symfony-users] Re: Large Recordset running out of memory....

2008-01-31 Thread Lee Bolding
running out of memory On Jan 31, 2008 11:18 AM, Lee Bolding [EMAIL PROTECTED] wrote: Is that official enough? I don't know. I like the idea having something QA validated for something as crucial as the ORM layer. ++ -- Nicolas Perriaulthttp://www.clever-age.com Clever Age - conseil en

[symfony-users] Re: Visual modeling tools for Doctrine?

2008-01-29 Thread Lee Bolding
There's a list of UML tools here : http://galaxy.andromda.org/docs/case-tools.html Happy hunting - but remember, if you don't find what you want - necessity is the mother of invention :) Lee Bolding w: http://www.leesbian.net -Original Message- From: symfony-users@googlegroups.com [mailto

[symfony-users] Re: Doctrine or Propel 1.3

2008-01-25 Thread Lee Bolding
to port some of the existing plugins to Doctrine (particularly the ActAs... plugins). Thanks all :) Lee Bolding e: [EMAIL PROTECTED] w: http://www.leesbian.net -Original Message- From: symfony-users@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of drmikecrowe Sent: 25 January 2008 03

[symfony-users] Re: Doctrine or Propel 1.3

2008-01-25 Thread Lee Bolding
objects, otherwise I'll never upgrade my plugins because I'll have to make changes to those too. Lee Bolding w: http://www.leesbian.net -Original Message- From: symfony-users@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Smith Sent: 25 January 2008 15:27 To: symfony

[symfony-users] Re: who's trying zend for eclipse?

2008-01-24 Thread Lee Bolding
I can never get on with Eclipse, it just rubs me up the wrong way - too slow, bloated and uses far too many resources. FWIW, I use Komodo in Winblowz and either TextMate or TextWrangler in OS X. A PHP module for IDEA would be awesome though :) Lee Bolding w: http://www.leesbian.net

[symfony-users] Re: Sharing data between actions and components

2008-01-19 Thread Lee Bolding
Not sure exactly what you mean, but look in the documentation regarding partials - it sounds like this will solve your problem :) Lee Bolding w: http://www.leesbian.net -Original Message- From: symfony-users@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Balaji Srinivasan Sent

[symfony-users] Symfony 1.1 Questions / IoC / Dependency Injection

2008-01-17 Thread Lee Bolding
$object)) Is anybody currently using any kind of IOC framework with Symfony? Lee Bolding w: http://www.leesbian.net --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony users group. To post to this group, send

[symfony-users] Re: Symfony 1.1 Questions / IoC / Dependency Injection

2008-01-17 Thread Lee Bolding
adoption. Is anybody out there using DI/IOC with Symfony? In a live project? Lee Bolding w: http://www.leesbian.net -Original Message- From: symfony-users@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tristan Rivoallan Sent: 17 January 2008 15:57 To: symfony-users@googlegroups.com

[symfony-users] Re: Listing your page as using symfony a security issue?

2008-01-17 Thread Lee Bolding
Yeah, are the OWASP guidelines any good here? http://owasp.cvs.sourceforge.net/*checkout*/owasp/guide/current%20draft.pdf I'd be happy to assist with any work towards creating functionality to harden the framework :) Lee Bolding w: http://www.leesbian.net -Original Message- From

[symfony-users] Re: Ultimate development machine :)

2008-01-15 Thread Lee Bolding
these will be fixed pretty soon. Lee Bolding w: http://www.leesbian.net -Original Message- From: symfony-users@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Keith Sent: 15 January 2008 03:28 To: symfony users Subject: [symfony-users] Re: Ultimate development machine :) Pretty neat. Do

[symfony-users] Re: Ultimate development machine :)

2008-01-15 Thread Lee Bolding
beating than Apples offering ;) TBH, I'm disappointed with what they've produced, which is what I was expecting (and why I made this thing to start with). Lastly, you know what else I've got? I right trackpad button and a # key ;) Lee Bolding w: http://www.leesbian.net -Original Message

[symfony-users] Ultimate development machine :)

2008-01-11 Thread Lee Bolding
Hi guys, This isn't really Symfony related, but we were having discussions about development machines and environments a while back. I thought you may like to see my current dev machine :) Details are here : http://www.leesbian.net/2008/01/10/an-ultra-portable-hackbook-pro/ At this time NOT

[symfony-users] Re: Symfony doesn't like DateTime

2008-01-10 Thread Lee Bolding
It's not Symfony, it's Propel. I've come across this problem before - you can get around it in two ways : 1) use created_at, updated_at etc and have no default time, Symfony will take care of everything for you 2) change your default time to something other than 00-00- 00:00:00 as this

[symfony-users] Re: any way to access getisXmlHttpRequest preExecute?

2008-01-10 Thread Lee Bolding
- From: symfony-users@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ian P. Christian Sent: 10 January 2008 14:18 To: symfony-users@googlegroups.com Subject: [symfony-users] Re: any way to access getisXmlHttpRequest preExecute? Lee Bolding wrote: I've got a custom class that extends

[symfony-users] Re: any way to access getisXmlHttpRequest preExecute?

2008-01-10 Thread Lee Bolding
: [symfony-users] Re: any way to access getisXmlHttpRequest preExecute? Hi, you have to use $this-getRequest()-isXmlHttpRequest() there is no get Prefix for this function. Greetings Claas Lee Bolding schrieb: Hey people, Anybody know a way I can access sfWebRequest's getisXmlHttpRequest from

[symfony-users] any way to access getisXmlHttpRequest preExecute?

2008-01-08 Thread Lee Bolding
Hey people, Anybody know a way I can access sfWebRequest's getisXmlHttpRequest from a class that extends sfActions? I've got a custom class that extends sfActions, and in it's preExecute method I want to disable layout for any AJAX requests. I'm trying to execute the following :

[symfony-users] Re: sfGuard questions

2008-01-03 Thread Lee Bolding
PROTECTED] On Behalf Of Lee Bolding Sent: 02 January 2008 17:02 To: symfony-users@googlegroups.com Subject: [symfony-users] Re: sfGuard questions Hi, Thanks for the clarification - I seem to have got something working now :) Just having some difficulty with conflicting/overriding settings in app/config

[symfony-users] sfGuard questions

2008-01-02 Thread Lee Bolding
Hey all, I'm victim of one of those non-standard, quick-fixes that became dogma that I mentioned the other day. I'm trying to remove all of the custom authorization/authentication and ACL stuff from an application and replace it with SfGuard, so that I have a more easily maintainable

[symfony-users] plugins - WTF!?

2008-01-02 Thread Lee Bolding
Hey all, I've just installed two plugins - PropelActAsCommentableBehavior and SfContactGrabberPlugin. They seem to have BOTH replicated my entire project tree into web/ as part of the installation(!?). Surely, this isn't correct? Currently running on WAMP Server (1.7.4)... perhaps an error

[symfony-users] Re: sfGuard questions

2008-01-02 Thread Lee Bolding
the concepts together. Hope this helps. - Piers On 02/01/2008, at 9:12 PM, Lee Bolding wrote: Hey all, I'm victim of one of those non-standard, quick-fixes that became dogma that I mentioned the other day. I'm trying to remove all of the custom authorization/authentication and ACL stuff from

[symfony-users] Re: Approaches to handling SSL?

2007-12-31 Thread Lee Bolding
Why not use sfSSLRequirementPlugin, and if the bugs really are a concern, fix them and contribute the fixes? ;) Why reinvent the wheel? (or invent your own 'standard' that will be deprecated very shortly?). As always - be pragmatic :) On 31 Dec 2007, at 15:46, Charley Tiggs wrote: Hello

[symfony-users] Re: Symfony Performance ?

2007-12-27 Thread Lee Bolding
I think you should revisit the performance pages in the Symfony wiki. Follow the links to the performance articles from Yahoo! Optimize your frontend first, it has the most benefit, and is cheaper. Optimize your backend last, it's more expensive, and typically yields only about 10%

[symfony-users] Re: symfony on other web servers?

2007-12-19 Thread Lee Bolding
I'm patiently waiting until Quercus will allow me run Symfony inside of Resin :) -Original Message- From: symfony-users@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Eno Sent: 19 December 2007 19:27 To: symfony users Subject: [symfony-users] Re: symfony on other web servers?

[symfony-users] Re: Large Recordset running out of memory....

2007-12-17 Thread Lee Bolding
Dude, try the Lucene plugin :) Index your records with Lucene, give your database a break :) -Original Message- From: symfony-users@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of James Sent: 17 December 2007 09:20 To: symfony-users@googlegroups.com Subject: [symfony-users]

[symfony-users] Re: Going away from credentials in generator.yml's

2007-12-11 Thread Lee Bolding
You could have easily done this if the sfYaml class had functions to WRITE yaml. This is something I've considered whilst looking at extending the sfSimpleBlog plugin - creating a YAML config file for each blog, rather than storing the config for each blog in a DB. Otherwise, you could maybe do

[symfony-users] Re: Asset helper for generic link?

2007-12-07 Thread Lee Bolding
(). Or create your own set of helpers. Or create the helper and add it to trac and indicate you want it to be considered for inclusion. Charley On Dec 6, 2007, at 9:28 AM, Lee Bolding wrote: Speed isn't really a concern - I'm more concerned with readability, maintainability

[symfony-users] Asset helper for generic link?

2007-12-06 Thread Lee Bolding
Hey people, Am I missing something amazingly obvious here? I'm trying to make a link to a regular, non-routed URI (like a PDF etc) that resides in /web on my server. There doesn't seem to be any helper to create such a link (as far as I can tell). link_to is routed, as is url_for. Seems like

[symfony-users] FloodControlPlugin

2007-11-26 Thread Lee Bolding
What is the state of this plugin? I've issued a symfony plugin-install http://plugins.symfony-project.com/sfPropelFloodControlBehaviorPlugin as per the docs in the Wiki and I just get a 404 error... --~--~-~--~~~---~--~~ You received this message because you are

[symfony-users] required PHP5 version?

2007-11-22 Thread Lee Bolding
Hi All, I've just been setting up a new Symfony environment on a FC4 machine, and noticed that the FC4 shipped version of PHP5 (5.0.4) isn't high enough for Symfony (1.0.8) to run - Symfony seems to need at least 5.1.0 as Pake uses the date_default_timezone_set function which wasn't introduced

[symfony-users] Re: Credit Card processing

2007-11-05 Thread Lee Bolding
If you're using credit card payments for a service that requires an ongoing subscription, make sure you chose a gateway provider whose API provides a recurring billing method. You won't be able to store card details and resubmit them on renewal dates unless you are PCI compliant

[symfony-users] Re: Anyone using MAMP

2007-11-01 Thread Lee Bolding
On 1 Nov 2007, at 13:07, Tom Haskins-Vaughan wrote: I'm intrigued. Tell me more... Umm... there isn't much more to tell. This is the setup I currently have - I have the MAMP stack installed locally on my MacBook Pro for quick-n-dirty testing, and use TextMate for editing. Unfortunately,

[symfony-users] Re: Anyone using MAMP

2007-10-28 Thread Lee Bolding
Hey all, I just missed joined the list, so missed the beginning of this conversation. FWIW, I'm using MAMP 0.9 and Symfony works great (although you need to mess around to get PEAR installed). You have a specific problem with the MAMP stack? I'd be happy to help :) On 28 Oct 2007, at

<    1   2   3   4