Solving error 500 in Symfony2
Having the typical error 500 in Symfony2? Well, it is very tipical, not just in Symfony but in Drupal and other web frameworks and CMS. Solving it can be a big headache... if you don't know where to see.
In Drupal it is easy to solve it using show all errors in php (on index.php of Drupal, for example). In Symfony2 you can use this tip:
Go to the root of your app. Then execute a clean cache:
- Read more about Solving error 500 in Symfony2
- Log in or register to post comments
Symfony2: Not a git repository
Ok, you want to install a bundly in Symfony2, and you are going to use git. You go to your root directory... but, here is the problem
Command:
{syntaxhighlighter brush: as3;fontsize: 100; first-line: 1; }git submodule add git://github.com/simplepie/simplepie.git vendor/simplepie{/syntaxhighlighter}
Yes, it's Simplepie bundles for Symfony2. Ok, the error:
{syntaxhighlighter brush: as3;fontsize: 100; first-line: 1; }fatal: Not a git repository (or any of the parent directories): .git{/syntaxhighlighter}
- Read more about Symfony2: Not a git repository
- Log in or register to post comments