Ryan Peschel
Ryan Peschel

Reputation: 11828

Trying to run a Symfony project on my computer

I'm trying to run a Symfony project that I cloned from a GitHub. I've never used Symfony before but I'd like to run the project.

I read you needed to run frontend_dev.php so I ran that in to my browser:

C:\Users\Computer\Desktop\Project\WebInterface\web\frontend_dev.php

But just got a blank page with some PHP on it. I believe I may have to set up a web server but I'm not sure and figured I'd ask here first.

If I wanted to run the project from my computer, would I just download an Apache server and drop it in the root directory? What variables and files would I need to change to get it working properly? Do I need to forward any ports?

Upvotes: 1

Views: 503

Answers (1)

Roman Newaza
Roman Newaza

Reputation: 11700

Symfony 1.x branch is not supported anymore. Use Symfony 2.

Anyway, concerning your question: here is the doc for 1.4: Day 1: Starting up the Project

Upvotes: 1

Related Questions