How to open php ini file in ubuntu

Asked 6 years, 3 months ago

Viewed 60k times

How to run a php file from ubuntu platform in the localhost? I have also installed LAMP in my system. When I try to run the php file, in the browser, it says "The requested URL is not found-404 ERROR found". I do not know how to proceed with this. My php files are in the directory as shown here "/usr/var/html/a.php".

asked May 31, 2016 at 9:22

9

There are two options.

  1. Access the php file through a local webserver(ie thru a local website). The web-server will deal with the requested php file. It will use either,

    • Inbuilt PHP module to interpret the php file, or
    • PHP through CGI (eg.CGI, FastCGI)

      If your apache(check if apache is running using service apache2 status!!) is set to the default configuration, this could be as simple as

      http://localhost/path/to/your.php
      

      Remember by default, the base directory for apache is /var/www/html/, so you need not include this in the url.

  2. Use the php binary directly from a terminal.

       php /path/to/your/file.php
    

answered May 31, 2016 at 9:32

How to open php ini file in ubuntu

sjsamsjsam

21k4 gold badges52 silver badges96 bronze badges

3

After installation of Lamp system in Ubuntu. Please follow the below two steps to run your php file.

  • Place your php file (.php) in /var/www/html/ (default path)
  • Please run url as localhost/withfilename.php

Example : I have placed welcome.php file in the /var/www/html/welcome.php then url will be http://localhost/welcome.php

answered Aug 3, 2019 at 15:47

DSKDSK

4304 silver badges13 bronze badges

Overview

For Shared Hosting, the .user.ini file is the default configuration file for running applications that require PHP. It is used to control variables such as upload sizes, file timeouts, and resource limits. This file is located on your server in the /public_html folder. The following article will provide instruction on how you can locate and edit this file. Before making any changes, it's a good idea to copy the original settings, both for reference and to easily restore the original if necessary.

STATEMENT OF SUPPORT:
This article is provided as a courtesy. Installing, configuring, and troubleshooting third-party applications is unsupported by (mt) Media Temple. Please take a moment to review the Statement of Support. Before making any changes, it's a good idea to copy the original settings, both for reference and to easily restore the original if necessary.

Before Starting

This guide will be using cPanel's File Manager to edit the .user.ini file. In order to complete this guide, you will want to update your File Manager settings to Show Hidden Files on your Shared Hosting server.

  1. Log into your Media Temple account.
  2. Click the blue ADMIN button associated to your Shared Hosting server.
    How to open php ini file in ubuntu
  3. While in the dashboard, click File Manager.
    How to open php ini file in ubuntu
  4. You should be automatically warped to the public_html folder.
  5. If you have not yet created a .user.ini file, you can do so at this time by clicking
    How to open php ini file in ubuntu
    .
  6. Select the .user.ini file. Then click the Edit icon.
    How to open php ini file in ubuntu
  7. Add your desired php changes, then click Save Changes.
    How to open php ini file in ubuntu

READ ME FIRST
This article is provided as a courtesy. Installing, configuring, and troubleshooting third-party applications is unsupported by (mt) Media Temple. Please take a moment to review the Statement of Support. Before making any changes, it's a good idea to copy the original settings, both for reference and to easily restore the original if necessary.

.user.ini

On the WordPress Hosting service, php directives would need to be adjusted within the .user.ini file. Note, this is different from the typical php.ini file seen in most of (mt) Media Temple servers. If this is the first time you are trying to modify these limits, you will need to create a file named ".user.ini" within the document rootdocument root or ".../html" directory using the File Manager, FTP or SSH.

PHP directives

Once the .user.ini file is created within ".../html" you may input your desired php directives. We recommend checking out our additional articles on php limits before saving any changes:

  • How do I increase the PHP upload limits?
  • CGI and PHP resource limits

Overview

The php.ini file is the default configuration file for running applications that require PHP. It is used to control variables such as upload sizes, file timeouts, and resource limits.

The most common parameters changed in the php.ini file are:


safe_mode
register_globals
upload_max_filesize
post_max_size
max_execution_time

Additional directives can be found here.

If you're experiencing difficulty with your web application, you can edit the sample "php.ini.sample"php.ini or create a new text file. For example, you're unable to install a WordPress theme or plugin through your WP Dashboard.

Before making any changes, it's a good idea to copy the original settings, both for reference and to easily restore the original if necessary.

READ ME FIRST

This article is provided as a courtesy. Installing, configuring, and troubleshooting third-party applications is unsupported by (mt) Media Temple. Please take a moment to review the Statement of Support.

Via AccountCenter

As a Grid user, your easiest option would be to use the File Manager to make the changes. Here's how:

  • Log into the AccountCenter
  • Click the Admin button to the right of your primary domain
  • Select File Manager
  • Click on the /etc folder

Inside the /etc folder, you'll see the php.ini.sample file. When you click on the Edit button, you'll see the below window. Just rename the filename to php.ini and add whatever parameters you need.

How to open php ini file in ubuntu

After you make your edits, click SAVE CHANGES. Your changes will be saved and should take effect right away.

Via SSH

An alternate way to edit your php.ini file would be to connect via SSH as the Server Administrator.

Change directory to the etc folder using this command:

