Michael Ramos
Michael Ramos

Reputation: 5817

PHP.ini error -- No permission -- Root User

Trying to setup and configure my mac as a testing server. So setting up the php.ini, i get an error when trying to save my changes:

Error writing /usr/local/php5/lib/php.ini: Permission denied

I don't know why this happened or how to fix it (noob) -I am logged in as root.

Upvotes: 7

Views: 22429

Answers (2)

Krish R
Krish R

Reputation: 22741

Try this,

sudo -i

nano /usr/local/php5/lib/php.ini

OR

sudo  nano /usr/local/php5/lib/php.ini

OR

vi  /usr/local/php5/lib/php.ini

Upvotes: 12

Tib
Tib

Reputation: 2631

Try this :

sudo chmod 644 /usr/local/php5/lib/php.ini

It will give you the rights to write on the php.ini

Upvotes: 1

Related Questions