[symfony-users] Error - Form Job - day 3

2011-12-21 Thread Emmanuel Allende
Hi! I'm having a problem. I can't see the form (in the Jobeet tutorial, day 3) with any style. Why is this? any solution? Thanks! (Sorry about my english...)

[symfony-users] Error on doctrine:schema:update

2011-06-15 Thread Christophe Beyer
Hi, I'm using the beta4, with MAMP on Apple Mac. I have this error on launching the doctrine:schema:update command : Warning: PDO::__construct(): [2002] No such file or directory (trying to connect via unix:///var/mysql/mysql.sock) in

Re: [symfony-users] Error when adding new data - really really stucked with this one...

2011-04-30 Thread JP
Thanks for the awnser. I modified the generator.yml and the form. I'm sending the two of them. Thanks in advance. Generator.yml: *generator: class: sfDoctrineGenerator param: model_class: Patient theme: admin non_verbose_templates: true with_show:

Re: [symfony-users] Error when adding new data - really really stucked with this one...

2011-04-28 Thread Francesco Tassi
On giovedì 28 aprile 2011 at 01.27, JP wrote: Hi everyone, I'm facing some issues after insert a Patient with a form generated with php symfony doctrine:generate-admin backend Patient --module=patient task. The form is inserting the data into a mysql DB correctly, but after the insert the

[symfony-users] error in using link_to in symfony

2011-04-20 Thread Kush
hi friends, i am using xampp and my project is in C:\Program Files\xampp\htdocs \smt i've created a few modules and configured routing.yml as employeerecord: URL: / param: { module: default, action: index } addnewemployee: URL: /addnewemployee param: { module: addnewemployee, action:

[symfony-users] Error in Insert

2011-04-15 Thread Alvaro Touzon
hi i had that error when make an insert, the two tables has a relation OneToOne bidirectional: SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'user_id' cannot be null The code used is resumed here: http://pastebin.com/tqBXVhKk -- Álvaro, Senior Web Developer -- If you want to

Re: [symfony-users] Error 403 Forbidden

2011-04-09 Thread Haris Fauzi
Hi Alex, If you want to place your files under your HOME accessible to Apache, you have to give rx permission from / all the way down to the directory where you setup your DocumentRoot. If you install your symfony in /home/ahertz/sfprojects/jobeet/ then you need to give permission for apache to

Re: [symfony-users] Error 403 Forbidden

2011-04-09 Thread Justen Doherty
and also run: php symfony project:permissions to set correct permissions on the filesystem On Fri, Apr 8, 2011 at 5:37 PM, Haris Fauzi haris.fa...@gmail.com wrote: Hi Alex, If you want to place your files under your HOME accessible to Apache, you have to give rx permission from / all the way

[symfony-users] Error 403 Forbidden

2011-04-08 Thread Hertzy3
I am on day 1 of the Jobeet tutorial and already having issues. I am installing this on a virtualbox version of Fedora 14. I installed symfony in /home/ahertz/sfprojects/jobeet/. I've gone through everything step by step, and when I created the Virtualhost and tried to access it from

[symfony-users] Error with ahDoctrineEasyEmbeddedRelationsPlugin in edition with new form

2011-03-28 Thread Paulo Marinho
Hi, I'm using ahDoctrineEasyEmbeddedRelationsPlugin for an admin form with the code that follow. In the creation of a company (empresa), the relation many to many is saved ok, nut in th edition, the blank form always is validated, or tries to input in the tababase null values,

[symfony-users] Error with ahDoctrineEasyEmbeddedRelationsPlugin in edition with new form

2011-03-28 Thread PM
Hi, I’m using ahDoctrineEasyEmbeddedRelationsPlugin for an admin form with the code that follow. In the creation of a company (empresa), the relation many to many is saved ok, nut in th edition, the blank form always is validated, or tries to input in the tababase null values, anyone

Re: [symfony-users] Error when creating models

2011-03-18 Thread Francesco Levorato
Hi there, have you tried with a 'build --all --and-load' which does all the three steps in one go? Cheers, Francesco On Wed, Mar 16, 2011 at 8:56 PM, Kévin gee...@gmail.com wrote: Hi, I'm new to Symfony, and I don't even succeed in creating valid models. I created my project - which use

