archives
- November 2008 (2)
- October 2008 (4)
- September 2008 (2)
- August 2008 (4)
- July 2008 (10)
- June 2008 (5)
- May 2008 (5)
- April 2008 (10)
- March 2008 (13)
- February 2008 (3)
- January 2008 (7)
- December 2007 (7)
- November 2007 (9)
- October 2007 (10)
- September 2007 (1)
blogroll
Interest in Symfony has increased since del.icio.us announced it developed its new version on the Symfony framework. If you are running Vista and you need to get a quick Symfony development environment going, then look no further. Follow these easy steps to going in 20 minutes.
1. Install XAMPP
Just follow the instructions for installation and then:
- During the install, specify XAMPP to be installed under C:\Program Files because of Vista security restraints.
- Run http://127.0.0.1/security/index.php to secure XAMPP.
2. Install Symfony
- Press the Win key
- Type cmd
- Press Ctrl+Shift+Enter
- Confirm the elevation prompt
- cd “C:\Program Files\xampp\php”
- pear upgrade PEAR
- Note: You will get a pop-up with “CLI has stopped working”, you can safely close that (this will happen during the other command prompt steps as well).
- pear channel-discover pear.symfony-project.com
- pear install symfony/symfony
- pear install phing/phing
3. Setup Your Application
Add symfony to your path:
- Start Orb -> Computer (right click and choose properties)
- Advanced system settings
- Environment Variables…
- Click on the Path System variable and click edit
- At the end of the string, append ;C:\Program Files\xampp\php;C:\Program Files\xampp\mysql\bin
Restart the command prompt for the path variable to set.
Set up a sample project:
- cd [path to your workspace]
- mkdir myproject
- cd myproject
- symfony init-project myproject
- symfony init-app myapp
4. Configure the Web Server
Set up a named host:
- Go to C:\Windows\System32\drivers\etc in explorer and right click on the host file. Uncheck the read only box.
- Hit the windows key
- Type notepad.exe
- Cntrl+Shift+Enter
- File -> Open
- Open C:\Windows\System32\drivers\etc (you will have to put an * in the file name box to see the file) and open the hosts file
- Add “127.0.0.1 myproject” under “127.0.0.1 localhost” (without the quotes)
- Save
- Go to C:\Windows\System32\drivers\etc in explorer and right click on the host file. Check the read only box.
- File -> Open
- C:\Program Files\xampp\apache\conf\extra (you will have to put an * in the file name box to see the file) and open httpd-vhosts.conf
- Add this to the end of the httpd-vhosts.conf file and save:
<VirtualHost *:80>
ServerName myproject
DocumentRoot “C:\[path to your workspace]\myproject\web”
DirectoryIndex index.php
Alias /sf C:\php5\pear\data\symfony\web\sf
<Directory “C:\php5\pear\data\symfony\web\sf”>
AllowOverride All
Allow from All
</Directory>
<Directory “C:\[path to your workspace]\myproject\web”>
AllowOverride All
Allow from All
</Directory>
</VirtualHost> - Uncomment ##NameVirtualHost *:80 if you want to have more than one project able to run with different names.
- Restart Apache and go to http://myproject/ and you should see the symfony default project page.
5. Setup File Folder Permissions
Now you need to allow for write access to the cache and log folder.
- Traverse to each those two directories seperately within your newly Symfony file structure with Explorer.
- Right click on each of the folders and choose properties
- Go to the security tab and choose the user that will be granted the permissions and click edit.
- Note: You can find out the user by Cntrl+Alt+Delete, and then starting the task manager. Note the User Name.
- Allow that person to have full control.
NEXT STEPS
I suggest you install Aptana or PHPEclipse for your IDE.
You will also want to setup TortoiseSVN or use SVN from inside Cygwin for a version control client.
The Askeet tutorial is a good way to learn about programming in Symfony.
If you prefer learning on paper, I suggest you check out the official Symfony book: The Definitive Guide to symfony (Definitive Guide). Or read it online free here.
about
Find out more about the author here.
categories
- Blogging (1)
- Business (38)
- Design (1)
- Django (1)
- FireFox 3 (1)
- General (4)
- Holiday (3)
- Life Hacks (21)
- Marketing (6)
- offbeat (3)
- Personal Development (8)
- Podcasting (1)
- Productivity (4)
- Programming (12)
- Python (1)
- Reviews (2)
- Sales (5)
- Social Networking (8)
- Symfony (1)
- Ubuntu (7)
- Video (3)
- Windows Vista (1)
- Windows XP (1)
- xv6800 (1)
members
most commented post
- » Managing Your Life With GTD, Online Tools and a File Cabinet - 19
- » How To Download Ustream.tv Videos - 12
- » Plurk Unleashed! - 12
- » Using The Web To Save on Holiday Gifts - 11
- » What Online Social Media Networks Do You Participate In? - 10
- » 19 Secrets From LA's Top SEO Firm - 10
- » The Story Behind iPhone.com - 10
- » Get Symfony Installed in 20 Minutes on Vista - 9
- » CSS Equivalent of Prototype? - 7
- » Thoughts are Things - 7
recent entries
- Using The Web To Save on Holiday Gifts
- GPS Nirvana with the Verizon xv6800 Running Windows Mobile 6.1
- Happy Holloween! Enjoy the Evil Pumpkin!
- Enterprise 2.0: Changing Models for Organization
- Digital Writing: Any Paper, Anywhere
- Emergency Economic Stabilization Act of 2008 - Talking Points
- How to Promote a Local Event
- BaseCamp Just Became Much More Usable
- To Google: Apology Accepted
- A Ten Point Formula for Success by President Lyndon Johnson
recent comments
- BeasMom: Awesome collection - thanks! Please add the gift of TIME to Group Gifting. Perfect for elderly relatives...
- Exquipass: As per my opinion, we should use complex and different passwords for all accounts and then use a safe...
- kizzy: Thanks for this great roundup. I’ve found that PriceGrabber.com is invaluable - more so now than ever,...
- Vijay: Very useful and nice information. It really helps me to buy gifts at cheaper prices and i have saved lot of...
- lee: with internet access so reaily available these days Black Friday is a thing of the past for me. I love cyber...
Wordpress theme by Wordpress Themes & made free by Internet Marketing Center
Copyright 2008, ThinkingSerious.com

October 24 2007
[...] story here Filed under: [...]
January 9 2008
[...] installing on Vista. There is a link out to external blog where others have advice on setting up on Windows Vista, but that was all I could find. But after a day just trying to get the test environment running [...]
April 25 2008
Nice tutorial, made life much easier. Thank you so much.
August 29 2008
i cant seem to get pear working with xampp 1.4.7 and vista? any suggestions?
c:\Program Files\xampp\php>pear
‘pear’ is not recognized as an internal or external command,
operable program or batch file.
October 17 2008
I have the same problem of xanders
October 23 2008
Try the go-pear.bat in your XAMPP Pear Dir & Follow the Instructions
Greez
November 29 2008
Please add the following to your instructions:
“pear channel-discover pear.phing.info”
This should be step number 9.
(Thanks for the great tutorial!)
November 29 2008
Under 4. Configure Web Server, Step 8, getting the following error message:
“Cannot create the C:\Windows\System32\drivers\etc\hosts” file.
Make sure that the path and file name are correct.”
The file is not read-only. It doesn’t appear to be possible to edit it.
November 30 2008
@jjmontgo
You need to open notepad as an administrator to be able to edit the hosts file.
Thanks for the contribution!