[symfony-users] Re: ERP development ( SF 1.4 or 2.0 ? )

2011-03-06 Thread Vikos
I think better to use symfony 2.

An ERP system is not so small ( very very huge ):
 - so when it will be finished the symfony 2 will have finished also
( will have been absolutely stable and tested )
 -  sf2 better support more than one developer... ( eg.: own routing /
bundle... less SVN merge need..etc.. )

plugins and 3rd party libraries: I think it's easy to integrate any
other solution into any Sf framework... ( nested set handling...
ajax.. stb stb... )...

..so definitely use sf for new project...

:)


On Feb 28, 12:58 pm, Anderson Dadario 
wrote:
> Hello ..
>
> I'm about to start a big system ( Enterprise Resource Planning
> ( ERP ) ) and i'm in doubt.
> Wich version should I pick ? 1.4.9 or 2.0 ?
>
> Thanks!

-- 
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 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] dynamic route

2011-03-05 Thread Vikos
Hello.

I use symfony 1.4.

A want to make a dynamic length route.

There's a list. This list has different templates. There is ordering
option and direction for ordering.

Is it possilbe to make url like this (is one routing rule)?

task_index:
  url: /activity/:id/tasks/:type/:order/:desc
  class:   sfDoctrineRoute
  options: { model: Activity, type: object }
  param:   { module: task, action: index, type: List, order: ~, desc:
~ }
  requirements:
id: \d+
sf_method: [get]
type: ( List| Details | Calendar  )
order: ( Title | Label | time | Assign )
desc: (  asc | desc )

This rule works when I use url_for('task_index', array( . )).

I want to define different length like:
mysite.com/activity/1/tasks
mysite.com/activity/1/tasks/Details
mysite.com/activity/1/tasks/Details/Label/
mysite.com/activity/1/tasks/Details/Label/desc


is it possible?

Thanks the answers!

Vikos

-- 
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 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: Using adoDB with symfony

2011-01-22 Thread Vikos
with oracle better to use oci8 -> much stable than PDO_OCI

Doctrine work's well with oci8! I don't have any experience with
oracel and propel...

PDO_OCI doesn't support well the large objects...

On Jan 21, 6:37 pm, Manuel Alejandro Gómez Nicasio
 wrote:
> Well, the PHP version that is installed doesn't support the PDO version that
> PDO_OCI needs. So we need to upgrade the PHP version and doing that could
> break something on the apps installed.
>
> In fact, on development we use postgreSQL but on production we must use
> oracle because the tables already exists on the oracle database. We can use
> postgres or Mysql , the production machines have the drivers required, but
> by doing that we must copy some tables from oracle database to our postgres
> or mysql databse that means copy information that eventually will be
> duplicated.
>
>
>
>
>
>
>
> On Friday, January 21, 2011 3:20:26 AM UTC-6, GarethMc wrote:
>
> > And why can't he recompile it? the PDO drivers are an addition to PHP, it
> > doesn't affect other parts of PHP that apps my rely on. Nothing should
> > break
>
> > It is FAR cheaper for you to look at fixing the server than trying to
> > rewrite the core aspects of an applications framework library just because
> > your server admin either cannot or is to lazy to do his job!
>
> > The other alternative? Don't use Oracle. MySQL performs exceptionally well,
> > as does PostgreSQL. And they are both a doddle to get running.
>
> > 2011/1/21 Manuel Alejandro Gómez Nicasio 
>
> >> thanks for answer, GarethMc.
>
> >> Propel works well. As I said, the project is almost done. However, these
> >> days while talking with the admin of the production boxes he told us that
> >> production machines doesn't have the PDO version that the project needs. 
> >> So,
> >> he suggest to find an alternative to PDO, i.e. adoDB.
>
> >> The detailed problem is that the project uses oracle as DBMS but the PDO
> >> version on production servers doesn't support de pdo_oci driver. It simply
> >> doesn't compile. As the admin cannot recompile PHP with a new PDO version
> >> because other system installed on the server could break we are looking for
> >> some alternatives.
>
> >> So, is it possible to "switch" from PDO to adoDB while keeping Propel?
>
> >>  --
> >> 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 symfon...@googlegroups.com
> >> To unsubscribe from this group, send email to
> >> symfony-user...@googlegroups.com
> >> For more options, visit this group at
> >>http://groups.google.com/group/symfony-users?hl=en
>
> > --
> > Gareth McCumskey
> >http://garethmccumskey.blogspot.com
> > twitter: @garethmcc
> > identi.ca: @garethmcc

-- 
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 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: Output escaper in template

2011-01-22 Thread Vikos
it's simple:

get the unescaped object/variable first... and call your function...

ver a.: $sf_user->getRawValue()->getTopics();