[symfony-users] Error when creating models

2011-03-17 Thread Kévin
Hi, I'm new to Symfony, and I don't even succeed in creating valid models. I created my project - which use propel - and wrote the following schema.yml: propel: poc: id: ~ message: { type: varchar(140), required: true} author: { type:

[symfony-users] error

2011-02-15 Thread Laxmi
I am hear trying to find weather email is existing in database or not but i am getting error The template create.php does not exist symfony. Please help $user = $this-user; $user = Doctrine_Core::getTable('user') -createQuery('a') -where('a.email = ?',$email) -execute();

Re: [symfony-users] error

2011-02-15 Thread Gareth McCumskey
Is your action called executeCreate? If so, what is happening is that your if condition is not being met so it does not hit your $this-setTemplate() call and so continues on to try and find the default template for the executeCreate action called createSuccess.php and errors out because you have

[symfony-users] Error - Unable to scaffold nonexistent model Interest

2011-01-19 Thread rashu
Hello symfony users, I am new to symfony.. 1) Step 1:- As I have creted new tables in schema.yml test: _attributes: { idMethod: native } t_id: { type: INTEGER, required: true, autoIncrement: true, primaryKey: true } test_name: { type: VARCHAR, size: '20', required: true, default:

[symfony-users] Error when not logged in

2011-01-14 Thread SeNdEr
Hello Im building my website with symfony and im using sfguard for user management, it works great when im logged in, but when not i get this error: Fatal error: Call to a member function __toString() on a non-object in . /sfDoctrineGuardPlugin/lib/user/sfGuardSecurityUser.class.php on

Re: [symfony-users] Error when not logged in

2011-01-14 Thread Gareth McCumskey
The part causing a problem is: ?php echo $sf_user ? $sf_user is not a string it is an sfGuardUser object. If you want to echo the username you need to call the getUsername() method on that object: ?php echo $sf_user-getUsername() ? On Thu, Jan 13, 2011 at 3:37 PM, SeNdEr luca...@gmail.com

Re: [symfony-users] error clearing the cache

2010-12-26 Thread oscar balladares
Last time I got that error (on my local server) was due to Doctrine. It was a poor optimization queries. You should look for recursive queries. 134217728 bytes is good size. Probably apache reaches a high demand of memory due to Doctrine. Try to optimize your code:

[symfony-users] Error when trying to declare a variable as a parameter. No problem when I declare it inside the function.

2010-12-07 Thread Javier Garcia
Hi, I have this static function: public static function getOrdini($sort_order = 4) { $con = Propel::getConnection(); $sql = select * from shop_orders LEFT JOIN shop_orders_total ON shop_orders.orders_id = shop_orders_total.orders_id AND

Re: [symfony-users] Error sencillo

2010-10-19 Thread Martin Ibarra Cervantes
Creo que eso es el theme podrian ser bien las GTK theme o bien creo que hicieron el ejemplo en una Mac OS :-) que es lo mas seguro .. On Tue, Oct 19, 2010 at 6:54 AM, rfvillavicen...@cav.uci.cu wrote: Miren descargué las imagenes y los css, los puse dentro del directorio web pero hay css

[symfony-users] Error installing plugin

2010-10-07 Thread demispb
I receive this the error when i trying to install a plugin, i add the pear channel on my loaclhost but nothing Unable to initialize channel Unknown channel: plugins.symfony- project.org (use --force-license to force installation) -- If you want to report a vulnerability issue on symfony,

[symfony-users] Error with include_once()

2010-08-02 Thread Javier Garcia
Hi, after installing sfDoctrineApplyPlugin-1.1.1, extracting Zend at lib/vendor/Zend, executing sfApply/apply and submitting the form that appears i get this errror: *Quote:* Warning: include_once(Zend/Loader/Autoloader.php) [function.include-once]: failed to open stream: No such file

[symfony-users] Error Task doctrine:generate is not defined

2010-07-16 Thread Paulo Iamanaka
I did the model, schema apps and frontend from the pratical tutorial. When I try do the code php symfony doctrine:generate-module --with-show --non-verbose-templates frontend job JobeetJob the prompt shows the message afCommandException Task doctrine:generate is not defined SO: Windows XAMPP

[symfony-users] Error en campo frontend con etiquetas Html

2010-06-24 Thread alvaro gmail
Amigos buenos dias quisiera su colaboracion en un problemilla que tengo con un campo que lo introduzco con viñetas y al momento de visualizarlo en otra plantilla se me visualizan las etiquetas Html tal cual osea no se me interpretan los html gracias Alvaro Gonzalez -- If you want to report

[symfony-users] Error Auditable Fixtures

2010-05-28 Thread Iraklis
Buenas tardes, Recientemente hallé un snippet (http://snippets.symfony-project.org/ snippet/405) que me facilita el poder auditar las tablas de mi base de datos. El problema lo tengo con los fixtures... al hacer una tabla auditable, me genera el siguiente error: Unknown record property /

Re: [symfony-users] error from upgrade symfony project from 1.2 to 1.4

2010-05-26 Thread Eno
On Tue, 25 May 2010, natzars wrote: hi everyone, I get this problem when I upgrade symfony version 1.3.4 to 1.4.4 I don't know how to resolve it can I do it Fatal error: Uncaught exception 'InvalidArgumentException' with message 'Unable to load FormHelper.php helper in:

[symfony-users] error from upgrade symfony project from 1.2 to 1.4

2010-05-25 Thread natzars
hi everyone, I get this problem when I upgrade symfony version 1.3.4 to 1.4.4 I don't know how to resolve it can I do it Fatal error: Uncaught exception 'InvalidArgumentException' with message 'Unable to load FormHelper.php helper in: SF_ROOT_DIR\apps\appsetup\lib/helper,

[symfony-users] Error in symfony2 on Win7

2010-05-21 Thread AigerVoid
System conf: Win7 Ult., apache2, php 5.3.2,mysql5 http://localhost/sandbox/web/check.php - OK,all required is green but in: http://localhost/sandbox/web/index_dev.php/ Warning: DOMDocument::schemaValidateSource() [domdocument.schemavalidatesource]: Invalid Schema in C:\Program Files

Re: [symfony-users] Error in symfony2 on Win7

2010-05-21 Thread Fabien Potencier
fixed now: http://github.com/fabpot/symfony/commit/269651235ae830fe8d93800f3fc70c6142b8bbc4 This patch will be included in the next version of the sandbox (end of June). In the meantime, you can just apply the patch or store your Symfony project in a path with no whitespaces. Fabien --

Re: [symfony-users] Error Message

2010-05-20 Thread DEEPAK BHATIA
Thanks for the inputs. We have installed symfony 1.4.1 on /root directory and /home directory. I was creating the project using symfony on /root directory so I was getting the problem. Then I created the project using symfony on /home directory which worked. Thanks once again for your support.

Re: [symfony-users] Error Message

2010-05-20 Thread Gareth McCumskey
You seem to have totally ignored the advice you were given. You really should spend more time learning how permissions work on a *nix machine before you make applications publicly available. Its not hard but its not the same as Windows (if thats what you are used to) because *nix machines have

[symfony-users] Error Message

2010-05-19 Thread DEEPAK BHATIA
*Hi,* ** *I installed a project using symfony 1.4.1 but when I type the URL to access my application I get the below error.* ** *==* *Warning*: require_once(/root/sfproject/lib/vendor/symfony/lib/autoload/sfCoreAutoload.class.php)

Re: [symfony-users] Error Message

2010-05-19 Thread Gábor Fási
It's pretty clear that you have a permission problem. On Wed, May 19, 2010 at 13:27, DEEPAK BHATIA toreachdee...@gmail.com wrote: Hi, I installed a project using symfony 1.4.1 but when I type the URL to access my application I get the below error. ==

Re: [symfony-users] Error Message

2010-05-19 Thread DEEPAK BHATIA
How do I resolve this ? I am root to the linux while creating everything. On Wed, May 19, 2010 at 6:05 PM, Gábor Fási maerl...@gmail.com wrote: It's pretty clear that you have a permission problem. On Wed, May 19, 2010 at 13:27, DEEPAK BHATIA toreachdee...@gmail.com wrote: Hi, I

Re: [symfony-users] Error Message

2010-05-19 Thread Gábor Fási
That's probably the problem. Make sure the user your httpd runs as has read access to your project, and write access to the cache and log folders. Run a project:permissions task, that should fix these errors. On Wed, May 19, 2010 at 15:22, DEEPAK BHATIA toreachdee...@gmail.com wrote: How do I

Re: [symfony-users] Error Message

2010-05-19 Thread abbbassi abidi
i will give you solution but you must resolved this correctly , go web/application_dev.php and commemnt the clause if like this /*if (!in_array(@$_SERVER['REMOTE_ADDR'], array('127.0.0.1', '::1'))) { die('You are not allowed to access this file. Check '.basename(__FILE__).' for more

Re: [symfony-users] Error Message

2010-05-19 Thread Eno
On Wed, 19 May 2010, DEEPAK BHATIA wrote: How do I resolve this ? I am root to the linux while creating everything. As a web developer, you ought to be aware of how permissions work on web servers, this is pretty basic stuff. On Linux/UNIX machines all processes run under their own user IDs

[symfony-users] error with the file() command

2010-04-12 Thread kim
hi, i'm trying to ewport pictures as a zip file. This works for local pictures but from the moment on i try to use it on pictures from the server (or other sites) it stops working and this is because the file() command doesn't work on url's with me? after a minute my apache crashes When i look

Re: [symfony-users] Error 500 backend application in production

2010-03-22 Thread Gábor Fási
Check your loginform's template to see if it echoes the correct url in the action property, also check if you have no_script_name disabled in the backend's settings.yml On Mon, Mar 22, 2010 at 01:24, Jose San Gil jsangi...@gmail.com wrote: Hi everybody, I'm working in a project with frontend

[symfony-users] Error 500 backend application in production

2010-03-21 Thread Jose San Gil
Hi everybody, I'm working in a project with frontend and backend application. The index.php of the project points to the frontend app and all the actions work great in this app over the production server However, when I try to use the backend application, the problems start. If I try to login

Re: [symfony-users] error installing sfDoctrineGuardPlugin

2010-03-19 Thread Marius Rugan
Hi, - sounds like a PEAR error so try to update PEAR if not - install sfDoctrineGuardPlugin by hand placing it in the plugins dir (or svn co/export it from trunk/branches - see readme of plugin) i would first try browsing around to see if php 5.3 is compatible with symfony unfortunately, i'm stuck

[symfony-users] error installing sfDoctrineGuardPlugin

2010-03-18 Thread kim
Hello, When i want to install sfDoctrineGuardPlugin I get following output C:\Users\Kimsymfony plugin:install sfDoctrineGuardPlugin plugininstalling plugin sfDoctrineGuardPlugin PHP Deprecated: Assigning the return value of new by reference is deprecated in

Re: [symfony-users] Error 500 when i try to login the web app in production

2010-03-09 Thread Gábor Fási
client denied by server configuration check your sever config On Tue, Mar 9, 2010 at 13:01, Javier Garcia tirengar...@gmail.com wrote: Hi, in production when i try to login to a user session of my web app, i get an error 500. This is what i'm founding in the php error log: [Tue Mar 09

Re: [symfony-users] Error 500 when i try to login the web app in production

2010-03-09 Thread Eno
On Tue, 9 Mar 2010, Javier Garcia wrote: [Tue Mar 09 05:47:02 2010] [error] [client 174.37.227.194] File does not exist: /home/mainhost/public_html/403.shtml http://www.symfony-project.org/getting-started/1_4/en/05-Web-Server-Configuration -- -- If you want to report a vulnerability

[symfony-users] Error 500 in production: if there isn't any frontend_dev.php how can i see the what is the problem?

2010-03-09 Thread Javier Garcia
Hi, just that. I didn't find anything inside the log folder. Javi -- 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] Error on Exception Handling using Event Notifications

2010-02-24 Thread Bruno Reis
Hi, I´m connecting the application.throw_exception event to my exception handler class. public function configure() { $this-dispatcher-connect( 'application.throw_exception', array('MyExceptionHandler', 'listenToApplicationException') ); } On the end

[symfony-users] Error message No description for object of class...

2010-02-23 Thread Adrien Mogenet
Hi all, let's consider these simple lines : foreach ($extraRows as $rowId = $extraValue) { var_dump($extraValue); $extraValue = new MemberExtraValue(); $extraValue-setValue($extraValue); //... } Well, if I print $extraValue. no problem. But in -setValue, it tries to set No description

Re: [symfony-users] Error message No description for object of class...

2010-02-23 Thread ReynierPM
On 2/23/2010 4:35 PM, Adrien Mogenet wrote: Well, if I print $extraValue. no problem. But in -setValue, it tries to set No description for object of class MyClass. WTF ?? If I set directly a value, it works. This error happens when you don't have created __toString() method in some classes.

[symfony-users] Error when checking out Symfony 2.0 SVN code

2010-02-18 Thread brent960
I've just tried unsuccessfully to checkout the latest Symfony 2.0 code from the Subversion mirror. I'm using a Windows Vista 64-bit environment, and I attempted the checkout using Tortoise SVN. The checkout starts, and runs for a while, and then it ends with the following errors written to the

[symfony-users] Error Updating Form

2010-02-10 Thread bobotheevildevilclown
My site is using Symfony 1.4.1 with Propel and a database running on Microsoft SQL 2008. I'm using a form class defined in /lib/form to allow users to view and edit rows in a table. I've added a use_fields() line to it to limit what shows up and changed one of the fields to use a checkbox

[symfony-users] Error on extending profile for sfguard

2010-02-08 Thread Samuel Morhaim
What am I doing wrong? I keep getting errors rebuilding and also importing fixtures.. Schema # config/doctrine/schema.yml Organization: actAs: { Timestampable: ~ } columns: sf_guard_user_id: { type: integer(5) } name: { type: string(255), notnull: true, unique: true } first_name:

[symfony-users] Error lectura de fechas en base de datos LATIN1 con formato d/m/Y

2010-01-08 Thread C
ERROR: Internally stored date/time/timestamp value could not be converted to DateTime: '20/01/2010' [wrapped: DateTime::__construct() [a href='datetime.--construct'datetime.--construct/a]: Failed to parse time string (20/01/2010) at position 0 (2): Unexpected character] stack trace * at ()

Re: [symfony-users] Error message format

2009-12-30 Thread Alexandru-Emil Lupu
I have done something like that. I will post my solution later today, as i haven't yet start my computer Alecs sent via htc magic On Dec 30, 2009 1:37 AM, Sid Bachtiar sid.bacht...@gmail.com wrote: Hi all, I embedded a form inside another form, and I try to print errors (of all the forms

Re: [symfony-users] Error message format

2009-12-30 Thread Alexandru-Emil Lupu
in my Form class object i ave added : public function getErrors($v = '') { foreach ($this-getErrorSchema() as $field=$error ) { foreach ($error-getErrors() as $currentError) { $v .= 'li'.sprintf(In the quot;%squot; tab you have an error:br strong%s/strong, $field ,

Re: [symfony-users] Error message format

2009-12-30 Thread Sid Bachtiar
I just tried it and it works really well! Thank you! :) On Wed, Dec 30, 2009 at 10:35 PM, Alexandru-Emil Lupu gang.al...@gmail.com wrote: in my Form class object i ave added :  public function getErrors($v = '')  {    foreach ($this-getErrorSchema() as $field=$error )    {      foreach

Re: [symfony-users] error in jobeet day9

2009-12-29 Thread Parijat Kalia
Your way of pointing the issue is broad, going through the entire jobeet tutorial is difficult for anyone...but from the looks of it...it says that there is an unknown column slug in your database table field list. Check across your schema.yml file, where the database table field list is

Re: [symfony-users] error in jobeet day9

2009-12-29 Thread Alexandru-Emil Lupu
Also, if you are using doctrine, check your schema.yml file. You might need to add actAs: [Sluggable] Alecs sent via htc magic On Dec 29, 2009 1:18 PM, Parijat Kalia kaliapari...@gmail.com wrote: Your way of pointing the issue is broad, going through the entire jobeet tutorial is difficult for

[symfony-users] Error installing Propel 1.5 plugin

2009-12-29 Thread Daniel Kucharski
Hi, I am trying to install the new propel plugin but struggle to install it on my 1.3 system. What am I missing? PS, I also noticed that the plugin status is still alpha. Anybody already using it? symfony plugin:install sfPropel15Plugin-0.5.5.tgz snippet

[symfony-users] Error message format

2009-12-29 Thread Sid Bachtiar
Hi all, I embedded a form inside another form, and I try to print errors (of all the forms combined) like this in the template: ?php foreach ($form-getErrorSchema()-getErrors() as $error): ? *?php echo $error-getMessage(); ?br/ ?php

[symfony-users] error in jobeet day9

2009-12-28 Thread vikram patel
hey i just finished the jobeet day 9 !! now i have an error which says: 500 | Internal Server Error | Doctrine_Connection_Mysql_Exception SQLSTATE[42S22]: Column not found: 1054 Unknown column 'j.slug' in 'field list' can anyone tell what it is?? i am new to symfony and php as well!! -- You

[symfony-users] Error trying to change the class of a validator

2009-12-22 Thread tirengarfio
Hi, i have extended a widget using sfWidgetFormInputFileEditable this way: public function configure() { parent::configure(); $this-widgetSchema['fotografia'] = new sfWidgetFormInputFileEditable(array( 'file_src' = '/uploads/fotografias_miembros/'.$this-getObject

Re: [symfony-users] Error 255 in Lime Unit Tests

2009-12-07 Thread Thomas Rabaix
The lime2 version will tell you why an error occurs, for now every time you see dubious just run your test directly with php yourTest.php On Mon, Dec 7, 2009 at 8:47 AM, Christopher Schnell ty...@mda.ch wrote: Thanks for your hint, Thomas. There was an fatal error in my test because I wrote

[symfony-users] Error doctrine:build-schema

2009-12-06 Thread Mathieu
Hello. I've create my tables on SQL myself. I've configure the database connection, but now when I execute php symfony doctrine:build-schema I've an error with a table : x...@ssh1:~/xxx$ php symfony doctrine:build-schema doctrine generating yaml schema from database SQLSTATE[HY000]: General

Re: [symfony-users] Error 255 in Lime Unit Tests

2009-12-06 Thread Christopher Schnell
Thanks for your hint, Thomas. There was an fatal error in my test because I wrote $this-myVar... in a lime test. I am so used to writing PHPUnit Tests, which are classes, that I didn't see it. But now, I am asking myself, what the symfony commands for lime are for, if the output doesn't hint

[symfony-users] Error 255 in Lime Unit Tests

2009-12-04 Thread Christopher Schnell
Hi all, I have an error, when running lime unit tests with ./symfony test:unit One of my testfiles returns status 255 and thus failes. However, if I run the test only for the file (like ./symfony test:unit MyClass), all tests are made successfully and it look like everything went fine. I

Re: [symfony-users] Error 255 in Lime Unit Tests

2009-12-04 Thread Thomas Rabaix
run the test from php directly : php path_to_/yourTest.php On 4 déc. 2009, at 12:21, Christopher Schnell wrote: Hi all, I have an error, when running lime unit tests with ./symfony test:unit One of my testfiles returns status 255 and thus failes. However, if I run the test only for the

[symfony-users] Error using sfFacebookConnectPlugin and sfGuardPlugin

2009-12-02 Thread Zach
I am attempting to set up a new project using Facebook Connect and thought I would give the sfFacebookConnectPlugin a try. It looks like a great plugin and I would like to thank Fabrice and all the other contributors for their hard work to make this plugin available. I just hope I can get it all

[symfony-users] [Error] - Schema.yml (trying to implement a self-relationship)

2009-12-01 Thread ruigoncalves
Hi all! I have the following schema.yml file for my database definition: Section: actAs: I18n: fields: [name] columns: name: type: string(30) notnull: true color: string urlShortDesc: string Page: actAs: I18n: fields: [name,html,urlShortDesc]

Re: [symfony-users] [Error] - Schema.yml (trying to implement a self-relationship)

2009-12-01 Thread Alexandre Salomé
You must define your subpage column on Page model. subpage: integer(4) Alexandre 2009/12/1 ruigoncalves skcra...@gmail.com Hi all! I have the following schema.yml file for my database definition: Section: actAs: I18n: fields: [name] columns: name: type:

[symfony-users] Error in cache when is_secure is on

2009-11-01 Thread oplaza
When i activate the security in: security.yml default: is_secure: on and enable the login form: .actions: login_module: user # To be called when a non- authenticated user login_action: login # Tries to access a secure page the cache for every module is

[symfony-users] Error creating database on ALTER TABLE..

2009-10-17 Thread cosmy
Hi all. I'm receving this error while i do doctrine:build-all or insert-sql: SQLSTATE[HY000]: General error: 1005 Can't create table 'ssm.#sql-9cc_12' (errno: 150). Failing Query: ALTER TABLE skill ADD CONSTRAINT skill_idcategory_category_id FOREIGN KEY (idcategory) REFERENCES category(id) ON

[symfony-users] ERROR: edit data in the database

2009-09-08 Thread Germana Oliveira
Im getting this error when i try to edit something: *Catchable fatal error*: Argument 1 passed to sfFormPropel::__construct() must be an instance of BaseObject, integer given, called in /home/germana/www/indepabis/lib/form/DenunciaForm.class.php on line 71 and defined in

[symfony-users] error on day 12 of symfony tutorial

2009-09-01 Thread yyyyxxxx42
I am getting an error like Warning: Invalid argument supplied for foreach() in C:\wamp\www \development\sfprojects\jobeet\lib\vendor\symfony\lib\generator \sfModelGeneratorConfiguration.class.php on line 316 in the admin new, edit job post page. But when i comment class parameter in the below

[symfony-users] Error - You must specify a moduleName

2009-07-27 Thread xhe
Today I suddenly meet an error for my syfmony project, this is symfony 1.0 project, the error message is as follows: *** [sfParseException] You must specify a moduleName stack trace * at () in SF_ROOT_DIR\lib\symfony\generator\sfCrudGenerator.class.php line 52 ...

[symfony-users] error instalando symfony en UBUNTU 9.04

2009-07-17 Thread Bambinoelkilo
Hola soy nuevo en symfony y estoy instalando symfony en UBUNTU 9.04 , y cuando ejecuto: pear install symfony/symfony me da el siguiente error downloading symfony-1.2.8.tgz ... Starting to download symfony-1.2.8.tgz (2,695,461 bytes)

[symfony-users] Error

2009-06-11 Thread juaninf
That means this Empty module and/or action after parsing the URL / category/ (/). where I miss something? --~--~-~--~~~---~--~~ 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] Error with uploads in Doctrine

2009-06-11 Thread Sid Ferreira
hi all!I just started a study on Doctrine and unfortunlly got an error. My schema is: Post: actAs: { Timestampable: ~ } columns: ds_title: { type: string(255), notnull: true } ds_text: { type: string(4000), notnull: true } PostAttachment: columns: post_id: { type: integer,

[symfony-users] Error in Form validation - Jobeet tutorial?

2009-06-09 Thread fesja
Hi, I'm newby with Symfony, doing the Jobeet tutorial and learning a lot. I'm liking it, how everything has been well thought. I've found a problem in Day 11 - Testing your forms. I'm validating the job form and there is an error with the mime type. If I post that job in the browser it works.

[symfony-users] Error while trying to extend from sfGuard

2009-06-01 Thread Reynier Perez Mira
Hi every: I try to build my own logic with sfGuard for LDAP authentication because the code in the Wiki doesn't work for me. I'm based on this two posts from Sensio Labs: http://www.symfonylab.com/extra-questions-and-solutions-for-sfguardplugin/

[symfony-users] Error codes

2009-05-02 Thread HAUSa
Hi all, I made my own validator, which works perfectly. There is only one problem: I cannot make more error messages then required and invalid. See my code below, I want to check a signin procedure. I want two error messages: one if the e-mailaddress does not exist (user does not exist) and one

[symfony-users] error en el tutorial de Jobeet... capitulo 3...

2009-02-17 Thread EynaRix
Saludos a todos estoy empezando a conocer Symfony y me tope con el siguiente error al ejecutar: E:\xampp\htdocs\Jobeetsymfony propel:build-sql schemaconverting E:/xampp/htdocs/Jobeet/config/schema.yml to XML schemaputting E:/xampp/htdocs/Jobeet/config/generated-schema.xml propel

[symfony-users] Error while Overriding propel plugin classes, autoloading and testing

2009-02-08 Thread dreur
I overrided sfGuardUser and sfGuardUserPeer from the sfGuard Plugin. On the web everything is fine. But now I started to write tests and I when I'm calling a aSfGuardUserObject-method() I get a sfException telling me baseSfGuardUser::method doesn't exist. What is funny is that it works the

[symfony-users] Error in documentation

2009-01-14 Thread Lee Bolding
Just a trivial error in the documentation, where do I report this to? http://www.symfony-project.org/api/1_2/sfRenderingFilter says... sfRenderingFilter is the last filter registered for each filter chain. This filter does the rendering. BUT

[symfony-users] Error, bucle or not in The symfony and Doctrine book (chapter 6)

2009-01-08 Thread David Castelló
Hello! Firstly, sorry my english is no good. Url: http://www.symfony-project.org/book/doctrine/1_2/en/06-Working-With-Data Section: BlogPost hasMany Tag as Tags To ensure duplicate tags are not inserted in to the database, it suggest: [php] class TagTable extends Doctrine_Table { public

[symfony-users] Error in My First Project (1.2)

2008-12-07 Thread Sid Ferreira
http://www.symfony-project.org/tutorial/1_2/my-first-project The part that handles the database configuration failed to me and to a frend of mine. Also, que part with the link to comment a post. -- Sidney G B Ferreira Desenvolvedor Web - Tibox Innovations Steve Martin

[symfony-users] Error in a very simple schema

2008-12-05 Thread Sid Ferreira
http://pastebin.com/d6c1bf092 - trace Schema: propel: news: id: ~ ds_title: type: varchar(128) ds_short: type: varchar(256) ds_text: type: longvarchar created_at: ~ fl_active: type: boolean just the build-model

[symfony-users] Error generating forms with Propel

2008-10-13 Thread tveon
Hi all, I am making a very simple page using Symfony, and have already run into a bit of a problem using forms. After successfully building the model, I want to generate the corresponding form. Here is what happens: symfony propel:build-forms propelgenerating form classes Fatal

[symfony-users] error 500

2008-05-09 Thread kusum
hi, i want to customize the error 500 page.i defined a error500.php page in web/errors directory. i have set the sf_debug value false in name_dev.php .but it is not showing this page. --~--~-~--~~~---~--~~ You received this message because you are subscribed

[symfony-users] error 500

2008-05-09 Thread kusum
hi, i defined this line in my action class function. $this-getResponse()-setStatusCode(500); now i can see error 500 page.Now i want to customize this page .i have defined error500.php page in web/errors directory and i have set the value of sf_debug false in web/frontend_dev.php file.but it

[symfony-users] error instaling sfSimpleCMSPlugin - SfcmsPlatform.php not found

2008-02-25 Thread Bruno Reis
Hi there, I want to run the sfSimpleCMSPlugin... I installed the SFGuardPlugin and SFActAsNestedSet... all right When I tried to run a propel-build-model command I got the following error propel om: [echo] +--+ [echo] |

[symfony-users] Error handling conventions

2008-02-07 Thread borg42
Hello all, I'm new to Symphony and could not yet find how it is recommended to handle, issue and propagate errors. From what I've seen, it might be depending on the layer. (Propel throws an exception if a unique key is violated, but it's not clear where to catch it; other classes seem to use

[symfony-users] Error 500

2008-01-10 Thread Alexander Deruwe
Hey guys, I'm getting frequent error 500's on production which I am so far unable to reproduce on my dev environment. Is there any way I can disable this global error 500 page and show the actual exceptions which are (probably) being thrown and causing these error 500 pages in my

[symfony-users] Error in Symfony 1.0.6?

2007-08-01 Thread Marc Torres
Hello all, I've just installed symfony from pear, and it installs version 1.0.6, but when I run the symfony command I get: Parse error: parse error in /Applications/xampp/xamppfiles/bin/symfony on line 34 is it something break? Anyone out there has tried the 1.0.6 version? Cheers -- Beware

[symfony-users] Error checking out sfJpGraphPlugin

2007-04-04 Thread Zakaria
Hi, I want to install sfJpGraphPlugin as instructed in the wiki I did svn co http://svn.symfony-project.com/plugins/sfJpGraphPlugin ./plugins/sfJpGraphPlugin but it gives me these errors: svn: REPORT request failed on '/!svn/vcc/default' svn: REPORT of '/!svn/vcc/default': 400 Bad Request