487
edits
(New page: {{nav 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 sim...) |
(Punctuation and grammatical changes; some clarification.) |
||
Line 2: | Line 2: | ||
'''''Uniform Server PHP IDE''''' | '''''Uniform Server PHP IDE''''' | ||
Uniform Server is an excellent | Uniform Server is an excellent test WAMP; extract it, have a play and throw it away if you don’t like it. Similarly, this simple PHP IDE plugin is also a throw away. First extract a new version of Uniform Server and then the IDE. Once extracted you can start writing PHP CLI code and test it in the integrated console window. Alternatively you can write WebPage code and immediately run it on a working web server. Should this package not meet your expectations, just delete it and search the Internet for something that does. | ||
The package offers a complete PHP coding environment, and is ideal for learning PHP. Scripts are entered using Notepad++, and a single button click provides syntax checking. Double clicking on any highlighted error 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 edited and updated directly on Uniform Server, avoiding the need to FTP completed pages to a server site. | |||
== Two versions == | == Two versions == | ||
There are two variants of the IDE self-contained and plugin. | 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 | * 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. | ||
* | * A plugin version which shares the PHP interpreter integrated in Uniform Server; this greatly reduces the plugin's size. | ||
Choose one of the following installation options. | Choose one of the following installation options. | ||
== Installation option 1 -Self-contained Portable PHP IDE == | == Installation option 1 -Self-contained Portable PHP IDE == | ||
=== Download and Install === | === Download and Install === | ||
The following assumes you are using drive H and folder us_ide_1. This is not mandatory; feel free to substitute another drive letter and folder as appropriate. | |||
==== Download IDE ==== | ==== Download IDE ==== | ||
Download self-extracting archive file from SourceForge. | Download the self-extracting archive file from SourceForge. | ||
* Create a new folder H:\'''us_ide_1''' | * Create a new folder H:\'''us_ide_1''' | ||
* Download file [http://sourceforge.net/projects/miniserver/files/Plugins/UniServer%20PHP%20IDE/Self-contained%20portable%20IDE/ us_portable_php_ide_1_0_0.exe] from SourceForge | * Download file [http://sourceforge.net/projects/miniserver/files/Plugins/UniServer%20PHP%20IDE/Self-contained%20portable%20IDE/ us_portable_php_ide_1_0_0.exe] from SourceForge | ||
* Save to above folder (us_ide_1) | * Save to the above folder (us_ide_1) | ||
* Double click us_portable_php_ide_1_0_0.exe | * Double click us_portable_php_ide_1_0_0.exe. This extracts all files; no need to change the path. | ||
* Folder '''us_portable_php_ide''' is created | * Folder '''us_portable_php_ide''' is created | ||
==== Download Uniform Server ==== | ==== Download Uniform Server ==== | ||
This step is optional | This step is optional. However if you want to create and test web pages, extract the latest version of Uniform Server [http://sourceforge.net/projects/miniserver/files/Uniform%20Server/5.6.15-Nano/ UniServer 5.6.15-Nano] or [http://sourceforge.net/projects/miniserver/files/Uniform%20Server/6.0.5-Carbo/ UniServer 6.0.5-Carbo] | ||
* Save downloaded file for example '''UniServer5_6_15.exe''' to folder H:\'''us_ide_1''' | * Save downloaded file; for example, '''UniServer5_6_15.exe''' to folder H:\'''us_ide_1''' | ||
* Double click '''UniServer5_6_15.exe''' | * Double click '''UniServer5_6_15.exe''' to extract all files; no need to change the path. | ||
==== Configuration ==== | ==== Configuration ==== | ||
If you have | If you have downloaded Uniform Server and wish to run XDebug, it requires configuring as follows: | ||
{| | {| | ||
|-valign="top" | |-valign="top" | ||
Line 44: | Line 43: | ||
* From the tray menu run '''Server Status''' - This rewrites all internal paths | * From the tray menu run '''Server Status''' - This rewrites all internal paths | ||
* Navigate to folder H:\us_ide_1\us_portable_php_ide\unicode\php\'''extensions''' | * Navigate to folder H:\us_ide_1\us_portable_php_ide\unicode\php\'''extensions''' | ||
* You need to copy the XDebug extension to Uniform Server | * You need to copy the XDebug extension to Uniform Server. There are two versions: VC6 and VC9 | ||
** For '''5.6.15-Nano''' copy '''php_xdebug-2.1.0-5.3-vc6.dll''' to folder H:\us_ide_1\UniServer\usr\local\php\'''extensions''' | ** For '''5.6.15-Nano''' copy '''php_xdebug-2.1.0-5.3-vc6.dll''' to folder H:\us_ide_1\UniServer\usr\local\php\'''extensions''' | ||
** For '''6.0.5-Carbo''' copy '''php_xdebug-2.1.0-5.3-vc9.dll''' to folder H:\us_ide_1\UniServer\usr\local\php\'''extensions''' | ** For '''6.0.5-Carbo''' copy '''php_xdebug-2.1.0-5.3-vc9.dll''' to folder H:\us_ide_1\UniServer\usr\local\php\'''extensions''' | ||
Line 68: | Line 67: | ||
'''''Note 1'':''' | '''''Note 1'':''' | ||
Depending on the version that matches your installation, substitute the proper file name on the end of the path | |||
zend_extension='''H:/us_ide_1/UniServer/usr/local/php/extensions/'''php_xdebug-2.1.0-5.3-vc6.dll | zend_extension='''H:/us_ide_1/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'':''' | '''''Note 2'':''' | ||
If you now move folder us_ide_1 and all its content to a different location all paths | If you now move folder us_ide_1 and all its content to a different location, all the paths will be automatically updated. Ensure the new location does not contain spaces in any folder names. | ||
== Installation option 2 - Plugin PHP IDE == | == Installation option 2 - Plugin PHP IDE == | ||
=== Download and Install === | === Download and Install === | ||
The following assumes you are using drive H and folder us_ide_2. This is not mandatory; feel free to substitute another drive letter and folder as appropriate. | |||
==== Download Uniform Server ==== | ==== Download Uniform Server ==== | ||
Download self-extracting archive file from SourceForge. | Download the self-extracting archive file from SourceForge. | ||
* Create a new folder H:\'''us_ide_2''' | * Create a new folder H:\'''us_ide_2''' | ||
* Extract latest version of Uniform Server | * Extract the latest version of Uniform Server | ||
** [http://sourceforge.net/projects/miniserver/files/Uniform%20Server/5.6.15-Nano/ UniServer 5.6.15-Nano] | ** [http://sourceforge.net/projects/miniserver/files/Uniform%20Server/5.6.15-Nano/ UniServer 5.6.15-Nano] | ||
** or [http://sourceforge.net/projects/miniserver/files/Uniform%20Server/6.0.5-Carbo/ UniServer 6.0.5-Carbo] | ** or [http://sourceforge.net/projects/miniserver/files/Uniform%20Server/6.0.5-Carbo/ UniServer 6.0.5-Carbo] | ||
* Save downloaded file for example '''UniServer5_6_15.exe''' to folder H:\'''us_ide_2''' | * Save the downloaded file; for example, '''UniServer5_6_15.exe''' to folder H:\'''us_ide_2''' | ||
* Double click '''UniServer5_6_15.exe''' | * Double click '''UniServer5_6_15.exe''' This extracts all files; no need to change the path | ||
==== Download IDE ==== | ==== Download IDE ==== | ||
Download self-extracting archive file from SourceForge. | Download the self-extracting archive file from SourceForge. | ||
* Download file [http://sourceforge.net/projects/miniserver/files/Plugins/UniServer%20PHP%20IDE/Plugin%20IDE/ us_plugin_php_ide_1_0_0.exe] from SourceForge | * Download file [http://sourceforge.net/projects/miniserver/files/Plugins/UniServer%20PHP%20IDE/Plugin%20IDE/ us_plugin_php_ide_1_0_0.exe] from SourceForge | ||
* Save to folder H:\us_ide_2\'''UniServer''' | * Save to folder H:\us_ide_2\'''UniServer''' | ||
* Double click us_plugin_php_ide_1_0_0.exe | * Double click us_plugin_php_ide_1_0_0.exe. This extracts all files; no need to change the path | ||
* Folder H:\us_ide_2\UniServer\'''us_portable_ide''' is created | * Folder H:\us_ide_2\UniServer\'''us_portable_ide''' is created | ||
==== Configuration Part 1 ==== | ==== Configuration Part 1 ==== | ||
To run XDebug on Uniform | To run XDebug on Uniform Server requires configuring as follows: | ||
{| | {| | ||
|-valign="top" | |-valign="top" | ||
Line 130: | Line 130: | ||
'''''Note 1'':''' | '''''Note 1'':''' | ||
Depending on the version that matches your installation, substitute the proper file name on the end of the path | |||
zend_extension='''H:/us_ide_2/UniServer/usr/local/php/extensions/'''php_xdebug-2.1.0-5.3-vc6.dll | zend_extension='''H:/us_ide_2/UniServer/usr/local/php/extensions/'''php_xdebug-2.1.0-5.3-vc6.dll | ||
Line 140: | Line 140: | ||
'''''Note 2'':''' | '''''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. | If you now move folder H:\us_ide_2\'''UniServer''' and all its content to a different location, all the paths are automatically updated. Ensure the new location does not contain spaces in any folder names. | ||
==== Configuration Part 2 ==== | ==== Configuration Part 2 ==== | ||
Edit file H:\us_ide_2\UniServer\usr\local\php\'''php_cli_ide_debug.ini''' | 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) | Change this line to match the php_xdebug version you are using (shown for 5.6.15-Nano) | ||
<pre> | <pre> | ||
zend_extension=./extensions/php_xdebug-2.1.0-5.3-vc6.dll | zend_extension=./extensions/php_xdebug-2.1.0-5.3-vc6.dll | ||
</pre> | </pre> | ||
== Folder Structure == | == Folder Structure == | ||
Line 170: | Line 168: | ||
'''''Portable IDE''''' | '''''Portable IDE''''' | ||
If you are learning PHP or writing PHP CLI scripts there is no need for a server | 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. | ||
'''''Plugin IDE''''' | '''''Plugin IDE''''' | ||
This integrates both Uniform Server and IDE | This integrates both Uniform Server and IDE. In reality, this should be considered as the IDE! | ||
| | | | ||
'''''Portable IDE'''''<br> | '''''Portable IDE'''''<br> | ||
Line 184: | Line 182: | ||
|} | |} | ||
== Design Information == | == Design Information == | ||
A step-by-step design guide is provided see page [[PHP PORTABLE IDE: Introduction | PHP PORTABLE IDE]] | A step-by-step design guide is provided; see page [[PHP PORTABLE IDE: Introduction | PHP PORTABLE IDE]] | ||
== Summary == | == Summary == | ||
The above | The above shows how to install the Uniform Server IDE. | ||
Next page provides [[Uniform Server PHP IDE: XDebug Overview | an overview of the XDebug PHP module]]. | Next page provides [[Uniform Server PHP IDE: XDebug Overview | an overview of the XDebug PHP module]]. | ||
---- | ---- |