[symfony-users] Re: jobeet tutorial http://localhost:8080/frontend_dev.php/job

2011-04-20 Thread voidpointer
On Apr 20, 8:48 am, Haris Fauzi haris.fa...@gmail.com wrote: So what's the problem now? You said your web page looks like rubbish, that was because you didn't have the images stylesheets. Now you have them in place, you should be able to have a better view of the display. Just continue the

[symfony-users] Re: jobeet tutorial http://localhost:8080/frontend_dev.php/job

2011-04-20 Thread voidpointer
On Apr 20, 9:30 am, voidpointer voidpoin...@rocketmail.com wrote: On Apr 20, 8:48 am, Haris Fauzi haris.fa...@gmail.com wrote: So what's the problem now? You said your web page looks like rubbish, that was because you didn't have the images stylesheets. Now you have them in place, you

Re: [symfony-users] Re: jobeet tutorial http://localhost:8080/frontend_dev.php/job

2011-04-20 Thread Haris Fauzi
Oh dear, Well of course! If you want to show that image then you must enclose it in img src=filename / tag. Why would you print the filename instead? Go on to day 4, you will see the code to access the image file in the HTML way. :-) It will be printed like: img src=/uploads/jobs/?php echo

[symfony-users] Re: jobeet tutorial http://localhost:8080/frontend_dev.php/job

