[symfony-users] Re: spl support: undefined function spl_autoload_register()

2009-10-01 Thread ProdigitalSon

I assume you restarted the server? Did you clear symfony cache?

On Sep 30, 4:21 pm, lorenx lor...@gmail.com wrote:
 hi all,
 i'm new to symfony.

 during the installation process, from the command line:
 # php lib/vendor/symfony/data/bin/symfony -V
 Fatal error: Call to undefined function spl_autoload_register() in /
 lan/http/symfony/lib/vendor/symfony/lib/autoload/
 sfCoreAutoload.class.php on line 69

 so i recompiled the php package with spl support and then:
 # php -m
 [PHP Modules]
 calendar
 ctype
 curl
 date
 dba
 dom
 exif
 ftp
 gd
 gettext
 libxml
 mbstring
 mcrypt
 mysql
 mysqli
 ncurses
 openssl
 pcre
 Reflection
 session
 SPL
 standard
 xml
 zlib

 but when i typed in the browserhttp://localhost/webi received again:
 Fatal error: Call to undefined function spl_autoload_register() in /
 lan/http/symfony/lib/vendor/symfony/lib/autoload/
 sfCoreAutoload.class.php on line 69

 what to do now?

 thanks a lot!
--~--~-~--~~~---~--~~
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, send email to 
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Component- Templating

2009-09-30 Thread ProdigitalSon

On Sep 22, 4:14 am, Simone Fumagalli simone.fumaga...@gmail.com
wrote:
 It's not possible to plug it somehow in 1.3 so that I can easily port
 my templates to 2.0 in the future ?


If you get around to plugging it in to 1.3 id love to see a simple how-
to since its on my list of personal projects to pursue once i escape
my current Zend Hell ;-)
--~--~-~--~~~---~--~~
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, send email to 
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: what is the best way to enable JQuery in Symfony?

2009-03-08 Thread prodigitalson


 Hmm. Okay. I copy and pasted what you have here to /apps/frontend/
 config/view.yml.  I still get nothing in layout.php. And I mean, I get
 a blank line, no HTML.

 Again, I'm trying to avoid setting a value in any action.

Then youve done something wrong because that is the way its done. Did you
make sure youre indentation was ok in the view.yml (especially since you
cp'ed)?

Do you have a view.yml set up on the module youre testing with? Does it
have values for the the javascripts key? they may be overriding it. Also
did you make sure you got rid of any of your hacks that might influence
this?


--~--~-~--~~~---~--~~
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, send email to 
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: form won't work, no error messages, what do I do?

2009-03-08 Thread prodigitalson



 form action=?php echo url_for('newnews/update'.(!$new_news-isNew
 () ? '?id='.$new_news-getId() : '')) ? method=post ?php $form-
isMultipart() and print 'enctype=multipart/form-data ' ?


Youre missing the name attribute. Dont know if thats the only issue for
sure but that is definite from what you posted above.


--~--~-~--~~~---~--~~
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, send email to 
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: 1.1 Forms One-to-Many

2008-09-12 Thread ProdigitalSon

Nevermind *DUMB* question. I need to implement an AddArticle on the
Issue form, or switch it over to a M2M.

Sorry... thanks!

On Sep 12, 10:56 am, ProdigitalSon [EMAIL PROTECTED]
wrote:
 Does propel:build-forms not have support for 1-n relationships or am i
 doing something wrong?

 For example:
 code
 propel:
   article:
 id:
 title: varchar(255)
 issue_id:
   issue:
 id:
 date: date
 /code

 This schema does not generate the logic in BaseIssueForm/IssueForm to
 handle associating/saving multiple Articles (which i would think would
 be very similar to the logic for a M2M relationship using
 sfWidgetFormPropelSelectMany by default).

 Am I dosing something wrong or do i have to craft this all myself?
--~--~-~--~~~---~--~~
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, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] sfGuardAuth redirecting to favicon

2008-09-11 Thread ProdigitalSon

Im not sure whats causing this but my signin action action keeps
redirecting to favicon.ico. It would seem that somehow the referrer is
getting set to this, but i cant figure out why or where in the stack
it is occurring. This is also a recent problem in this one project.
But i havent made any changes recently that effect the user, actions,
or routing for sfGuard.

Has anyone else ever seen this behavior?
--~--~-~--~~~---~--~~
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, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: Embedded Forms for Related Objects

2008-09-04 Thread ProdigitalSon

Ok let me just say I feel REALLY dumb. I spent some time (not long,
but longer than I should have) trying to figure out an appropriate way
to do this (all the while not noticing the embedded profile fields in
the form for some reason). However when I began testing my method I
realized this functionality is already provided by default in the case
of sfGuard! I havent taken the time to review the logic yet but I plan
to, as this will often need to be implemented for other models. I
would suggest anyone else having this issue might want to start here
as well :-)

On Sep 2, 4:49 pm, ProdigitalSon [EMAIL PROTECTED] wrote:
 What Im trying to do is combo sfGuardUser and its related UserProfile
 into one form for account registration. The Form creation and
 embedding is all pretty straight foward. What Im having trouble with
 is how to go about setting the sf_guard_user_id. Does anyone have any
 tips on how theyve implemented this or something similar? Also,
 ideally Id like to have most of the setup logic contained in a form
 class (like UserRegistrationForm) instead of in the action.

 Thanks!

 -ant
