[symfony-users] Web shop based on symfony

2010-02-07 Thread apm
I need write some small online web store. Pretty simple, multiple categories, subcategories, basket, delivery status, discounts, personal accounts, in such a way. Does anybody know plugin or some skeleton of project open-sourced and which used syfony for this? -- You received this message

Re: [symfony-users] Web shop based on symfony

2010-02-07 Thread apm
Alexandru-Emil Lupu : Try sfshop... sent via htc magic Its for 1.2. After a day playing with sfShop, i cant switch it to 1.4. And found some problems. But tnx, its better than nothing. Now i have 2 new Q: 1. Exists something else like webshop in symfony? 2. Is it a good pattern do all wo

Re: [symfony-users] Re: sfShop demo?

2010-02-09 Thread apm
Andreas Nyholm : Hi. If you are willing to work on sfShop, please let me know. sfShop is not dead, just asleep :) I am interested in sfShop, because have similar task. And i ready to share some code for open-source. But problem is , i am beginner in symfony, not sure that i am will be use

Re: [symfony-users] How to specify connection port in databases.yml using Doctrine

2010-02-10 Thread apm
May be? dsn: 'mysql:host=localhost;dbname=xXxxXx;port=' username: xXXx password: XXx -- 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

[symfony-users] Re: Use event dispatcher on asynchronous mode

2010-04-09 Thread apm
Where is async here? On 9 апр, 15:00, romain godefroy wrote: > adapted from this about asynchronous http post > :http://petewarden.typepad.com/searchbrowser/2008/06/how-to-post-an.html -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com

[symfony-users] Search in text files.

2010-04-21 Thread apm
I have a lot of files (csv, txt etc) not in database but in file system. Is it possible integrate it with some search engine? All what i want its filename as answer on search by some key. -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.co

[symfony-users] Re: Search in text files.

2010-04-22 Thread apm
Strange plugin. Cant understand how its works ./symfony lucene-init myapp Task "lucene-init" is not defined. -- 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] Re: Search in text files.

2010-04-22 Thread apm
./symfony plugin:list Installed plugins: symfony1.4.4-beta # pear.symfony- project.com (symfony) sfLucenePlugin 0.1.6-beta # pear.symfony- project.com (symfony) sfGuardPlugin 4.0.0-stable # plugins.symfony- project.org (sym

[symfony-users] Re: Search in text files.

2010-04-26 Thread apm
just reinstall all from empty. The same result. Somebody help me ... -- 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 gro

[symfony-users] Re: Introducing Vespolina - the new sf2 based e-commerce platform

2011-01-27 Thread apm
Sure, share, its interesting. On 26 янв, 22:56, Justen Doherty wrote: > I've made a start on a personal ecommerce project in symfony 1.4 - at the > moment its just got categories/subcategories with a photo library in the > backend.. but i've been coding this in my spare time at home, if anyone is

[symfony-users] subscribe

2011-02-18 Thread apm
-- 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 unsubscribe f

[symfony-users] latest sandbox broken?

2011-02-18 Thread apm
I have working sandbox at rev * 9751685 No my code, just hello bundle. After update to HEAD (22cd0d6) i have error in hello_bundle: Fatal error: Class 'Symfony\Component\HttpKernel\Profiler\SqliteProfilerStorage' not found in /./app/cache/dev/appDevDebugProjectContainer.php on line 231

[symfony-users] [sf2] doctrine:query:sql problem

2011-02-20 Thread apm
sf2 vPR6-214-g75238c6 =config.yml= doctrine: dbal: default_connection: default connections: default: driver: pdo_mysql dbname: ... user: ... password: ... logging: %kernel.debug% in controller:

[symfony-users] Re: [sf2] doctrine:query:sql problem

2011-02-21 Thread apm
Hmm. same problem with ORM. ./symfony doctrine:generate:entities MyBundle [InvalidArgumentException] The parameter "doctrine.orm.entity_managers" must be defined. config.yml: orm: default_entity_manager: default auto_generate_proxy_classes: %kernel.debug% mappings: Hello

[symfony-users] [sf2] Doctrine associations, cant understand how...

2011-02-21 Thread apm
Trying to do some related tables, under my bundle Entity dir i create 2 files --Street: /** * @orm:Entity */ class Street { /** * @orm:Id * @orm:Column(type="integer") * @orm:GeneratedValue(strategy="IDENTITY") */ protected $id; /

[symfony-users] Re: [sf2] Doctrine associations, cant understand how...

2011-02-22 Thread apm
Like this? /** * @orm: * @ManyToOne(targetEntity="Town", inversedBy="streets") */ public $town; I am try that just now, no effect. And not in docs not in other project (i trying search @ManyToOne directive on github codes) no empty @orm: field. 22.02.2011 13:43, Yohan G

[symfony-users] Re: [sf2] Doctrine associations, cant understand how...

2011-02-22 Thread apm
Oh, orm:ManyToOne works... Thanks! 22.02.2011 13:43, Yohan GIARELLI пишет: You must add orm: before all your doctrine anotation. Yohan. -- 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 subs

[symfony-users] Re: [Symfony 2] Multiple apps in a project?

2011-02-25 Thread apm
I think - You can do any count of apps, just create start-file in web/ with different app and configure apache to redirect subdomain on this front-controller. 25.02.2011 10:03, Theo Chakkapark : I'm considering using Symfony 2 over Symfony 1, and based on the documentation for Symfony 2, it s

[symfony-users] Re: Symfony 2 and MSSQL

2011-05-04 Thread apm
Which driver i must use for doctrine/mssql ? dbo_sqlsrv ?? I cant start this. always get. [PDOException] could not find driver 08.03.2011 21:57, Christophe COEVOET : Le 08/03/2011 13:16, Tomas a écrit : Hello!! I will need to connect to a MSSQL server DB in my next (first) Symfony 2 pr

Re: [symfony-users] Re : Re: Symfony 2 and MSSQL

2011-05-04 Thread apm
I think that not working under linux. Somebody use windows for webservers? awesome. 04.05.2011 17:45, winzou : You need to retrieve the specific driver from Microsoft, check this out : http://www.microsoft.com/downloads/en/details.aspx?FamilyID=ccdf728b-1ea0-48a8-a84a-5052214caad9 -- If you w

[symfony-users] Re: How to automatically fill out a field that relates to a user?

2010-01-13 Thread apm
I am trying do similar behavior. I have some attribute of user, which i want store as value in many and many forms. But cant solve this. I am trying modify forms data in action-processform, but its not work. LogicError exception. Somebody in irc recomend for me use hidden values in form::configu

[symfony-users] Re: How to automatically fill out a field that relates to a user?

2010-01-13 Thread apm
For now i solve this, with this way 1. never create form as new form() 2. create object= new object(), fill data in controller $ob- >setmythoseid($this->getUser()->GetBlah()), and then create form with this object 3. mark this field as hidden in form class But i dislike this way. Using browser f

[symfony-users] Many-many relationship, propel, forms

2010-01-13 Thread apm
I have problem with many-many mapping into forms. Schema: == Ducks: id:~ name: Hunters: id:~ name: D_H: id:~ duck_id: { type: integer, foreignTable: Hunters, foreignReference: id, required: true } hunter_id: { type: integer, foreignTable: Hunters, foreig

Re: [symfony-users] Re: How to automatically fill out a field that relates to a user?

2010-01-13 Thread apm
2. i totaly cant get myUser object from form class. No idea how get auth user in form::configure Answer to myself get user from form class, possible with sfContext->GetUser, so i can move fill the hidden input from controller to form methods. -- You received this message because you are subs