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

[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

[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

[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:

[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] 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

[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] 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 phpc...@gmail.com 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

[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

[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] 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-users] Re: Use event dispatcher on asynchronous mode

2010-04-09 Thread apm
Where is async here? On 9 апр, 15:00, romain godefroy romain.godef...@wanadoo.fr 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

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

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

[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

[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 for

[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,

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