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
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
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
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
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
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;
/
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
sf2 vPR6-214-g75238c6
=config.yml=
doctrine:
dbal:
default_connection: default
connections:
default:
driver: pdo_mysql
dbname: ...
user: ...
password: ...
logging: %kernel.debug%
in controller:
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
--
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
24 matches
Mail list logo