cd ~/../../etc

Use the following command to start editing:

vi php.ini

Via FTP

You can download the file locally and edit. This requires familiarity with Using FTP and SFTP and a plain text editor.

FAQs

Do I need to restart my service for the changes to take effect?

No, in fact there is no way or need for customers to restart services on the Grid. Any changes you make within your php.ini will be effective within a few moments.

Is there any way to use a different php.ini in each domain/folder on the Grid?

Not with a php.ini. The php.ini is designed to set global settings for your account. You can make changes on a per domain basis via a .htaccess file. More info on this can be found at http://www.askapache.com/htaccess/php-htaccess-tips-and-tricks.html.

Overview

The php.ini file is the default configuration file for running applications that require PHP. It is used to control variables such as upload sizes, file timeouts, and resource limits.

The most common parameters changed in the php.ini file are:


safe_mode
register_globals
upload_max_filesize
post_max_size
max_execution_time

Additional directives can be found here.

If you're experiencing difficulty with your web application, you can edit the sample "php.ini.sample"php.ini or create a new text file. For example, you're unable to install a WordPress theme or plugin through your WP Dashboard.

Before making any changes, it's a good idea to copy the original settings, both for reference and to easily restore the original if necessary.

READ ME FIRST

This article is provided as a courtesy. Installing, configuring, and troubleshooting third-party applications is unsupported by (mt) Media Temple. Please take a moment to review the Statement of Support.

Requirements

Before you start, you'll need:

  • Root access enabled.
  • To know how to connect to your DV via SSH.

Plesk

Global php.ini

Use the following command at the command prompt to start editing the global php.ini file:

vi /etc/php.ini

When you are finished editing your php.ini, you will need to restart your Apache server. Run the following command:

/etc/init.d/httpd restart

Domain-specific php.ini

Plesk 11.0 and later features a domain-specific php.ini file. This domain-level version of php.ini overrides the global php.ini settings. There are two main ways to edit this file.

via Plesk

You can edit the domain-level php.ini file through the Plesk Control Panel.

1. Select the Domains tab.

   

How to open php ini file in ubuntu

2. Expand the advanced options by clicking the SHOW MORE tab, as shown below:

 

How to open php ini file in ubuntu

3. Select PHP Settings from the menu.

How to open php ini file in ubuntu

 

4. Most common PHP directives are in this page and ready for you to modify. You can select common options from the drop-down menus, or create your own by using the "Custom Variable" option. For directives that are not listed, raw text can be input in the box at the bottom of this screen.

5. Click "OK" at the bottom to save.

Important Note
If you choose to use the Plesk "PHP Settings" menu to edit php.ini, it will overwrite any manual changes you have made to /var/www/vhosts/DOMAIN/etc/php.ini via SSH or FTP.

via SSH

You'll first need to log in via SSH.

Use the following command to start editing the domain-level php.ini:

vim /var/www/vhosts/DOMAIN/etc/php.ini

Be sure to replace DOMAIN with the domain name you want to edit.

cPanel (WHM)

Via WHM 

WHM allows you to configure your php.ini file using the PHP Configuration Editor. To access this tool and edit your php.ini file using WHM, follow the steps below.

1. Start by logging into WHM as the root user. From the Home page, select the Service Configuration button.
   

How to open php ini file in ubuntu

2. Then, click on PHP Configuration Editor.

How to open php ini file in ubuntu

3. Once you click on PHP Configuration Editor, you will be presented with a number of different parameters that you may edit the configurations for. If you don't see the parameter that you wish to edit in Basic Mode, you may click on Advanced Mode for a longer list of editable parameters. If you need more flexibility, you can also edit your php.ini using SSH.

How to open php ini file in ubuntu

4. Once you have made your changes, click "Save" at the bottom.

Via SSH

Use the following command at the command prompt to start editing the global php.ini file:

vi /usr/local/lib/php.ini

When you are finished editing your php.ini, you will need to restart your Apache server. Run the following command:

/etc/init.d/httpd restart

Tip:

If you need to apply settings to a single site without making a global change that will affect all sites on your server, you may create a php.ini file in that site's document root (normally public_html). This will apply the settings in that file to that site only.

How do I open PHP ini in Ubuntu terminal?

To open the default php. ini file for editing, use one of the following commands (depending on which Linux distribution you're using): Ubuntu 16.04: sudo nano /etc/php/7.0/apache2. CentOS 7: sudo nano /etc/php.

How do I open a PHP ini file?

Overview. The php. ini file is the default configuration file for running applications that require PHP. ... .
Requirements. Before you start, you'll need: Root access enabled. ... .
Plesk. Global php.ini. Use the following command at the command prompt to start editing the global php.ini file: vi /etc/php.ini..

Where is the PHP ini file Ubuntu?

ini is usually located in /etc/php/8.1/fpm/php.

How do I open a config PHP file in Ubuntu?

How to Edit PHP ini File in Ubuntu Terminal.
sudo nano /etc/php5/apache2/php.ini. sudo nano /etc/php5/apache2/php.ini. Change PHP parameters. ... .
max_execution_time = 60. max_execution_time = 60. Once you have changed the configuration values, save and exit the editor. ... .
sudo service apache2 restart. sudo service apache2 restart..