RWHP Active member Oct 4, 2012 #1 I was reading about certain options and adjustments to improve speed and efficiency. Wondering who would be recommended for this?
I was reading about certain options and adjustments to improve speed and efficiency. Wondering who would be recommended for this?
xIsabel38 Well-known member Oct 5, 2012 #2 I have absolutely no idea But I did a search and found this: http://xenforo.com/community/thread...ver-for-speed-optimization.36480/#post-415585 Not sure if it helps you or not.
I have absolutely no idea But I did a search and found this: http://xenforo.com/community/thread...ver-for-speed-optimization.36480/#post-415585 Not sure if it helps you or not.
Jake Bunce Well-known member Oct 7, 2012 #3 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
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
Jake Bunce Well-known member Oct 7, 2012 #5 RWHP said: Thanks. Is their an easy way to do this? Click to expand... Ask your host or server person to install APC: http://php.net/manual/en/apc.installation.php
RWHP said: Thanks. Is their an easy way to do this? Click to expand... Ask your host or server person to install APC: http://php.net/manual/en/apc.installation.php
Insy Well-known member Oct 7, 2012 #6 RWHP said: Thanks. Is their an easy way to do this? Click to expand... 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.
RWHP said: Thanks. Is their an easy way to do this? Click to expand... 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.