Oracle by Example brandingDeploy a PHP Application to Oracle Cloud

section 0Before You Begin

This 10-minute tutorial shows you how to create a basic PHP application on Oracle Application Container Cloud Service.

Background

Oracle Application Container Cloud Service lets you deploy Java SE, Node.js, PHP, and Python applications to the Oracle Cloud.

What Do You Need?

Access to an instance of Oracle Application Container Cloud Service


section 1Create a PHP Application

  1. Create the index.php file in your local system and add the following content:
    <?php
    echo "<h1>Welcome to my page</h1>";
    echo "<h3>Testing PHP on Oracle Application Container Cloud Service.</h3>";
    ?>
  2. Create the manifest.json file and add the following content:
    {
      "runtime":{
        "majorVersion":"7.1"
      },
      "release": {},
      "notes": "Hello World PHP application"
    }
    
  3. Open a command-line window and go to your project directory.
  4. Compress both the index.php and manifest.json files together in a .zip file:
    zip getting-started-php-accs.zip index.php manifest.json

section 2Deploy Your Application to Oracle Application Container Cloud

  1. Log in to Oracle Cloud at http://cloud.oracle.com/. Enter your account credentials in the Identity Domain, User Name, and Password fields.
  2. In the Oracle Cloud Services dashboard, click the Action menu Menu, and select Oracle Application Container Cloud Service.
  3. To open the Oracle Application Container Cloud Service console, click Services.
  4. In the Applications list view, click Create Application and select PHP.
  5. In the Application section, enter a name for your application and click Browse.
  6. On the File Upload dialog box, select the getting-started-php-accs.zip file you created in the previous section and click Open.
  7. Keep the default values in the Instances and Memory fields and click Create.
  8. Wait until the application is created. The URL is enabled when the creation is completed.
  9. Click the URL of your application.
    HelloWorldApp response
    Description of the illustration hello-world-app-response.png

more informationWant to Learn More?