ver b.: sfOutputEscaper::unescape($sf_user)->getTopics();

be careful: the symfony doesn't escape nulls and integers... so the
getRawValue cause undefined function exception...

I personally  prefer the first way..

On Jan 21, 2:28 pm, HAUSa 
wrote:
> If I try to access a function in my User class (myUser.class.php), the
> results is being escaped in a template.
>
> This makes the code below a mess:
> getId(), $sf_user->getTopics())): ?>
>
> I receive this error message:
> Warning: in_array() expects parameter 2 to be array, object given in /
> home/httpd/vhosts/krantcafe.nl/httpdocs/apps/community/modules/topic/
> templates/_record.php on line 5
>
> That is because my Array is an instance of
> sfOutputEscaperArrayDecorator now.
>
> How can I get the original array, that the $sf_user->getTopics()
> returns?

-- 
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 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: Get all logged in users

2011-01-18 Thread Vikos
Or if the Presence information doesn't matter...

make a shoutbox...

On Jan 18, 9:24 am, Gabriel Petchesi  wrote:
> You should look into server push technologies to get updated information
> from the 
> clients.http://en.wikipedia.org/wiki/Push_technologyhttp://en.wikipedia.org/wiki/Comet_(programming)
>
> As for storing user state use memcache with some locking mechanism to see
> which users are active or not.
>
>     gabriel

-- 
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 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] Best practice for generate Complex URL

2011-01-13 Thread Vikos
Hello!

In my current project there are some url width 4 or more parameter.

eg.:
This URLs for same list, and rooted to same action.
  url: /activity/:id/tasks/:type/:order/:desc
  url: /activity/topic/:id/tasks/:type/:order/:desc

ids are both required!

the :type is the type of the list ( like "view as" on ebay)...

My problem: I don't want to use all parameter every time... I try for
use the longer version as possible...

I need to use it several times.
So: Is there a best practice to no use many isset/if/other code and
keep the templates clear and simple

Should I make a special root object? or a helper???


Thanks the answers!

Vikos

-- 
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 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] i18n extract to multiple categories

2011-01-04 Thread Vikos
Hello.

Can symfony direcly extract i18n texts to the sepicfied - not the
messeges.xml - catalogues?
(to multiple catalogues).

Tanks!!
Vikos

-- 
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 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] Diffrenet route for authenticated user on same URL

2010-12-07 Thread Vikos
Hello.

I need to use different action on main page for logined and non
logined users.

Is it possible to create a route with an authetication based
requirement rule?

I haven't found any plugin for this


Previously tanks the answers!!!!

Vikos

-- 
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 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: Symfony 1.4 + Doctrine + OCI8

2010-12-03 Thread Vikos
Thank You!

On dec. 3, 10:20, Zuchuat Bertrand  wrote:
> Hi,
>
> I use this syntax to connect my project on Oracle:
>
> all:
>   opacstat:
>     class:        sfDoctrineDatabase
>     param:
>       dsn:        'oracle:dbname=//server_address:1521/SID'
>       username:   xxx
>       password:   
>
> Doctrine implement 2 solutions with Oracle: oci8 and pdo. But PDO isn't the 
> best solution.
>
> Recommended oci8 with syntax above.
>
> Le 2 déc. 2010 à 18:08, Vikos a écrit :
>
> > The tried one for oci:
> >    class: sfDoctrineDatabase
> >    phptype: oci8
> >    param:
> >      dsn:      oracle:dbname=//192.168.0.133:1521/XE;charset=AL32UTF8
>
> > If I use 'oracle:..' in dsn the doctrine says  "unable to
> > connect"..
> > and if I use 'oci8:." -> "Couldn't locate driver named oci8"
>
> > Environment : Win7 64 bi, apache2, php 5.3.1 (installed in wamp).
>
> Bertrand

-- 
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 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] Symfony 1.4 + Doctrine + OCI8

2010-12-02 Thread Vikos
Hi Guys!

I need to use Oracel 10g XE in my current project (Symfony 1.4 &
doctrine 1.2).

I configured it well to use pdo_oci.. but the it has lot bugs...
especially in CLOB handling [insert, update].

Please help me to reconfigure the doctrine to use OCI8 instead of
PDO!!


database.yml (for pdo_oci)

class: sfDoctrineDatabase
param:
  dsn:  oci8:dbname=192.168.0.133/XE;charset=AL32UTF8
  username: ###
  password: ###

The tried one for oci:
class: sfDoctrineDatabase
phptype: oci8
param:
  dsn:  oracle:dbname=//192.168.0.133:1521/XE;charset=AL32UTF8

If I use 'oracle:..' in dsn the doctrine says  "unable to
connect"..
and if I use 'oci8:." -> "Couldn't locate driver named oci8"

