| By Ken Fogel | Article Rating: |
|
| June 29, 2009 09:30 AM EDT | Reads: |
2,780 |
An alias file allows the Apache web server to map a URL it receives to a physical location anywhere on the disk rather than in the default document root for the server. We will create an alias called workspace that will point to the root of our workspace.
With a text editor create a text file containing:
Alias /workspace "C:/Users/neon/workspacephp/"
<Directory "C:/Users/neon/workspacephp/">
Options Indexes FollowSymLinks
AllowOverride NONE
Order Deny,Allow
Allow from all
</Directory>
Save it as workspace.conf to the alias folder in the WampServer installation. On my system I saved the file to c:\wamp\alias
You will need to Restart All Services on the Wamp menu and then on the Wamp menu you should see:

Step 8: Install the dummy.php file for testing the Zend PHP debugger
With your text editor create a file containing:
<?php
@ini_set('zend_monitor.enable', 0);
if(@function_exists('output_cache_disable')) {
@output_cache_disable();
}
if(isset($_GET['debugger_connect']) && $_GET['debugger_connect'] == 1) {
if(function_exists('debugger_connect')) {
debugger_connect();
exit();
} else {
echo "No connector is installed.";
}
}
?>
Save it as dummy.php in your Eclipse workspace folder. On my machine that is C:\Users\neon\workspacephp
Step 9: Time to try a php file
Create a new PHP project. Call it FirstPHP and then click on Finish. There is no need to change any settings when creating this first project. I am assuming that you have used Eclipse before.
Select the project in the Project Explorer, right mouse click, and select New PHP file

No need to get fancy, newfile.php is a fine name. Click on Finish. There is an interesting option if you click next concerning templates but you can discover that yourself. The editor now shows:

Replace the text in the editor with the following:
<html>
<head>
<title>PHP Test</title>
</head>
<body>
<p>A test of PHP</p>
<?php
phpinfo()
?>
</body>
</html>
Now save the file.
In the Project Explorer expand the project to show the file. Right click on the file and select Run As -> PHP Web Page

You should now see a dialog that displays the URL to your file.

The http://localhost/workspace will trigger the alias file so that the project folder FirstPHP is used and the file newfile.php is executed.
If all went well you should see the page in Eclipse:

Congratulations! You can run web pages scripted with PHP.
Step 10: The last step is to test the debugger
To test the debugger we need to create a file of a few lines of PHP. Create a new php file in Eclipse called debugtest.php and copy the following into it:
<html>
<head>
<title>Debug PHP Test</title>
</head>
<body>
<p>A test of Debugging in PHP</p>
<?php
$one = 1;
$two = 2;
$answer = $one + $two;
echo "The answer is ", $answer;
?>
</body>
</html>
Run this file as a normal PHP web page as we did for newfile.php to make sure it works.
Now we need to test that the debugger works. Right mouse click on debugtest.php in the Project Explorer and select Run As -> Run Configurations

You should see the Run Configurations dialog. Ensure that debugtest.php is selected and click on Test Debugger

If all has gone well you should see:

Click on OK and then Cancel. We actually do debugging from a different menu item.
Right mouse click on debugtest.php in the Project Explorer and select Debug As -> PHP Web Page.

Accept the request to change perspectives:

You should see:

That's it. Everything works and you are now ready to use Eclipse to write and debug PHP!
A tip of the hat to the following web sites and bloggers who have written about configuring Eclipse for PHP and WampServer:
Published June 29, 2009 Reads 2,780
Copyright © 2009 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
More Stories By Ken Fogel
In 1980 I bought for myself the most wonderful toy of the day, the Apple ][+. Obsession followed quickly and by 1983 I was writing software for small and medium sized businesses in Montreal for both the Apple and the IBM PC under the company name Omnibus Systems. In the evenings I taught continuing education courses that demystified the computer to the first generation of workers who found themselves with their typewriter on the scrap heap and a PC with WordStar taking its place. In 1990 I was invited to join the faculty at Dawson College in the Computer Science Technology program. When I joined the program the primary language was COBOL and my responsibility was to teach small systems languages such as BASIC and C/C++. Today I am now the chairperson and program coordinator of the Computer Science Technology program at Dawson. The program's primary language is Java and the focus is on enterprise programming. I like to write about the every day problems my students and I face in using various languages and platforms to get the job done. And from time to time I stray from the path and write about what I plan to do, what I actually get around to doing, and what I imagine I am doing.
- IBM Puts Systems Chief on Leave of Absence
- Amazon Web Services Database in the Cloud
- SpringSource Moving to Spring 3.0
- Virtualization Expo Call for Papers Deadline December 15
- Un-Clouding Federal Security Compliance
- Move Over BI, Here Comes PI - Performance Intelligence
- Qt DevDays 2009 - Munich
- Using Ext JS, Servlets, JSON, MySQL and Tomcat on Fedora
- Developing APIs for the Cloud
- Canonical Offers Free Cloudware
- New-Generation Virtualization Technologies with Ultra Low-Cost Endpoints
- The Planet Executive to Speak at Cloud Computing Conference
- Oracle-Sun: IBM Reportedly Behind Delay
- The Case for Single-Purpose Services
- IBM Puts Systems Chief on Leave of Absence
- Cloud BI & Amazon VPC
- Cloud-Oriented Switch Start-up Valued at $230M
- The Curious Case of Build Release Management eBook
- Amazon Web Services Database in the Cloud
- Tips for Efficient PaaS Application Design
- Reporting Solutions Using Crystal Reports for Eclipse
- SpringSource Moving to Spring 3.0
- Virtualization Expo Call for Papers Deadline December 15
- Un-Clouding Federal Security Compliance
- Java Developer's Journal Exclusive: 2006 "JDJ Editors' Choice" Awards
- The i-Technology Right Stuff
- Creating Web Applications with the Eclipse Web Tools Project
- Eclipse Special: Remote Debugging Tomcat & JBoss Apps with Eclipse
- The Next Programming Models, RIAs and Composite Applications
- Where Are RIA Technologies Headed in 2008?
- How to Bring Eclipse 3.1, J2SE 5.0, and Tomcat 5.0 Together
- SYS-CON Webcast: Eclipse IDE for Students, Useful Eclipse Tips & Tricks
- Eclipse: The Story of Web Tools Platform 0.7
- "Eclipse 3.0 is a Great Leap Forward," Says JDJ's Dudney
- Developing an Eclipse BIRT Report Item Extension
- The Top 250 Players in the Cloud Computing Ecosystem




























