From Aikiframework wiki
This page contains the manual uninstall process. If and when a more automated process is available that should be listed here as well.
| !Important: To uninstall Aiki you will need write access to the directory that Aiki was installed into.
|
Remove the Aiki Framework
| !Important: This cannot be undone and will delete all data saved by Aiki.
|
Manual Uninstall
From a Shared Directory
- If the Aiki Framework is installed in a shared directory:
cd /var/www/html
rm -rfv aiki.php assets ChangeLog config.php index.php INSTALL LICENSE README style.php system VERSION
- If the .htaccess file is only used by Aiki:
rm -rfv .htaccess
From a Sub-Directory
- If the Aiki Framework is installed in it's own sub-directory:
rm -rfv /var/www/html/aiki
Drop the Aiki Database
| !Important: This cannot be undone and will delete all data saved by Aiki.
|
mysqladmin -ppassword -u aiki drop aiki
Dropping the database is potentially a very bad thing to do.
Any data stored in the database will be destroyed.
Do you really want to drop the 'aiki' database [y/N]y
Database "aiki" dropped
Drop the Aiki Database User
| !Important: You must have super-user privileges to delete a user
|
Substitute the correct password in the following command.
mysql -u root -ppassword -e "DROP USER 'aiki'@'localhost';"
See Related Pages