Pages

Monday, May 19, 2014

Setting Up a PHP Project in netbeans 7.4 or 8.0

Getting Ready

Before creating a PHP project, you need to download and install the NetBeans IDE for PHP and prepare your environment for PHP development.
To set up a PHP project:
To change the settings of an existing project, position the cursor on the project node and choose Properties from the popup menu. Proceed as described in section Customizing the Project Setup.

Specifying the Project Name and Location of the Source Files

  1. Start the IDE and switch to the Projects window.
  2. Choose File > New Project. The Choose Project panel opens.
  3. In the Categories list, choose PHP.
Depending on your needs, you can create a completely new PHP project without any previously developed source files, or import an existing local PHP application or remote PHP application into a new project.

Project without Previously Developed Source Files

  1. In the Projects area, choose PHP Application and click Next. The New PHP Project > Name and Location panel opens.
  2. In the Project Name text field, enter the name of the project.
  3. In the Sources Folder field, specify the subfolder of your document root where you want to store your source files.
    The document root is the folder where the local web server looks for files to open in the browser. The document root is specified in the web server configuration file. After installation, the New Project wizard locates the document root and by default specifies the following path: <Document Root>\<New PHP Project>.
    A copy of the source files must be kept in a subfolder of the document root. However, you can have your Sources Folder in a different location than the document root and copy source files from this location to the document root. See Specifying the Run Configuration.
  4. From the Default Encoding dropdown list, choose the default encoding for your project.
  5. If you want to store NetBeans metadata in a different location than your source files, select "Put NetBeans metadata into a separate directory." For example, you might want to store your sources in your document root but the NetBeans metadata in your NetBeansProjects directory.
  6. Click Next. The Run Configuration panel opens.

Importing Existing Local Source Files into a Project

  1. In the Projects area, choose PHP Application with Existing Sources and click Next. The New PHP Project > Name and Location panel opens.
  2. In the Project Name text field, enter the name of the project.
  3. In the Sources Folder field, specify the folder from where you want to import the source files.
    Note: If you are going to run the project on a local web server, do not forget to specify copying the source files to it.
  4. From the Default Encoding dropdown list, choose the default encoding for your project.
  5. If you want to store NetBeans metadata in a different location than your source files, select "Put NetBeans metadata into a separate directory." For example, you might want to store your sources in your document root but the NetBeans metadata in your NetBeansProjects directory.
  6. Click Next. The Run Configuration panel opens.

Importing Existing Remote Source Files into a Project

  1. In the Projects area, choose PHP Application from Remote Server and click Next. The New PHP Project > Name and Location panel opens.
  2. In the Project Name text field, enter the name of the project.
  3. In the Sources Folder field, specify the subfolder of your local document root where you want to store your source files.
    The document root is the folder where the local web server looks for files to open in the browser. The document root is specified in the web server configuration file. After installation, the New Project wizard locates the document root and by default specifies the following path: <Document Root>\<New PHP Project>. Note that it is useful to be able to test the project on a local server.
  4. If you want to store NetBeans metadata in a different location than your source files, select "Put NetBeans metadata into a separate directory." For example, you might want to store your sources in your document root but the NetBeans metadata in your NetBeansProjects directory.
  5. Click Next. The Remote Connection panel opens. The tutorial Deploying a PHP Application to a Remote Web Server describes how to set up remote connections.

Specifying the Default Run Configuration of the New Project

A run configuration is a stored setting for running a PHP project. You can define several configurations for one project and switch between them back and forth. For example, if an application has been developed locally and needs to be uploaded to a remote production server, you only need to choose another run configuration. Run configurations apply to both running and debugging. Run configurations accommodate the following common use cases:
  • Developing PHP web pages on a local machine with a local web server.
  • Executing PHP scripts using a local PHP engine. This approach is applied to PHP files that are not intended for outputting HTML. Therefore such scripts can be run without a browser.
  • Remote Development. The PHP source code and other application files are uploaded to a remote web server via FTP. This use case is common when the development is shared across multiple people.
  • A combination of the above use cases: an application is developed locally and deployed on a remote production server upon completion. During development, PHP scripts are executed if necessary.
When you create a new PHP project, you create the project's default run configuration. To set the default run configuration for your project, choose the relevant option from the Run As dropdown list on the Run Configuration panel. The following options are available:
The process for creating additional run configurations, or editing the default run configuration, is described in Customizing the Project Setup: Run Configuration. It is almost identical to the process for creating the default run configuration, except that you use the Properties dialog of the existing project instead of the new project wizard.

Local Web Site

A local web site configuration involves a copy of your PHP source folders in the Web folder of the Apache web server installed on your machine. It is common practice for a project to have both a local and a remote web site configuration. Note that the procedure for setting up the local web site run configuration differs slightly depending on whether you are creating a project from existing sources or without existing sources.
To set up a local web site configuration:
  1. From the Run As dropdown list, choose Local Web Site.
  2. In the Project URL field, check the automatically generated URL address. Make sure that the Apache HTTP server listens to the default port 80. If not, specify the port number explicitly, in the format localhost:<port number>.
  3. If you are creating the project from existing sources, you can choose which source file to use as the index file.
  4. To store the project's source files in a different directory than the NetBeans IDE project, select "Copy files from Sources Folder to another location". If you are creating a project from existing sources, this is a required step, unless the existing sources were already in the web folder of your Apache server.
    The field by default specifies the following path: <Document Root>\<New PHP Project>. Use the Browse button to specify a different path, if necessary.
    The document root is the folder where the web server looks for files to open in the browser. The document root is specified in the web server configuration file.
    The wizard detects the Apache installation type, either a component or within a package, and provides the path to the default location of the htdocs folder for the current installation type. Therefore, if you accepted the default settings during the installation of the Apache server or the AMP package, choose the path from the dropdown list.
  5. Click Finish. The IDE creates your PHP project.

Remote Web Site

Script

  1. From the Run As dropdown list, choose Script.
  2. To specify the location of the PHP engine, click the Configure button next to the Use Default PHP Interpreter box. The PHP Options dialog opens on the General tab.
  3. In the PHP 5 Interpreter field, specify the path to the php.exe file. Use the Browse or Search... button, if necessary.
  4. To specify how the script execution results will be shown, select the relevant checkbox in the Open Result In area. The following options are available:
  5. Output Window. The results of executing a script will appear in the output window in the bottom of the NetBeans IDE window.
Friends, If you like this post, please share with your friends on Facebook and Google+ and recommend us on Google using the g+1 button on the top right hand corner.

No comments:

Post a Comment