Re: [symfony-users] error installing sfDoctrineGuardPlugin

2010-03-19 Thread Marius Rugan
into the 5.2 line so i can't answer that. have fun _ Marius Rugan [image: Google Talk:] mariusrugan [image: Skype:] marius.rugan [image: Linkedin] http://www.linkedin.com/in/mariusrugan[image: del.icio.us] http://delicious.com/mrugan[image: Twitter

[symfony-users] Re: symfony based shopping carts - hate to reinvent the wheel

2009-08-20 Thread Marius Rugan
http://code.google.com/p/sfshop/ saw last commit from owner in march. On Wed, Aug 19, 2009 at 10:58 PM, Davinder Mahal davin...@mahal.org wrote: Hello everyone, It's been a while since I've posted. I wanted to find out if there are any particular resources on symfony shopping carts. I'd

[symfony-users] Re: Problems installing Symfony 1.2.7 on Ubuntu 9.04

2009-07-10 Thread Marius Rugan
try to upgrade pear pear upgrade-all and channels pear update-channels also i found very useful using pear in a controllable manner: i've deployed pear into /usr/local/pear-local/ keep in mind to modify php.ini include_path for both cli and apache see /etc/php5/

[symfony-users] Re: e-commerce solution under symfony

2009-06-29 Thread Marius Rugan
be plenty of those pages. Alecs On Mon, Jun 29, 2009 at 12:29 PM, Lee Bolding l...@leesbian.net mailto:l...@leesbian.net wrote: On 28 Jun 2009, at 00:13, Marius Rugan wrote: having tried implementing magento, two times until i dropped it out completely, i can

[symfony-users] Re: e-commerce solution under symfony

2009-06-27 Thread Marius Rugan
Hi Antoine, there is http://code.google.com/p/sfshop/ i've signed up on the google group / took a peak into the code. imho still needs a lot of documentation and participation. i've test drove it 4-5 months ago but i was too keen on getting things done for a small project so i used a small

[symfony-users] Re: e-commerce solution under symfony

2009-06-27 Thread Marius Rugan
slow, can we do better??? sure? see my post about sympal performance. As I said, my very own 2 cents. Pablo On 6/27/09, Marius Rugan mariusru...@gmail.com wrote: Hi Antoine, there is http://code.google.com/p/sfshop/ i've signed up on the google group / took a peak

[symfony-users] Re: GUAU! eclipse galileo. PDT2.1

2009-06-24 Thread Marius Rugan
i see they've finally fixed code assist @var problem. 257481 normal g...@zend.com Code Assist Code Assist dropdown does not populate the data types of PHP Doc ( @var) except the fact that eclipse+PDT it's a memory eating hog when developing up from a medium sized project and trying to remote

[symfony-users] Re: Overriding plugin schema with doctrine and sf 1.2

2009-06-18 Thread Marius Rugan
| symfony-project.org On Wed, Jun 17, 2009 at 9:17 AM, Marius Rugan mariusru...@gmail.com wrote: It seems that there is a fault in: sfDoctrinePlugin's _checkForPackageParameter lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/lib/task/sfDoctrineBuildModelTask.class.php line 64

[symfony-users] Overriding plugin schema with doctrine and sf 1.2

2009-06-17 Thread Marius Rugan
Hi all, In March, Jonathan Wage wrote: Add this to the top of the plugin: package: sfDoctrineGuardPlugin.lib.model.doctrine This package option is automatically added to the schema files found in plugins so that the models are all generated in the right places. When you copy that schema file you

[symfony-users] Re: Overriding plugin schema with doctrine and sf 1.2

2009-06-17 Thread Marius Rugan
/doctrine folder? Jonathan H. Wage (+1 415 992 5468) Open Source Software Developer Evangelist sensiolabs.com | jwage.com | doctrine-project.org | symfony-project.org On Wed, Jun 17, 2009 at 7:32 AM, Marius Rugan mariusru...@gmail.comwrote: Hi all, In March, Jonathan Wage wrote: Add

[symfony-users] Re: Overriding plugin schema with doctrine and sf 1.2

2009-06-17 Thread Marius Rugan
, 2009 at 4:16 PM, Marius Rugan mariusru...@gmail.com wrote: Hi, yes, i'm placing it inside project/config/doctrine/sfDoctrineGuardPlugin.schema.yml package: sfDoctrineGuardPlugin.lib.model.doctrine sfGuardGroup: ...rest of the original schema.yml from sfDoctrineGuardPlugin goes here

[symfony-users] Re: Problem in firefox

2009-04-07 Thread Marius Rugan
make sure your login and welcomemsg divs have ids. they are working in IE because IE is stupid enough to mistake name attributes by ids instead of throwing an error on the principle yeah it works that way too. yeah and make sure you don't have the id=login as name somewhere else. e.g. div

[symfony-users] sfWidgetFormSchemaFormatter, generateLabel()

2008-12-22 Thread Marius Rugan
renderContentTag()a combination like *__($widgetId._HELP)* that would render the i18n key there. anyone had this need before and accomplished in some other way? please advice below some sample code, thanks Marius Rugan class RegisterForm extends sfGuardUserForm { ... $formatter

[symfony-users] Re: htaccess problem - can't access /admin - only /admin/index.php

2008-12-11 Thread Marius Rugan
Hi, i think the best practice is to have a frontend app and a backend app generated in your project and play with symfony routing (.yml) what you are trying to achieve is breaking the MVC entry point which is index.php your 404 errors come up because: RewriteRule ^(.*)$ index.php [QSA,L] which

[symfony-users] Re: download a zip file, the server

2008-12-10 Thread Marius Rugan
Hi, seems a content-type error: try: header(Content-Disposition: attachment; filename=.$FileName); header(Content-Type: binary/octet-stream/force-download); header(Content-Transfer-Encoding: binary); header(Content-Length: .strlen($FileName)); header(Pragma: no-cache); On Wed, Dec 10, 2008 at

[symfony-users] Re: id for a record in sf_guard_user

2008-12-10 Thread Marius Rugan
Hi, you can see it for yourself (what methods and what attributes has the object) echo pre; //print_r or var_dump depending on //if you prefer latte or expresso :) print_r($this-getUser()-getGuardUser()); echo /pre; //do a clean exit exit(); On Thu, Dec 11, 2008 at 8:10 AM, mapelo [EMAIL

[symfony-users] Re: autocompletion and syntax highlighting for symfony?

2008-12-08 Thread Marius Rugan
You could also try Komodo Edit (the free editor), just add symfony dir to ProjectLanguagesPhp directories. I found it useful and rapid when i'm not debugging. Since Zend Studio doesn't play with xdebug, i use Komodo IDE for debugging sessions. What i miss from Zend Studio is the debug next page

[symfony-users] Re: Error in My First Project (1.2)

2008-12-07 Thread Marius Rugan
what would be the error at database configuration failed ? On Sun, Dec 7, 2008 at 4:26 PM, Sid Ferreira [EMAIL PROTECTED] wrote: btw, I did this: changed the 'executeNew' to: $comment = new BlogComment(); $comment-setBlogPostId($this-getRequestParameter('post_id')); $this-form = new

[symfony-users] Re: Error in My First Project (1.2)

2008-12-07 Thread Marius Rugan
] wrote: the command line seem to be wrong, try: php symfony configure:database mysql:host=localhost;dbname=mydb username password On Sun, Dec 7, 2008 at 14:25, Marius Rugan [EMAIL PROTECTED] wrote: what would be the error at database configuration failed ? On Sun, Dec 7, 2008 at 4:26