How to uninstall Xenfo 1.1.2

gamesplayer

New member
Hi, i was having problems installing on my domain, so i installed it on the root of the domain which worked, but the software paths are on the wrong root domain. How do i remove it cleanly and try again?
 
thanks. i have purchased today. i was looking for a script to remove the database tables and all other data which could affect a reinstall. i'll keep trying to reinstall.
 
If you do it the way I mentioned, it will overwrite all of the database tables.

Alternatively, you could use a database query such as the following:

Code:
SELECT CONCAT( 'DROP TABLE ', GROUP_CONCAT(table_name) , ';' ) 
    AS statement FROM information_schema.tables 
    WHERE table_schema = 'database_name' AND table_name LIKE 'xf_%';

Just change "database_name" to the name of your database.
 
That's one way :)

Don't forget to assign your forum account to your customer account or you won't be able to download resources or get the help you need in the future.
 
:) linked. shall i start a new thread for my install woes? i can't seem to run scripts inside the xenforo directory.
in the server error log
[Thu May 31 15:26:17 2012] [error] [client x.x.211.43] SoftException in Application.cpp:601: Directory "/home/hostname/public_html/mydomain.co.uk/xenforo" is writeable by group
 
Top Bottom