Search This Blog

Thursday, June 7, 2012

Setup Development Environment


Web Browser [at least 2]
  • Mozilla Firefox
  • Google Chrome
  • IE
  • Safari
  • Opera


Editor Software

Web Server Package ( Apache HTTP Server, mySQL database, PHP Programming )

IDE
{* Make sure to install Java before eclipse}


Web Browser Plugin / Extension
  • Firebug

 FTP/SFTP client

* security setting for xampp and access to phpMyAdmin
* http://localhost/
* create simple .php from notepad2
<?php
  phpinfo();
?>

* A few simple tests to make sure IDE with shortcut keys working - ctrl + space
* create html file: <html>, <body>, <h1>
* create php file:<?php, echo, ;

2 comments:

  1. type http://localhost/ to test xampp

    ReplyDelete
  2. We have to change the debugger..
    To do this, find the php.ini file, in your system you might not see the extension, so it will be the php configuration file.

    In the php.ini file,
    Press Ctrl+F to find, then..
    1. Look for the line which has "php_xdebug.dll". Remove the ";" in front of the line to enable it.
    2. Look for xdebug.remote_enable = 1 then also remove the ";" in front of the line, then change the "0" to "1"
    3. Ctrl+S to save the changes you have made.
    4. Restart your XAMPP

    ReplyDelete