2011-04-20 Thread voidpointer
Hello again and sorry for this. I have installed symfony-1.4.11 I have come across some stuff in the day 3 tutorial about modifying or creating (it's not made clear) class declarations for JobeetCategory, JobeetJob and JobeetAffiliate. The comments indicate these to be at lib/model. They are

[symfony-users] Re: jobeet tutorial http://localhost:8080/frontend_dev.php/job

2011-04-20 Thread voidpointer
Haris, I agree, it should be img but the symfony has generated it the way it is. The tutorial does not mention that the page will be built wrong like this. I think the tutorial needs a section setting the expectations of the user. Or something. Cheers - VP -- If you want to report a

Re: [symfony-users] Re: jobeet tutorial http://localhost:8080/frontend_dev.php/job

2011-04-20 Thread Haris Fauzi
On 20 April 2011 17:15, voidpointer voidpoin...@rocketmail.com wrote: Hello again and sorry for this. I have installed symfony-1.4.11 I have come across some stuff in the day 3 tutorial about modifying or creating (it's not made clear) class declarations for JobeetCategory, JobeetJob and

[symfony-users] Re: jobeet tutorial http://localhost:8080/frontend_dev.php/job

2011-04-19 Thread voidpointer
On Apr 19, 8:19 am, Sebastian Göttschkes sebastian.goettsch...@googlemail.com wrote: Hi there, would you mind showing the apache vhost you added (I asume you're using apache)? I would guess the default directory isn't set correctly but the sf shortcut is. Regards, Sebastian Moi

[symfony-users] Re: jobeet tutorial http://localhost:8080/frontend_dev.php/job

2011-04-19 Thread voidpointer
OK. Haris, will try that out. Thanks. Cheers - VP On Apr 19, 9:13 am, Haris Fauzi haris.fa...@gmail.com wrote: In day 4 there's a link to download the stylesheets and images used for Jobeet tutorial. Download and put them in the suggested directories. Regards, Haris On 18 April 2011

[symfony-users] Re: jobeet tutorial http://localhost:8080/frontend_dev.php/job

2011-04-19 Thread voidpointer
Hmmm Haris, did that but no significant change. There is a blue/grey background colour but that is the only change. On Apr 19, 3:12 pm, voidpointer voidpoin...@rocketmail.com wrote: OK. Haris, will try that out. Thanks. Cheers - VP On Apr 19, 9:13 am, Haris Fauzi haris.fa...@gmail.com

Re: [symfony-users] Re: jobeet tutorial http://localhost:8080/frontend_dev.php/job

2011-04-19 Thread Haris Fauzi
Well, you're getting close. At least now the CSS has been recognised, I suppose. Look at the HTML source and see what you're missing, e.g. if there's any IMG SRC tag then try to locate the image directly from the browser ( http://localhost:8080/images/logo.jpg,

Re: [symfony-users] Re: jobeet tutorial http://localhost:8080/frontend_dev.php/job

2011-04-19 Thread Haris Fauzi
So what's the problem now? You said your web page looks like rubbish, that was because you didn't have the images stylesheets. Now you have them in place, you should be able to have a better view of the display. Just continue the tutorial and see what you get next. When you finish day 4 then you

[symfony-users] Re: Jobeet tutorial - Functional test fails while manual test in browser works correctly

2011-02-16 Thread Rohit
I found the issue - it was my mistake in lib/test/ JobeetTestFunctional.class.php in function createJob(). Earlier, the code was: return $this- get('/job/new')- click('Preview your job', array('job' = array_merge(array( 'company' = 'Sensio Labs', 'url'

[symfony-users] Re: Jobeet Tutorial - routing problem

2010-09-23 Thread martin
Thank you Eno, it was the rewrite module, now it works as expected. Regards, Martin On Sep 23, 4:39 am, Eno symb...@gmail.com wrote: On Wed, 22 Sep 2010, martin wrote: The homepage works well, but any other URL's keep telling me that the requested URL wasn't found.. Example: On

[symfony-users] Re: Jobeet Tutorial | Day 17 with sf1.4.4

2010-06-01 Thread Tom Ptacnik
I thing the error is clear ... getConnection() isn't a static method, so you can't call it with ::getConnection(), but with - getConnection() you have to do something like Doctrine::getTable('SEO')-getConnection() or SEOTable::getInstance()-getConnection() (only in new version of Symfony .. look

Re: [symfony-users] Re: Jobeet Tutorial - Day 3 - databases.yml problem

2010-05-27 Thread Ben Bieker
Hi, yeah maybe that was the problem that sth wrong was stuck in the cache. I'm new to Symfony too but what I've learned so far is if sth goes wrong, clear the cache first, if it goes wrong again, then you have a problem ;) Most of the time you got to clear the cache when you have new classes for

Re: [symfony-users] Re: Jobeet Tutorial - Day 3 - databases.yml problem

2010-05-27 Thread Garry Freemyer
@googlegroups.com Sent: Thu, May 27, 2010 12:32:58 AM Subject: Re: [symfony-users] Re: Jobeet Tutorial - Day 3 - databases.yml problem Hi, yeah maybe that was the problem that sth wrong was stuck in the cache. I'm new to Symfony too but what I've learned so far is if sth goes wrong, clear the cache

[symfony-users] Re: Jobeet Tutorial - Day 3 - databases.yml problem

2010-05-26 Thread comb
you maybe have some tabulators in your database.yml... but you must not use tabulators in .yml-files (only whitespaces). On 27 Mai, 03:32, Tony Peng tpen...@gmail.com wrote: Hi all, I'm new to Symfony and I'm going through the Jobeet tutorial v1.4 for Doctrine. I am currently stuck on Day 3.

[symfony-users] Re: Jobeet Tutorial - Day 3 - databases.yml problem

2010-05-26 Thread comb
Are the tables created and the fixtures loaded if u drop the db by hand in phpmyadmin and then execute symfony doctrine:build --all --and- load --no-confirmation? You may provide the complete error-message... On 27 Mai, 03:59, Tony Peng tpen...@gmail.com wrote: thanks for the responses guys,

Re: [symfony-users] Re: Jobeet Tutorial - Day 3 - databases.yml problem

2010-05-26 Thread Garry Freemyer
file is in the correct directory? There would not be a space in the file name would there? From: Tony Peng tpen...@gmail.com To: symfony-users@googlegroups.com Sent: Wed, May 26, 2010 7:30:27 PM Subject: Re: [symfony-users] Re: Jobeet Tutorial - Day 3

Re: [symfony-users] Re: Jobeet Tutorial - Day 3 - databases.yml problem

2010-05-26 Thread Tony Peng
@googlegroups.com Sent: Wed, May 26, 2010 7:30:27 PM Subject: Re: [symfony-users] Re: Jobeet Tutorial - Day 3 - databases.yml problem yes, the correct tables and fixtures are loaded when I drop the database and execute symfony doctrine:build --all --and- load --no-confirmation. i've attached

Re: [symfony-users] Re: Jobeet tutorial | Day 3 | doctrine:insert-sql

2010-05-12 Thread Kim Rowan
Hi Graham Thanks for your response. I have followed all the instructions to the letter; my config/databases.yml file looks like this: all: doctrine: class: sfDoctrineDatabase param: dsn: 'mysql:host=localhost;dbname:jobeet' username: root password: secret I

[symfony-users] Re: Jobeet tutorial | Day 3 | doctrine:insert-sql

2010-05-12 Thread grahamj42
Kim, From the MySql command line, I get the same error if I select a non- existent database and then try to create a table. However Symfony stops with a PDO Connection Error quoting MySql error 1049 (unknown database), rather than proceeding to insert the table and giving the error 1046 which you

[symfony-users] Re: Jobeet tutorial | Day 3 | doctrine:insert-sql

2010-05-11 Thread grahamj42
Did you follow the instructions under the subtitle The Database to create the schema and configure Symfony's config/databases.yml file with appropriate values for your database server? It looks to me as if this step failed. Symfony doesn't touch the database until the doctrine:insert-sql task. --

[symfony-users] Re: Jobeet Tutorial

2010-03-10 Thread Parijatha Kumar
Hi, Before you build the modules, you have to build the form classes first. That means before you issue your propel:generate-module command, you should issue propel:build-form command. That works for me with doctrine also. Thank you. -- Parijatha Kumar On Mar 11, 10:59 am, DEEPAK BHATIA

Re: [symfony-users] Re: Jobeet Tutorial

2010-03-10 Thread DEEPAK BHATIA
Thanks, it is working now :-) On Thu, Mar 11, 2010 at 12:18 PM, Parijatha Kumar parijathaku...@gmail.comwrote: Hi, Before you build the modules, you have to build the form classes first. That means before you issue your propel:generate-module command, you should issue propel:build-form

[symfony-users] Re: Jobeet Tutorial: jobs.yml data fixture example won't doctrine:data-load.

2010-03-01 Thread Trung Huynh
gets me this :( doctrine Loading data fixtures from /Users/trung/Websites/jobeet/data/fixtures Warning: strtotime() expects parameter 1 to be string, array given in / Users/trung/Websites/lib/vendor/symfony/lib/plugins/sfDoctrinePlugin/ lib/vendor/doctrine/Doctrine/Record.php on line 1526

Re: [symfony-users] Re: Jobeet Tutorial: jobs.yml data fixture example won't doctrine:data-load.

2010-03-01 Thread Alexandru-Emil Lupu
I think that on job_expired token is a typo. Try to chage it from 'job_expired' to 'expired_job' or so... i am mono tasking and i cannot copy paste what i think is the right key for the fixture... Alecs sent via htc magic On Mar 1, 2010 4:20 PM, Trung Huynh forrestgu...@gmail.com wrote: gets me

Re: [symfony-users] Re: Jobeet Tutorial: jobs.yml data fixture example won't doctrine:data-load.

2010-03-01 Thread Trung Huynh
changing it to expired_job doesn't help neither. I have no clue what's going on. I really want to go on with the tutorial, i like it so far. On Mon, Mar 1, 2010 at 4:58 PM, Alexandru-Emil Lupu cont...@alecslupu.rowrote: I think that on job_expired token is a typo. Try to chage it from

[symfony-users] Re: jobeet tutorial Day3: ./symfony propel:build-model and Fetal error

2009-10-20 Thread Saeid Moradi
Hi All, Answering my questions . I've increased memory_limit to 128M in php.ini (*) and every things looks fine ! :-) (*) you need to know which php.ini is used by your console , you could find it by run $ php check_configuration.php Also If we have check memory_limit then probebly would save

[symfony-users] Re: jobeet tutorial Day3: ./symfony propel:build-model and Fetal error

2009-10-20 Thread Arian Hojat
saw you answered your own questions, just wanted to mention if you want to start using xml instead of yml, you can run 'symfony propel-convert-yml-schema' and vice versa 'symfony propel-convert-xml-schema' lates, Arian --~--~-~--~~~---~--~~ You received this

[symfony-users] Re: jobeet tutorial data model problem

2009-10-01 Thread ereallstaff
I know, I had also same problem. I can say to you that yaml files are very hard taste expecially at the beginning. yesterday I was going fool for same reason: after I did that way , I copied and pasted code of specific lesson from the svn repository ( you can navigate from here :

[symfony-users] Re: jobeet tutorial data model problem

2009-10-01 Thread Gareth McCumskey
As this says: schemaputting /home/grkn/public_html/...eet/ config/generated-schema.xml it succesfully parsed and wrote your xml file from the yml, thats not the problem, however: Error initializing nested element isset [wrapped: OrCondition (unknown) doesn't support the 'isset'

[symfony-users] Re: jobeet tutorial data model problem

2009-10-01 Thread gurkanoluc
No but lib/plugins/sfPropelPlugin/lib/vendor/propel-generator/ build.xml has 3 isset tags. I thing they are important for generation tool because when i comment them it didn't work. On Oct 1, 12:19 pm, Gareth McCumskey gmccums...@gmail.com wrote: As this says: schema    putting

[symfony-users] Re: jobeet tutorial data model problem

2009-10-01 Thread Gareth McCumskey
Perhaps a good idea is to run php lib/vendor/symfony/data/bin/check_configuration.php And see if that helps you identify anything that may be missing that symfony requires. On Thu, Oct 1, 2009 at 12:25 PM, gurkanoluc gurkano...@gmail.com wrote: No but

[symfony-users] Re: jobeet tutorial data model problem

2009-10-01 Thread gurkanoluc
My computer can cause this problem because i changed my distro to ubuntu but it gives the same error :( On Oct 1, 3:28 pm, Gareth McCumskey gmccums...@gmail.com wrote: Perhaps a good idea is to run php lib/vendor/symfony/data/bin/check_configuration.php And see if that helps you identify

[symfony-users] Re: jobeet tutorial data model problem

2009-10-01 Thread gurkanoluc
I solved problem. Thanks for your help :) On Oct 1, 10:08 pm, gurkanoluc gurkano...@gmail.com wrote: My computer can cause this problem because i changed my distro to ubuntu but it gives the same error :( On Oct 1, 3:28 pm, Gareth McCumskey gmccums...@gmail.com wrote: Perhaps a good idea

[symfony-users] Re: jobeet tutorial data model problem

2009-09-30 Thread ereallstaff
From another newbie, seems to be an error in writing schema.yml Please check to correct position element in schema using only spaces and not bar space . All elements got to be in same line ( parents with parents and child inline with child) then clear cache and retry :D On Sep 30, 4:05 am,

[symfony-users] Re: jobeet tutorial data model problem

2009-09-30 Thread gurkanoluc
I'm sure writing schema correctly. I'm givin indents using space bar not using tab. On Sep 30, 11:34 am, ereallstaff ereallst...@gmail.com wrote: From another newbie, seems to be an error in writing schema.yml Please check to correct position element in schema using only spaces and not bar

[symfony-users] Re: jobeet tutorial backend app problem

2009-09-05 Thread Stefan Koopmanschap
Hi, Some basic checks to make sure this is not the problem: Did you build-all or build-form? Have you cleared the cache? These would be the two main reasons which might cause/solve this Stefan On Fri, Sep 4, 2009 at 11:21 PM, dcdchir...@gmail.com wrote: Hello, I'm approximately following

[symfony-users] Re: jobeet tutorial backend app problem

2009-09-05 Thread dc
Thank you for your answer. It helped a lot. I run build-forms which did not do solve my problem, then I run build-filters and after cache-clear all works, thank you. --Dan On Sep 4, 11:28 pm, Stefan Koopmanschap stefan.koopmansc...@symfony- project.com wrote: Hi, Some basic checks to make

[symfony-users] Re: Jobeet tutorial Don't display style in Job App

2009-06-30 Thread seifolah Ghaderi
Thanks for replay. It is view.yml - default: http_metas: content-type: text/html metas: #title:symfony project #description: symfony project #keywords: symfony, project #language: en

[symfony-users] Re: Jobeet tutorial Don't display style in Job App

2009-06-30 Thread NairuS
Hello, It looks correct. You can compare your code with the svn source: http://svn.jobeet.org/doctrine/tags/release_day_{nbOfDay}/ Change the pattern {nbOfDay} by the day you read. (01,02,...) Bye, NairuS 2009/6/30 seifolah Ghaderi sepel...@gmail.com Thanks for replay. It is view.yml

[symfony-users] Re: Jobeet tutorial Don't display style in Job App

2009-06-18 Thread Thomas Dedericks
Hi, Is the page entirely rendered ? With its layout ? Check your PHP error log, and make sure that you haven't exhausted the available memory... Le Thu, 18 Jun 2009 08:36:14 +0200, seifolah Ghaderi sepel...@gmail.com a écrit: Hi Anyone. I'm new in symfony .I 'm reading jobeet tutorial.

[symfony-users] Re: Jobeet tutorial Don't display style in Job App

2009-06-18 Thread NairuS
Hello, I'm new in symfony and I had this problem 2 days ago. Be sure your view.yml is ok. check all the css and images clear the cache : php symfony cc Bye NairuS ;) 2009/6/18 Thomas Dedericks tho...@tequila-studio.com Hi, Is the page entirely rendered ? With its layout ? Check your PHP error

[symfony-users] Re: jobeet tutorial

2009-03-17 Thread Carsten Schumann
Hi! With high probability, your webserver does not invoke the php interpreter for .php files. To test it, create a file in the web directory named phpinfo.php and put the following code inside: ?php phpinfo(); ? If you get a large page with lots of information about php your webserver does

[symfony-users] Re: Jobeet Tutorial, Day 16, Propel edition

2009-02-08 Thread krassswr krasssswr
http://trac.symfony-project.org/ticket/5820 . I have some kind of dirty hack. C:\xampp\php\PEAR\symfony\plugins\sfPropelPlugin\lib\vendor\propel-generator\classes\propel\engine\builder\sql\mysql\MysqlDDLBuilder.php row 161 old version : $vendorSpecific =

[symfony-users] Re: Jobeet Tutorial, Day 16, Propel edition

2009-02-08 Thread Gareth McCumskey
If you use truncate it also resets auto increment value to 1: Truncate table_name; On 2/8/09, krassswr krawr krass...@gmail.com wrote: http://trac.symfony-project.org/ticket/5820 . I have some kind of dirty hack.

[symfony-users] Re: Jobeet Tutorial, Day 16, Propel edition

2009-02-07 Thread krassswr krasssswr
I continue to day 17 and I got other problem lucene didn't work as expected. Now I follow the jobeet tutorial and I'm on day 17. Where we add lucene search engine. Functional test are ok, but in browser I didn't get results from searching.I even write my own test and it works as expected

[symfony-users] Re: Jobeet Tutorial, Day 3, Doctrine edition

2009-02-03 Thread Jonathan Wage
It was a mistake. You should actually be removing the web/sfPropelPlugin folder. - Jon On Tue, Jan 27, 2009 at 7:01 PM, Eno symb...@gmail.com wrote: When setting up the ORM plugin, can someone explain why do we need to remove web/sfDOctrinePlugin folder? Its not really explained too well in

[symfony-users] Re: Jobeet Tutorial, Day 16, Propel edition

2009-02-03 Thread Kris Wallsmith
It looks like you have an error in your application's routing.yml file. Revisit that part of the tutorial and double check you've included a class: entry under the appropriate route. Kris -- Kris Wallsmith | Community Manager kris.wallsm...@symfony-project.com Portland, Oregon USA

[symfony-users] Re: jobeet tutorial routing problem

2009-01-26 Thread Harinath Mallepally
In case of dev environment (frontend_dev.php), I am able to access the pages properly and everytime 'frontend_dev.php' is inserted into each URL. I read that environment details shouldn't be exposed in a production environment scenario. But the link below for new job posting should be working

[symfony-users] Re: jobeet tutorial in pdf

2009-01-20 Thread Kyra
DOES anybody know a pdf version... I AM TRYING It'S COULD TO CHANGE ALSO IT'S COULD BE AVAIBLE for all Je ne te traduit pas le verbe MENTIR. Toute fausse déclaration est passible des peines prévues par l’article 154 du Code pénal. Tu vois moi aussi je peux t'espionner sur le net! ta

[symfony-users] Re: jobeet tutorial in pdf

2009-01-07 Thread Fabien Potencier
An official PDF version will be available in the comings days/weeks. -- Fabien Potencier Sensio CEO - symfony lead developer sensiolabs.com | symfony-project.com | aide-de-camp.org Tél: +33 1 40 99 80 80 halfer wrote: Could anyone wanting to participate in this idea post a message on the

[symfony-users] Re: jobeet tutorial in pdf

2009-01-07 Thread themire
Would be great to have the book in PDF too! Does it exist? On Jan 6, 3:21 pm, halfer google.com.20080213...@jondh.me.uk wrote: Could anyone wanting to participate in this idea post a message on the forum, to avoid duplication of effort. An English PDF has already been created for Jobeet, but

[symfony-users] Re: jobeet tutorial in pdf

2009-01-07 Thread John Masson
We have a zipped html version of the 1.2 book and Jobeet tutorial available here : http://symfonynerds.com/blog/?p=152 Not a pdf, but does the same job, ie: giving you offline access. On Jan 2, 5:35 am, Fabien Marchewka fura...@gmail.com wrote: Hi, Anybody here know about apdfversion of

[symfony-users] Re: jobeet tutorial in pdf

2009-01-06 Thread Fabien Marchewka
Thank you a lot. On 6 jan, 02:46, Adrian Gould kiltot...@gmail.com wrote: Fabien I'm thinking of creating a full PDF for the Jobeet in English - have   to work out how to do a few things like automate the index etc. using   Acrobat Pro. Will keep everyone informed. Ady On 02/01/2009,

[symfony-users] Re: jobeet tutorial in pdf

2009-01-06 Thread halfer
Could anyone wanting to participate in this idea post a message on the forum, to avoid duplication of effort. An English PDF has already been created for Jobeet, but as per my comments there, some improvements could be made: http://www.symfony-project.org/forum/index.php/m/69139/

[symfony-users] Re: jobeet tutorial in pdf

2009-01-05 Thread Adrian Gould
Fabien I'm thinking of creating a full PDF for the Jobeet in English - have to work out how to do a few things like automate the index etc. using Acrobat Pro. Will keep everyone informed. Ady On 02/01/2009, at 07:35 , Fabien Marchewka wrote: Hi, Anybody here know about a pdf version

[symfony-users] Re: Jobeet tutorial for Doctrine

2008-12-17 Thread Eno
On Dec 16, 1:42 pm, Jonathan Wage jonw...@gmail.com wrote: The tutorials are up to date now. I dont think the community can thank you enough for this excellent Doctrine resource. Im guessing a lot of us have been waiting for 1.2 and the tutorial is just awesome. Cheers! --

[symfony-users] Re: Jobeet tutorial for Doctrine

2008-12-16 Thread zero0x
John thank you for your work :) I'm not reading Jobeet for Propel, only for Doctrine, so it is really helpful. Thank you again :) On Dec 16, 12:45 am, Jonathan Wage jonw...@gmail.com wrote: I am working to keep it up to date with Propel. I just was out of town for a symfony training last

[symfony-users] Re: Jobeet tutorial for Doctrine

2008-12-16 Thread Jonathan Wage
The tutorials are up to date now. - Jon On Tue, Dec 16, 2008 at 4:13 AM, zero0x zero0...@gmail.com wrote: John thank you for your work :) I'm not reading Jobeet for Propel, only for Doctrine, so it is really helpful. Thank you again :) On Dec 16, 12:45 am, Jonathan Wage

[symfony-users] Re: Jobeet tutorial for Doctrine

2008-12-15 Thread Jonathan Wage
I am working to keep it up to date with Propel. I just was out of town for a symfony training last week and I was gone over the weekend. I have committed up to day 12 and will commit the remaining days tomorrow. It will be slightly delayed behind Propel but I'll try my best to commit the Doctrine

[symfony-users] Re: Jobeet tutorial, day 1 - blank page

2008-12-09 Thread Nickolas Daskalou
Did you try accessing http://localhost:8080/frontend_dev.php to see if any errors come up in the dev environment? 2008/12/9 blue92877 [EMAIL PROTECTED] Hello - I am using windows vista. I am brand new to symfony and am trying to learn it via the Jobeet tutorial. I can't get past Day 1. I

[symfony-users] Re: Jobeet tutorial, day 1 - blank page

2008-12-09 Thread Lee Bolding
use this : http://www.symfony-project.org/plugins/sfErrorHandlerPlugin then access your dev controller ;) On 9 Dec 2008, at 08:34, blue92877 wrote: Hello - I am using windows vista. I am brand new to symfony and am trying to learn it via the Jobeet tutorial. I can't get past Day 1. I