Uniform Server PHP IDE: Introduction
Uniform Server PHP IDE : Introduction | XDebug Overview | IDE Overview | PHP CLI | XDebug WinBinder
|
|
Uniform Server PHP IDE. |
Uniform Server PHP IDE
Uniform Server is an excellent throwaway WAMP, extract have a play and throwaway if you don’t like it. Similarly this simple PHP IDE plugin is also throwaway; first extract a new version of Uniform Server and then the IDE. Once extracted you can start writing PHP CLI code and test in the integrated console window. Alternatively write WebPage code and immediately run on a working web server. Should this package not meet your expectations just throw it away and search the Internet for something that does.
Above package offers a complete PHP coding environment. It is ideal for learning PHP. Scripts are entered using Notepad++ a single button click provides syntax checking. Double clicking on any highlighted errors takes you to the appropriate line in the edit window for correction. Corrected code is run from menu options either in a console window for CLI scripts or a browser to display web pages. Should the code not perform as expected it can be debugged using the integrated XDebug PHP module and Notepad++ debug client.
WebPages are directly edited on Uniform Server avoiding need to FTP completed pages.
Two versions
There are two variants of the IDE self-contained and plugin.
- The self-contained version includes a built in PHP interpreter allowing it to run independent of Uniform Server this is ideal for learning PHP and CLI scripting.
- Plugin version shares the PHP interpreter integrated into Uniform Server this greatly reduces plugin size.
Choose one of the following installation options.
Installation option 1 -Self-contained Portable PHP IDE
Download and Install
Following assume you are using drive H and folder us_ide_1 they are not mandatory feel free to use another drive and folder, substitute your drive letter and folder as appropriate.
Download IDE
Download self-extracting archive file from SourceForge.
- Create a new folder H:\us_ide_1
- Download file us_portable_php_ide_1_0_0.exe from SourceForge
- Save to above folder (us_ide_1)
- Double click us_portable_php_ide_1_0_0.exe this extracts all files no need to change path
- Folder us_portable_php_ide is created
Download Uniform Server
This step is optional however if you want to create and test web pages extract latest version of Uniform Server UniServer 5.6.15-Nano or UniServer 6.0.5-Carbo
- Save downloaded file for example UniServer5_6_15.exe to folder H:\us_ide_1
- Double click UniServer5_6_15.exe this extracts all files no need to change path
Configuration
If you have download Uniform Server and wish to run XDebug it requires configuring as follows:
[xdebug] zend_extension=H:/us_ide_1/UniServer/usr/local/php/extensions/php_xdebug-2.1.0-5.3-vc6.dll xdebug.remote_autostart=on xdebug.remote_enable=on xdebug.remote_host=127.0.0.1 xdebug.remote_port=9000 xdebug.remote_handler=dbgp xdebug.remote_mode=req xdebug.idekey=default |
Note 1:
Substitute the path heightened with the path that matches your installation
zend_extension=H:/us_ide_1/UniServer/usr/local/php/extensions/php_xdebug-2.1.0-5.3-vc6.dll
Note 2:
If you now move folder us_ide_1 and all its content to a different location all paths are automatically updated. Ensure the new location does not contain spaces in any folder names.
Installation option 2 - Plugin PHP IDE
Following assume you are using drive H and folder us_ide_2 they are not mandatory feel free to use another drive and folder, substitute your drive letter and folder as appropriate.
Download and Install
Following assumes you are using drive H substitute your drive letter as appropriate.
Download Uniform Server
Download self-extracting archive file from SourceForge.
- Create a new folder H:\us_ide_2
- Extract latest version of Uniform Server
- Save downloaded file for example UniServer5_6_15.exe to folder H:\us_ide_2
- Double click UniServer5_6_15.exe this extracts all files no need to change path
Download IDE
Download self-extracting archive file from SourceForge.
- Download file us_plugin_php_ide_1_0_0.exe from SourceForge
- Save to folder H:\us_ide_2\UniServer
- Double click us_plugin_php_ide_1_0_0.exe this extracts all files no need to change path
- Folder H:\us_ide_2\UniServer\us_portable_ide is created
Configuration Part 1
To run XDebug on Uniform Server. Server requires configuring as follows:
[xdebug] zend_extension=H:/us_ide_2/UniServer/usr/local/php/extensions/php_xdebug-2.1.0-5.3-vc6.dll xdebug.remote_autostart=on xdebug.remote_enable=on xdebug.remote_host=127.0.0.1 xdebug.remote_port=9000 xdebug.remote_handler=dbgp xdebug.remote_mode=req xdebug.idekey=default |
Note 1:
Substitute the path heightened with the path that matches your installation
zend_extension=H:/us_ide_2/UniServer/usr/local/php/extensions/php_xdebug-2.1.0-5.3-vc6.dll
Change extension "php_xdebug-2.1.0-5.3-vc6.dll" to match your version of Uniform Server
- For 5.6.15-Nano use php_xdebug-2.1.0-5.3-vc6.dll
- For 6.0.5-Carbo use php_xdebug-2.1.0-5.3-vc9.dll
Note 2:
If you now move folder H:\us_ide_2\UniServer and all its content to a different location all paths are automatically updated. Ensure the new location does not contain spaces in any folder names.
Configuration Part 2
Edit file H:\us_ide_2\UniServer\usr\local\php\php_cli_ide_debug.ini
Change this line to match php_xdebug version you are using (shown for 5.6.15-Nano)
zend_extension=./extensions/php_xdebug-2.1.0-5.3-vc6.dll
Folder Structure
Commonality Folder structure for both versions is similar as shown on right
If you are learning PHP or writing PHP CLI scripts there is no need for a server you can delete folder UniServer B) and use the portable IDE in folder D.
This integrates both Uniform Server and IDE effectively this should be considered as the IDE! |
Design Information
A step-by-step design guide is provided see page PHP PORTABLE IDE
Summary
The above has shown how to install the Uniform Server IDE.
Next page provides an overview of the XDebug PHP module.