Apache NetBeans 12.5

Duration: Hours

Enquiry


    Category:

    Training Mode: Online

    Description

    Apache NetBeans 12.5 runs on JDK LTS releases 8 and 11, with experimental support for JDK 17, the current JDK release at the time of this NetBeans release. Locus IT has decade-long industry experience in “Apache NetBeans” consulting, staffing & training services.

    Course Training Content:

    Setting Up a PHP Project
    How to set up a PHP project in NetBeans IDE.

    Requirements
    You need the following software and resources.
    Software or Resource- Version Required

    a) PHP engine- Version 5

    b) web server- Apache HTTP Server 2.2 is recommended

    c) PHP debugger- XDebug 2.0 or later

    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:

    • Specify the project name and the location for the project’s source files
    • Specify the way to deploy your 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 the 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>.

    1. From the Default Encoding dropdown list, choose the default encoding for your project.
    2. 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.
    3. 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.

    If you are going to run the project on a local web server, do not forget to specify copying the source files to it.

    1. From the Default Encoding dropdown list, choose the default encoding for your project.
    2. 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.
    3. 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.

    1. 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.
    2. 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.

    • Local Web Site. To use this run configuration, you need the Apache HTTP server installed and running.
    • Remote Web Site (FTP/SFTP) (Separate tutorial). To use this configuration, you need a hosting account on a remote server and an FTP account on this server.
    • Script. This run configuration does not require that a web server be installed and running. You only need a PHP engine.

    Local Web Site

    A local website 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 website configuration. Note that the procedure for setting up the local website run configuration differs slightly depending on whether you are creating a project from existing sources or without existing sources.

    To set up a local website 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.
    5. Click Finish. The IDE creates your PHP project.

    Remote Web Site

    See the tutorial Deploying a PHP Application to a Remote Web Server.

    Script :

    1. From the Run As dropdown list, choose Script.

    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.
    1. In the PHP 5 Interpreter field, specify the path to the php.exe file. Use the Browse or Search… button, if necessary.
    2. 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:
    • Output Window. The results of executing a script will appear in the output window at the bottom of the NetBeans IDE window.
    • Web Browser. The default browser window will open with the results of executing a script in the form of an HTML file.
    • Editor. The results of executing a script will open as an HTML file in the IDE editor window.
    3. Click OK. The Options dialog box closes and the system returns to the Run Configuration panel.
    4. Add any arguments, such as debug=true, and any PHP command-line options.

    Customizing the Project Setup

    During the project creation, the basic project settings are defined: the project type, the location of the project source files, and the default run configuration. To expand the project setup with new settings, customize the project. Position the cursor on the project node and choose Properties from the popup menu. The Project Properties panel opens with a list of settings categories.

    Sources
    On the Sources panel:

    1. The Web Root field shows the root folder of your application site. By default, the field shows the Sources folder. To change the web root, click Browse and select another folder.
    2. Select the Copy files from Sources Folder to another location, if necessary, and specify the path to the storage folder.
    3. Change the encoding, if necessary
    4. To complete the project customization, click OK.

    Run Configuration

    On the Run Configuration panel, modify the default run configuration and/or define new run configurations, if necessary.
    1. To modify the default settings, update the fields during the project creation.
    2. To define a new run configuration, click New next to the Configuration dropdown list. The Create New Configuration dialog box opens.
    3. In the Configuration Name field, enter the name of the new run configuration and click OK. You return to the Run Configuration panel.
    4. Define the run configuration settings in the same way you defined the default run configuration during the project creation and click OK. The new configuration is added to the Configuration dropdown list.
    5. To remove a configuration, select it from the Configuration dropdown list and click Delete.
    6. To complete the project customization, click OK.

    PHP Include Path

    On the Include Path panel, specify the location of the files that you need to use in the project but do not need to locate together with the source files.
    1. To add a folder, click Add Folder. The Select Folder(s) dialog box opens.
    2. Select the relevant folders and click Open. You return to the PHP Include Path panel. The new folder is added to the list.
    3. To navigate through the list, use the buttons Move Up and Move Down.
    4. To remove a folder from the list of included folders, select the folder and click Remove.
    5. To complete the project customization, click OK.

    Formatting :

    On the Formatting panel, define the formatting style you want to apply to your source files in the editor. You may define either global or project-specific formatting.

    To define global IDE formatting:

    1. Choose “Use global options”.
    2. Click Edit Global Options. The IDE Options dialog opens, on the Editor > Formatting tab.
    3. From the Language dropdown list, select the language to which the settings should be applied.
    4. From the Categories dropdown list, select the format items to which the setting will be applied.
    5. Set your desired formatting and click OK.
    6. Click the Help button for detailed information.

    To define project-specific formatting:

    7. Choose “Use project-specific options”. The hidden area displays.
    8. From the Language dropdown list, select All Languages or PHP. In this case, All Languages means PHP and all other languages you have in your PHP project.
    9. From the Categories dropdown list, select the format items to which the setting will be applied.
    10. Set your desired formatting and click OK.
    11. Click the Help button for detailed information.

    Adding JavaScript Libraries

    Built-in JavaScript libraries were removed in NetBeans IDE 6.7 because they were very large and slowed performance and it is easy to add libraries manually. Manually adding JavaScript libraries to your project enables Code Completion and all other JavaScript-related functionality in the IDE for your project.

    To add JavaScript Libraries to your project:

    1. Download the JavaScript libraries you need, or locate them if you already have them.
    2. Copy the JavaScript libraries to your PHP project folder, using the IDE or a file explorer.

    If your project properties are set so that project sources are copied to another location (see Sources), the JavaScript libraries are also copied to this location. If your project is deployed on a remote server, the JavaScript libraries are uploaded to that server the next time your project sources are uploaded to the server.

    For more inputs on Apache NetBeans Training, you can connect here.
    Contact the L&D Specialist at Locus IT.

    Locus Academy has more than a decade of experience in delivering training/staffing on Apache NetBeans for corporates across the globe. The participants for the training/staffing on Apache NetBeans are extremely satisfied and can implement the learnings in their ongoing projects.

    Reviews

    There are no reviews yet.

    Be the first to review “Apache NetBeans 12.5”

    Your email address will not be published. Required fields are marked *

    Apache NetBeans 12.5 runs on JDK LTS releases 8 and 11, with experimental support for JDK 17, i.e., the current JDK release at the time of this NetBeans release. The current JDKs have an issue on macOS Big Sur, that causes freezes on dialogs. That could be fixed by applying the workaround described at NETBEANS-5037.

    Enquiry


      Category: