Knowledge Base

[Koozali] WordPress manual upgrade

cd /home/e-smith/files/ibays/{ibay}
wget https://en-au.wordpress.org/wordpress-{version}-en_AU.zip
mv html wordpress
unzip wordpress-{version}-en_AU.zip
mv wordpress html
cd html
chown www:shared * -R
chmod 750 -R *
[Koozali] WordPress manual upgrade was last modified: May 18th, 2016 by tabcom

Disabling automatic hard disk scan and repair

Disabling automatic hard disk scan and repair (‘checkdisk’).

During Windows startup, you will be given a couple of seconds, during which you can press any key to temporarily skip repairing and scanning of [C:].

Using an administrative command prompt you can manually scan a hard disk for errors using the following commands:

chkdsk C: /x /f /r
sfc /scannow

If you want to cancel automatic hard disk scan and repair in Windows 8 altogether, here is how you can do it.

Using Registry Editor

Run regedit to open the Registry Editor and navigate to the following key:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager

Change the BootExecute entry from:

autocheck autochk * /r\DosDevice\C:

To:

autocheck autochk *

…or remove this entry completely to disable this feature altogether.

cancel-chkdsk-in-windows

Close the Registry Editor and restart your computer. Automatic hard disk scan and repair will not run.

Using Command Prompt

To cancel a scheduled automatic hard disk scan and repair operation, open an elevated command prompt window and enter the following command:

chkntfs /x c:

This should cancel the scheduled operation.

Disabling automatic hard disk scan and repair was last modified: May 4th, 2016 by tabcom

Installation of Concrete5 on Koozali

Koozali MySQL server does not have InnoDB enabled, which is required for Concrete5.  Run the following commands to enable InnoDB:

db configuration setprop mysqld InnoDB enabled
 expand-template /etc/my.cnf
 sv t /service/mysqld

Next we need to bump up the memory limit for PHP:

/sbin/e-smith/db configuration setprop php MemoryLimit 80M
expand-template /etc/php.ini
Installation of Concrete5 on Koozali was last modified: April 8th, 2016 by tabcom