Environment : Win7 64 bi, apache2, php 5.3.1 (installed in wamp).


Thanks

Vikos

-- 
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 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] Doctrine left join without relation

2010-10-01 Thread Vikos
Hello

The question: Can I do join without relation [with doctrine]?

My project schema is huge. Every record has 'created_by' filed... but
no foreign key. ( 60+ FK to one table can cause lot problems).

A want to get a table joined with the creators. But doctrine don't
want to do it because it doesn't know any relation

Is it possible to do a simple JOIN QUERY with DQL?
Or on the other side ...How can'I do it without manual hydration?

Thanks the answers!!

Have a nice day!
Vikos

-- 
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 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] different css for layouts

2010-09-23 Thread Vikos
Hello

I have multiple layout width own arrangement.

My simple question:
Can I configure symfony to automatically load different css/js for
layouts?

Set the same javascript and css files in every view.yml width
different layout is time-consuming.

I want something like this:
layout1-> css1.1, css1.2...
layout2-> css2.1, css.2.2... etc..



Thanks the answers!

Vikos

-- 
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 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] Multipart-data ajax form

2010-05-28 Thread Vikos
Hi Guys!

The problem:
I need to upload a file width some parameters from a modalbox.

I read som articles and tutorials how to do it.
JQuery has some ajax file upload plugin. but! They can upload only a
file, not a complete form.
(...every uses ifame to submit a multipart form...)

The question: Has anyone a great javascript sniplet, that can upload a
complete multipart form, and works width several browsers

The plan:
I want to put the whole form from a modalbox into an iframe... submit
it and put back the answer to the modalbox.

I have an solution but I'm not sure it works wll width all (most
of...) browsers.

THANKS!!!!

Vikos

-- 
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 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] db question for statistics

2010-04-27 Thread Vikos
Hi Guys!

Who can use Docrine + ODBC + SQL 2005 (on windows) And how?
Can anyone use CRUD scaffolding ?
The generated code (for me) isn't work's correctly... :(

We have a big project. And after 2 weeks sucking I can't use doctrine
AND /OR PDO ODBC execute (for insert).

It's not a big problem because the schema is too complex to keep all
business logic in application layer. And we need to use stored
procedures (in a two layer API on db server) for all DB functions
(insert update, select, delete).

So the question in more simple verison is: Am'I too llama to use php
width sql server, or the others cant't too?


Thanks the answers!

-- 
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 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] delete + csrf prtection + ajax

2010-03-29 Thread Vikos
Hi Guys!

I've a problem.
( symfony 1.4 )

I've a master/detail form. A person have some contacts ( mail,
phone...etc..).

The contacts - on the GUI - is in a table under the person form. This
list uses ajax.
Pop up a modal box ( contact form inside ).
By this way the user can create and update.

In every contact row's end is a delete button. It have to work without
page refresh. But I want to use symfony's built in csrf protecton.

The link_to function creates a form ( on the fly ) when the user
click... but that HTTP call is a simple post...
... the csrf protection uses HTTP POST and a simple form ( width a
token...).


So what is the most simple, easiest... way to send that post ( from )
via HTTP XML request???

- Catch the submit event by jquery?
- Create a function that creates same form ( js ).. but sending it via
ajax???

Any other idea...??...
Please help!


Tanks!

Vikos

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

To unsubscribe from this group, send email to 
symfony-users+unsubscribegooglegroups.com or reply to this email with the words 
"REMOVE ME" as the subject.


[symfony-users] Re: Dynamic form validation

2010-03-21 Thread Vikos
Symfony version : 1.4

On márc. 21, 17:40, Vikos  wrote:
> Hi!
>
> (My english is not so perfect so previously sorry for mistakes!!!)
> I need a form witch can dynamically change the validator schema by the
> POST's datas.
>
> Db shcema:
> There is the workers. They have contacts ( mail. phone, mobile...
> homepage.. etc..).
> A workers have many of them.
> The worker need to distinguish the contacts that is why the contact
> has a type.
>
> The type has a mask ( an integer). The mask values is built in. 1:
> free string , 2: mail, 3: phone...
>
> worker: ID, name
>
> contact: ID , type_id, worker_id value
>
> contacttype: ID, mask, name.
>
> When the I crate a new contact for a worker, i can choose the contact
> type ( from a select ), and type the contact's value ( simple input ).
>
> when the form income I have to validate the contact's value by the
> type's mask. So i need to change the value validator ( "on the fly" ).
>
> The problem is:
>
> when I create a new ContactForm the smyfony first build up the form
> and after it validate. But the form validators depend on the post's
> datas witch go into the form after it is built up.
>
> I have an answer but I think it's not elegant:
> When I create a form object I inject the type_id via the
> constructor.as an option.
>
> Any one have better/more simple/more elegant idea?
>
> Thanks!
>
> Vikos

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

