个人工具

UbuntuHelp:PHPEclipse

来自Ubuntu中文

Oneleaf讨论 | 贡献2007年11月21日 (三) 18:21的版本

跳转至: 导航, 搜索


Note:Eclipse is now available in the Universe repository.

See : UbuntuHelp:EclipseIDE


Notice

This installation guide will install PHPEclipse into a Eclipse installation in your home directory or in the /opt directory (depending of your EclipseIDE installation method)

PHPEclipse is able to controll MySQL as well as Apache, and using dbg as a debugger. See below for instructions on controlling Apache using PHPEclipse.

Automated Installation

An automated installation of PHPEclipse is available via the Eclipse Update Manager.

0. Start Eclipse as root, $sudo eclipse or $sudo -s then #eclipse

      • Click on Help->Software Updates->Find/Install from file menu in Eclipse.
      • Select the radio button labeled, "search for new features to install".
      • Click on the "New Remote Site" button.
      • Enter a name, and the URL: http://phpeclipse.sourceforge.net/update/releases
      • Click on "Finish".
      • A list of features will be presented, open the list and check the one labeled "phpeclipse".
      • Click on "Next"
      • Follow the onscreen instructions to finish the automatic install.

Ubuntu Feisty 7.04 Fix

When you try to edit a .php file using the PHPeclipse editor, you will get an error message that tells you to look in the log. This problem arises due to problem with the default JVM used in Feisty. To fix the problem:

      • Close eclipse and at the bash prompt:
      • sudo apt-get install sun-java6-jre libxext6-dbg
      • sudo nano -w /etc/eclipse/java_home
      • Insert /usr/lib/jvm/java-6-sun on the line above /usr/lib/jvm/java-gcj
      • Close and save the file

Installation

This document assumes you have a running Eclipse installed as described in UbuntuHelp:EclipseIDE.

PHPEclipse is a plugin to Eclipse and should be placed in the $HOME/opt/eclipse/plugins directory for the personnal installation or /opt/eclipse/plugins for the global installation.

The PHPEclipse project is located at www.phpeclipse.de and you will find the zipped plugin files here.

  • Download the latest release (PHPEclipse1.1.3-2005-01-29 when this document where written) to your favorite download directory. Then change directory to the eclipse directory (personnal installation):
$ cd ~/opt/eclipse

or (global installation)

$ cd /opt/eclipse
  • Unzip the previously downloaded PHPEclipse plugin (use sudo if you used the EclipseIDE global installation method):
$ unzip ~/your_download_dir/PHPEclipse1.1.3-2005-01-29.zip

(substitute your_download_dir and zip file name to fit your system)

  • The plugin is now installed but "Eclipse 3.x caches all plugin.xml files into a single repository for quicker loading. If you used eclipse before installing PHPeclipse, you should start eclipse once with the -clean option. This -clean forces Eclipse to rebuild that repository. This applies to anything that is installed into eclipse by unzipping it into its plugins folder.":
$ eclipse -clean

Next time you may start Eclipse your favorite way, without the -clean option.

Controlling Apache from Eclipse

Configuring Apache

The first thing you'll want to do is have a working Apache install see UbuntuHelp:ApacheMySQLPHP for details. The assumption is that you're installing Apache on a workstation that is seperate from your production web server.

In your favorite text editor open /etc/apache2/sites-available/default change DocumentRoot to somewhere in your home directory:

DocumentRoot /home/<username>/work

and

<Directory /home/<username>/work/>

Note: the above is just an example of my work environment change the path accordingly. Also, the PHP Browser that is part of PHPEclipse by default wants to open http://localhost/php/your_script.

and reload Apache to recognize the new configuration:

/etc/init.d/apache2 reload

Configure PHPEclipse for Apache

Now that we have Apache configured for our development environment we can configure PHPEclipse to control Apache. First open Eclipse and click on:

Window > Preferences > PHPeclipse Web Development

This opens the PHPEclipse options dialog.

First click on PHP External Tools there's two things to change Run PHP command and Parser command:

Run PHP command default is /apache/php/php

change this to: 

/usr/bin/php

Parser command default is /apache/php/php -l -f {0}

change to:

/usr/bin/php -l -f {0}

Note: you'll need the php5-cli package installed for this to work.

Next click on Apache under PHP External Tools where we'll need to change the Apache and Start Apache values:

Change Start Apache to:
-k start

and Apache to:
/usr/sbin/apache2

Then click Ok to apply.

IconsPage?action=AttachFile&do=get&target=warning.png In order for the above to work we need to setuid root the /usr/sbin/apache2 file. IconsPage?action=AttachFile&do=get&target=warning.png

sudo chmod u+s /usr/sbin/apache2

Note: making scripts or programs setuid root is definitely not recommended for security purposes. This gives any user on your system the ability to execute the program and in most cases this isn't a good idea. However on a development machine safely behind a firewall, and with no access from an outside network, it may not be a problem.

If some one knows of a better way for PHPEclipse to be able to stop and start Apache please update these instructions.

To start Apache from Eclipse simply click the Start Apache icon.

TODO

Write about controlling MySQL as well as using dbg.


Note: this guide has been tested on Ubuntu 7.04 (Feisty) and Ubuntu 7.10 (Gutsy).