Changes between Version 38 and Version 39 of NewLiveServer
- Timestamp:
- 10/28/10 14:13:04 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
NewLiveServer
v38 v39 7 7 8 8 The live site is being set up at http://live.quince.webarch.net/ and the notes about the old live server are here: LiveServer The move to quince.webarch.net is being sorted out on ticket:147 9 10 == TODO == 11 12 !. Optimise, what php accelerator should we use? Filecache for the moment because of problems encountered with both memcache and apc. Tweak MySQL defaults. 13 14 2. Cron 15 16 3. !ImageMagick 17 18 4. This error from the apache logs 19 20 {{{ 21 [Thu Oct 28 12:56:18 2010] [info] SSL Library Error: 336027900 error:140760FC:SSL routines:SSL23_GET_CLIENT_HELLO:unknown protocol speaking not SSL to HTTPS port!? 22 }}} 23 9 24 10 25 == apache == … … 31 46 32 47 The php-apc package is installed and info about how it is preforming is at https://live.quince.webarch.net/info/apc.php it's protected using htauthentication, ask chris@webarchitects.co.uk for the username / password if you need it. 48 49 The configuration is in /etc/php5/conf.d/apc.ini and the settings have been taken from here http://www.innovatingtomorrow.net/2008/01/17/improve-php-performance-apc 50 51 {{{ 52 extension=apc.so 53 apc.enabled = 1 54 apc.shm_size = 128 55 apc.include_once_override = 1 56 apc.mmap_file_mask = /tmp/apc.XXXXXX 57 }}} 33 58 34 59 The wiki:NewLiveServer#mediawiki site is set to use APC via this setting in /web/wiki.transitionnetwork.org/www/LocalSettings.php … … 168 193 display_errors = On 169 194 default_charset = "utf-8" 195 == TODO == 196 197 1. Sort out drupal errors: 198 199 {{{ 200 warning: array_merge() [function.array-merge]: Argument #2 is not an array in /web/transitionnetwork.org/www/includes/theme.inc on line 930. 201 }}} 202 203 {{{ 204 warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'nodereference_autocomplete_access' was given in /web/transitionnetwork.org/www/includes/menu.inc on line 452. 205 }}} 206 207 2. Optimise, what php accelerator should we use? Tweak MySQL defaults. 208 209 3. Cron 210 211 4. Consider switching to http://www.dotdeb.org/ packages for php and mysql -- this should solve the GD problem... 212 170 213 mysql.default_socket = /var/run/mysqld/mysqld.sock 171 214 mysql.default_port = 3306 … … 209 252 * [http://exchange.munin-monitoring.org/plugins/multimemory/details multimemory] 210 253 * [http://exchange.munin-monitoring.org/plugins/apache_activity/details apache_activity] 211 212 == TODO ==213 214 1. Sort out drupal errors:215 216 {{{217 warning: array_merge() [function.array-merge]: Argument #2 is not an array in /web/transitionnetwork.org/www/includes/theme.inc on line 930.218 }}}219 220 {{{221 warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'nodereference_autocomplete_access' was given in /web/transitionnetwork.org/www/includes/menu.inc on line 452.222 }}}223 224 2. Optimise, what php accelerator should we use? Tweak MySQL defaults.225 226 3. Cron227 228 4. Consider switching to http://www.dotdeb.org/ packages for php and mysql -- this should solve the GD problem...229 254 230 255 == Setup Notes ==