To unsubscribe from this group, send email to 
symfony-users+unsubscribegooglegroups.com or reply to this email with the words 
"REMOVE ME" as the subject.


[symfony-users] Dynamic form validation

2010-03-21 Thread Vikos
Hi!

(My english is not so perfect so previously sorry for mistakes!!!)
I need a form witch can dynamically change the validator schema by the
POST's datas.

Db shcema:
There is the workers. They have contacts ( mail. phone, mobile...
homepage.. etc..).
A workers have many of them.
The worker need to distinguish the contacts that is why the contact
has a type.

The type has a mask ( an integer). The mask values is built in. 1:
free string , 2: mail, 3: phone...

worker: ID, name

contact: ID , type_id, worker_id value

contacttype: ID, mask, name.

When the I crate a new contact for a worker, i can choose the contact
type ( from a select ), and type the contact's value ( simple input ).

when the form income I have to validate the contact's value by the
type's mask. So i need to change the value validator ( "on the fly" ).

The problem is:

when I create a new ContactForm the smyfony first build up the form
and after it validate. But the form validators depend on the post's
datas witch go into the form after it is built up.

I have an answer but I think it's not elegant:
When I create a form object I inject the type_id via the
constructor.as an option.

Any one have better/more simple/more elegant idea?

Thanks!

Vikos

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

To unsubscribe from this group, send email to 
symfony-users+unsubscribegooglegroups.com or reply to this email with the words 
"REMOVE ME" as the subject.


[symfony-users] Re: symfony 1.2 + mssql 2005 + propel + wamp

2010-01-05 Thread Vikos
I change to symfony 1.4.
A tried to use ODBC connection width doctrine. The connecion works,
anything else...:(
Symfony can build schema. and read the db. But can't insert, or
update.

Now I'm trying to use DBLIB. the newest php 5.3.1 has the dll...
(php_pdo_mssql.dll)
But i got this message: "Couldn't locate driver named dblib.


I'm not an absolutely senior php/symfony developer so I thin I do
somethin worong but i don't know what...:s


Here is my config:
all:
  doctrine:
class: sfDoctrineDatabase
param:
  dsn: 'dblib:host=localhost;dbname=erste_jutalek'
  username: sa
  password: asdfgh

Can anybody help me?


Previously thanks the answers




On jan. 4, 19:37, xplo  wrote:
> As far as i know there is no pdo mssql driver available for php 5.3 so
> it is not possible to use php 5.3 + mssql :/
> However with php 5.2.x it s ok
>
> On Jan 4, 4:32 pm, Nathan Bijnens  wrote:
>
> > Hello,
>
> > When you start a new project, use the 1.4 release. If you're not starting
> > from scratch upgrade to 1.3. Certainly because you're using php 5.3!
>
> > I have good experiences with Doctrine, more than with Propel. I suggest you
> > look at the documentation for both. If MSSql 2005 is a requirement, I guess
> > a database with data also exist. If this is the case doctrine can generate
> > it's schema based on a database instead of a schema.yml.
>
> > Both Doctrine and Propel do database abstraction, you won't really notice
> > the difference between Mssql 2005 and MySQL. However the doctrine mysql dbal
> > is a lot better tested than the doctrine mssql dbal.
>
> > For how to actually start: Just like any other Symfony project. Except in
> > databases.yml put in a suitable dsn. (google for pdo dsn mssql if you really
> > can't find anything).
>
> > Best regards,
> >   Nathan
>
> > On Mon, Jan 4, 2010 at 2:11 PM, Vikos  wrote:
> > > Hi!
>
> > > We are start a project that must use mssql 2005 and run on windows
> > > server.
> > > (vindows server 2003, apache2, mssql 2005, symfony 1.2...actual, php
> > > 5.3.1)
>
> > > How can I connect to sql server on windows via propel?
> > > Witch do you advise  propel or doctrine?
> > > What problems can be?
> > > What experiences are?
>
> > > Thanks!
>
> > > Viktor
>
> > > --
>
> > > 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 this group, send email to
> > > symfony-users+unsubscr...@googlegroups.com > >  legroups.com>
> > > .
> > > For more options, visit this group at
> > >http://groups.google.com/group/symfony-users?hl=en.
-- 
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 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] symfony 1.2 + mssql 2005 + propel + wamp

2010-01-04 Thread Vikos
Hi!

We are start a project that must use mssql 2005 and run on windows
server.
(vindows server 2003, apache2, mssql 2005, symfony 1.2...actual, php
5.3.1)

How can I connect to sql server on windows via propel?
Witch do you advise  propel or doctrine?
What problems can be?
What experiences are?

Thanks!

Viktor

--

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 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.