Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
2answers
6k views

Symfony 2.0 step by step tutorial required

I need tutorial about symfony 2.0.Any links or suggestion would be appreciated.Note: I just have a little knowledge about Jobeet tutorial and dont have a full fledged project developed on symfony...
2
votes
1answer
390 views

Removing default routing in symfony causes internal server error

Error Message: The route "default" does not exist. Yes, it doesn't exist. But as described in the Doctrine version of "Practical Symfony | Day 5" everything should work well when default routing is ...
1
vote
1answer
802 views

Issues with doctrine build in Symfony

I am getting stuck with this Symfony command after following the Jobeet tutorial on their site. After running the build model command, here's what I get: $ php symfony doctrine:build --model ...
1
vote
2answers
746 views

propel:build schema driver fails

I'm doing jobeet day 3 and I copied the schema.yml into the config directory and so I'm trying to create a database schema and I ran: $sudo php symfony propel:build-schema propel Running ...
0
votes
1answer
65 views

action.class for current user

i learn Symfony 1.4 with Jobeet. I made Jobeet and system login for user. Now i would like add possibility edit own affiliate. <?php class jobActions extends sfActions { public function ...
0
votes
1answer
109 views

Invalid schema element named “notnull” at path “JobeetCategory->columns->name”

I am running Symphony 1.4 and on the following tutorial: http://www.symfony-project.org/jobeet/1_4/Doctrine/en/03. However when I run './symfony doctrine:build --model' i get the error: Invalid ...
0
votes
2answers
241 views

Problem with ajax using symfony 1.4

I have a very strange problem when I using ajax in symfony 1.4. I've used the jobeet example (day 18) but it doesn't work This is my indexSuccess.php <script type="text/javascript" > ...
0
votes
0answers
118 views

Troubleshooting 'The component “language lang” does not exist' error in Jobeet tutorial

I have a problem with components in the backend application. I want to include a component, I followed step by step the jobeet tutorial, but I have an error: "The component "language lang" does not ...
0
votes
1answer
105 views

method_for_query , redirect to custom page

HI! I use symfony 1.4.11. In my project's all users ad, are available on the site only when it owner will have a premium account.The problem is that all ads are available on direct links...So I use ...
0
votes
1answer
362 views

Invalid schema element named “JobeetCategories” at path “JobeetAffiliate”

I have followd this tutorialJoobeet 1.4 Day 3 <code> JobeetCategory: actAs: { Timestampable: ~ } columns: name: { type: string(255), notnull: true, unique: true } JobeetJob: actAs: { ...
0
votes
2answers
305 views

a good tutorial for .Net development with MVC, spring.net and NHibernate

I'm coming from a php world and am now initaiting a project in .NET environment. After looking around, I noticed that the combination of MVC, spring.net and NHibernate might work for me. In PHP I ...
0
votes
1answer
307 views

Symfony's Jobeet can't find the index page?

I'm in the day 10 of Symfony's Jobeet Tutorial. Everything worked good, but when I tried to go to the index page: http://localhost:9090/frontend_dev.php I got the following message: ...
0
votes
1answer
459 views

Jobeet Day 3, doctrine:data-load problem

I'm trying to load data from fixtures jobs.yaml and categories.yaml with this command: $ php symfony doctrine:data-load But the tables are empty. I have got the columns and tables created, but no ...
0
votes
3answers
712 views

Symfony Jobeet Tutorial Day 3, databases.yml error

I'm new to Symfony and I'm going through the Jobeet tutorial v1.4 for Doctrine. I am currently stuck on Day 3. I've followed all the instructions on configuring the database and building models and ...
-1
votes
1answer
361 views

Symfony and Lucene search

We are using sf 1.4 and doctrine. I installed Lucene according to the Jobeet tutorial. And I've been getting into some problems with it. When I do the search without any values I get the complete ...