0

First Question on Stack overflow so please forgive any stupidity on my part.

I have a problem with my web server at the moment. It has WHM / cPanel and I have used WHM many times to adjust settings and to add/remove packages through easyApache.

In easyApache there is the option to install/remove eAccelerator, but there are no config options. eAccelerator is installed and doing its job at the moment but I need to recompile it with the following flag without breaking it.

--with-eaccelerator-doc-comment-inclusion

I have come accross the following instructions during my googling but they apear to be incomplete, at least for my needs. Please can someone provide a set of instructions that include the above flag so that I can recompile eAccelerator, but without losing anything from eAccelerator that was installed by easyApache.

make clean # IMPORTANT!!!
phpize
make
make install
RoelF
  • 7,483
  • 5
  • 44
  • 67
Baber
  • 110
  • 6

1 Answers1

0

After you call phpize you need to reconfigure

./configure --with-eaccelerator-doc-comment-inclusion

tlenss
  • 2,609
  • 2
  • 22
  • 26
  • Thankyou very much, so I can run the following commands to recompile eAccelerator. [code] make clean , phpize , ./configure --with-eaccelerator-doc-comment-inclusion , make , make install [code] – Baber Feb 27 '13 at 14:01
  • Yes! That should be the way to go – tlenss Feb 27 '13 at 15:16