who is good with server config for improving speed etc.

RWHP

Active member
I was reading about certain options and adjustments to improve speed and efficiency. Wondering who would be recommended for this?
 
One of the easiest things you can do is to install APC in PHP. APC functions as an opcode cache which speeds up execution of PHP scripts without any special configuration in XenForo. They use APC here on xenforo.com
 
Thanks. Is their an easy way to do this?
By compiling:
Code:
pecl install apc
With yum (CentOS/Fedora/Redhat):
Code:
yum install -y php-pecl-apc
With apt (Debian/Ubuntu):
Code:
apt-get -y install php5-apc
Then restart your web server.
 
Top Bottom