Zend optimizer Installation error

Rezaa

Verified User
Joined
Dec 15, 2010
Messages
75
Hello,

I tried to install Zend Optimizer with the following commands but I getting an error during installation :
Code:
PHP configuration file: /usr/local/lib/php.ini is corrupted:
Error parsing /usr/local/lib/php.ini on line 492

Please try again!

these are the commands that I'm using:
Code:
cd /usr/local/directadmin/custombuild
./build update
./build zend


I never touch php.ini

Anyone can help me?


Reza A.
 
If you use nano:

nano /usr/local/lib/php.ini

ctrl + c - shows you the current line
ctrl + v - goes down a page
ctrl + y - goes up a page

It will say like line XX/XXX the first number XX is your line you are on and XXX would be the total lines in the file.

ctrl + x - to close the file when you are done.
 
If you use nano:

nano /usr/local/lib/php.ini

ctrl + c - shows you the current line
ctrl + v - goes down a page
ctrl + y - goes up a page

It will say like line XX/XXX the first number XX is your line you are on and XXX would be the total lines in the file.

ctrl + x - to close the file when you are done.

This is what on line 492
Code:
extension_dir ="/usr/local/lib/php/extensions/no-debug-non-zts-20060613/"
 
Back
Top