[symfony-users] Symfony backend questions?

2009-05-18 Thread torso
Hi I am going to do a backend application which can do frontend pages. I need to know is it possible to do modules on backend. For example: I have apps which are backend and frontend. On backend I have module admin, which can do new frontend modules like home, contacts, etc and those are shwoin

[symfony-users] Re: Few simple questions about symfony 1.0

2009-03-20 Thread torso
u can use propel-dump-data frontend data.yml, it save all data in the > data\fixtures\data.yml > > 2009/3/17 torso > > > > > Hi! > > > I have to do new Table to database. Is it possible to do it with out > > loosing any data on other tables with propel? > &g

[symfony-users] Re: Few simple questions about symfony 1.0

2009-03-18 Thread torso
propel-dump-data frontend data.yml, it save all data in the > data\fixtures\data.yml > > 2009/3/17 torso > > > > > Hi! > > > I have to do new Table to database. Is it possible to do it with out > > loosing any data on other tables with propel? > > How  I

[symfony-users] Few simple questions about symfony 1.0

2009-03-17 Thread torso
Hi! I have to do new Table to database. Is it possible to do it with out loosing any data on other tables with propel? How I can make a backup copy of database with propel, is it possible? --~--~-~--~~~---~--~~ You received this message because you are subscribed

[symfony-users] Routing to web/ownfile/, need help fast.

2009-03-11 Thread torso
Hi I have a problem with routing. I have directory in web folder by name files. In web/files there is pic.php which shows pictures by pic? file=picname.jpg. Now I need to make routing www.example.com/files to web/files directory, not to the files module. How I can do that? Thanks for your help!

[symfony-users] Re: select FIELD from TABLE with propel

2009-03-08 Thread torso
this is in the template which makes that error: echo object_select_tag($file, 'getFileId', 'peer_method=getSortedFlash') and this is the query for getSortedFlash: $c = new Criteria(); $c->clearSelectColumns(); $c->addSelectColumn(FILE::FLASH): $rs = FILEPeer::doSelectRS($c); --~--~-~--~

[symfony-users] Re: select FIELD from TABLE with propel

2009-03-08 Thread torso
ctColumn(MyPeer::MY_COLUMN): > > $rs = MyPeer::doSelectRS($c); > On Mar 8, 2009, at 3:29 AM, torso wrote: > > > > > Hi > > > I how I do this query with propel, not raw sql query, but with > > cirteria. Select FLASH from FILES > > I need to get select opti

[symfony-users] select FIELD from TABLE with propel

2009-03-07 Thread torso
Hi I how I do this query with propel, not raw sql query, but with cirteria. Select FLASH from FILES I need to get select options with flash file name. I have tried this: add to FilePeer with function name getSortedFlash: $c = new Criteria(); $c->add($c->getColumnName(FilePeer::FLASH)); $rs =Fi

[symfony-users] Re: uploadin flash

2009-03-05 Thread torso
you might also need to increase the memory limit > for PHP. > > Cheers, > Andreas > > torso schrieb: > > > Okey the problem is size of file if it's under 2 mb it goes to server, > > but if it's over  2mb it dosen't go to server? > > Where's

[symfony-users] Re: uploadin flash

2009-03-05 Thread torso
Okey the problem is size of file if it's under 2 mb it goes to server, but if it's over 2mb it dosen't go to server? Where's the problem? In validation.yml I have max size over 5 mb On 3 maalis, 16:42, torso wrote: > Hi! > > I am using symfony 1.0. Now i am do

[symfony-users] uploadin flash

2009-03-03 Thread torso
Hi! I am using symfony 1.0. Now i am doing flash file upload. I cant send some files to server, what is the problem? Here is the simple upload form. 40, 'type' => 'file')) ?> Here is the action update $gallery = new Gallery(); $gallery->setFlash($this->getRequest()->getFileName('flash'));

[symfony-users] propel blob?

2008-10-02 Thread torso
Hi I need help with propel and blob. I am saving excel file to blob column. Saving works but, loading dosen't. If I want to download it from server do I need to use writeFile function to write it to the temp file or is it possible to send it by php object? These things are new to me. Any good tut

[symfony-users] Re: Adding project to server

2008-09-22 Thread torso
I solved the problem. On Sep 21, 5:03 pm, torso <[EMAIL PROTECTED]> wrote: > Okey. But could I use freez command if I like to add it same domain? > > On 21 syys, 00:44, Frank Stelzer <[EMAIL PROTECTED]> wrote: > > > I would create a new subdomain and run the new s

[symfony-users] Re: Adding project to server

2008-09-21 Thread torso
I used the freeze, but when I am testing it with mamp I get error Warning: require_once(/Users/Torso/Desktop/www/guru/config/../lib/ symfony/util/sfCore.class.php) [function.require-once]: failed to open stream: No such file or directory in /Users/Torso/Desktop/www/guru/ apps/admin/config

[symfony-users] Re: Adding project to server

2008-09-21 Thread torso
Okey. But could I use freez command if I like to add it same domain? On 21 syys, 00:44, Frank Stelzer <[EMAIL PROTECTED]> wrote: > I would create a new subdomain and run the new symfony stuff there,   > when its only for administration purposes. > > Am 20.09.2008 um 2

[symfony-users] Adding project to server

2008-09-20 Thread torso
Hi I need help with synchronization. I have a project which is done with clear php, with out any framework. Now I have done simple admin project with symfony. Is it possible to add the symfony project to address.com/admin. Both projects use same database. How I should do it? --~--~-~--~

[symfony-users] Installing symfony project to server?

2008-09-20 Thread torso
Hi I need help with synchronization. I have a project which is done with clear php, with out any framework. Now I have done simple admin project with symfony. Is it possible to add the symfony project to address.com/admin. Both projects use same database. How I should do it? --~--~-~--~-

[symfony-users] delete file from uploads directory

2008-09-14 Thread torso
Hi I am doing crud for photos. I'm not using scaffold, it would be by scaffold. I don't know who I can delete file from uploads director. Do I have to use php delete function, or is there better way? --~--~-~--~~~---~--~~ You received this message because you are

[symfony-users] Deleting from database by click

2008-08-27 Thread torso
Hi. I am trying to delete data from database by clicking. But when I give $all[$i]->delete() It deletes all data from database. I am trying to delete only one. Can somebody help, please. getHeader(); $content = $all[$i]->getContent(); $created = $all[$i]->getCreate

[symfony-users] choosing template/action show area in layout.php

2008-08-25 Thread torso
Hi! How I can choose different templates/actions to shown in the div's. I have this kind of layout. getRaw('sf_content') ?>//this should be action news test THIS SHOULD BE ACTION LOGIN

[symfony-users] How send variable with link_to helpper?

2008-07-10 Thread torso
Hi How I can send variabel $id with link_to helper like echo link_to('delete, 'admin/delItem'); but it will send also the id variable? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "symfony users" group. To post