--~--~-~--~~~---~--~~
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, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~--~~~~--~~--~--~---



[symfony-users] Re: off topic: svn gui for OS X

2008-05-02 Thread prodigitalson



I feel the same as Jon. If you have a really complex application Eclipse can be invaluable for the automatic API hinting, code versioning (the merge/diff editor in Subclipse is brillant!), debug, and general code inspection. But if what youre doing is fairly lightweight like theming a cms or building something out of Symfony plugins or something on this level Textmate is jsut too efficient. Eclipse doesn't stand a chance. Ive taken to using Textmate for things where Im jsut theming or making a simple application. When it comes to writing plugins or working on something huge I generally break out Eclipse. When i switch to 1.1 I'll also probably use Eclipse exclusively at first to help me learn all the new stuff as I go and remind me of the API changes.
 

On Fri May  2 07:42 , 'Jonathan Wage' <[EMAIL PROTECTED]> sent:
I like it b/c it is so powerful yes so lightweight. It has the best shortcuts for being efficient in your editor, it has some great bundles which integrate with svn and lots of other stuff.

I recently gave Eclipse PDT another try because I really liked the ability to walk through the code execution with xdebug, but the amount I need that feature is not everyday, so it does not justify using Eclipse full time. Plus, I had issues with Eclipse crashing, so I went back to textmate as my primary editor.


- Jon

On Fri, May 2, 2008 at 9:26 AM, Jonathan Franks [EMAIL PROTECTED] wrote:





 but despite being totally in love with Eclipse I still like Textmate

 better

exciting! but what is it that makes textmate so popular?





Ant Cunningham wrote:

 Yeah but despite being totally in love with Eclipse I still like Textmate

 better. The SVN tmbundle doesn't hold a candle to Subclipse though... that

 much is true.





 On 5/2/08 8:45 AM, "Thomas Rabaix" [EMAIL PROTECTED] wrote:





 



 Well, Eclipse plugin is very good, far more evoluate than Textmate bundle



 



 On Fri, May 2, 2008 at 2:38 PM, Ant Cunningham

 [EMAIL PROTECTED] wrote:



 Well there is a textamte bundle for SVN too. I had forgotten about that.









 On 5/2/08 8:32 AM, "Jonathan Franks" [EMAIL PROTECTED] wrote:





 I use eclipse on the PC but I've heard such good things about TextMate

 that I'm playing with that at the moment.





 Thomas Rabaix wrote:



 Eclipse has a nice svn plugin  Eclipse is also a very good IDE to

 handle symfony project



 Thomas



 On Fri, May 2, 2008 at 1:14 PM, Nicolas Perriault [EMAIL PROTECTED]

 wrote:





 On Fri, May 2, 2008 at 12:42 PM, Jonathan Franks [EMAIL PROTECTED]

 wrote:





 i'm moving over to OS X and I was wondering what svn gui people

 recommend?? I've been using tortoiseSVN on my pc.



 If you got a bit of time, you can learn using svn through the command

 line interface, it's not that hard and you always know what you are

 doing :)



 ++



 --

 Nicolas Perriault

 http://prendreuncafe.com/blog

 GSM: 06.60.92.08.67





























 











-- 
Jonathan Wage
http://www.jwage.com
http://www.centresource.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 unsubscribe from this group, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en  -~--~~~~--~~--~--~---



[symfony-users] Re: Symfoclipse?

2007-11-28 Thread prodigitalson


yeah i sent im a message as well and havent gotten a reply either;

 

On Wed Nov 28 06:39 , 'Simon Roby' <[EMAIL PROTECTED]> sent:



I was curious about that, so I asked him by email yesterday. Still


waiting for an answer. I'll let the list know the answer if/when I get


it.





On 11/27/07, Ant Cunningham [EMAIL PROTECTED] wrote:





 Well the question is how much is he aiming for for a commercial license? I


 havent tried it out yet but I might be willing to pay around 15-25 USD for a


 good YAML editor and more advanced cli integration in Eclipse.











 On 11/27/07 4:13 PM, "Tristan Rivoallan" [EMAIL PROTECTED] wrote:





 


  On Nov 27, 2007 10:00 PM, Ant Cunningham [EMAIL PROTECTED] wrote:


 


 


  So i was on my search for a decent YAML setup for Eclipse after getting


  annoyed with yamlak again and i found this... did i miss an announcment or


  have the devs not posted to the list for some reason?


 


  http://www.eclipseplugincentral.com/Web_Links-index-req-viewlink-cid-1120.ht


  ml


 


  interesting, but the licence will not suit most of symfony users :


 


  "This software is licensed under a 'free for non-commercial users' license.


  You can use the software exclusively at home for non-commercial or


  job-related purposes."


 


  http://noy.cc/symfoclipse/license.html


 


  ++


  tristan








-- 


- SR















--~--~-~--~~~---~--~~
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, send email to [EMAIL PROTECTED]  For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en  -~--~~~~--~~--~--~---