you really should use fantastico’s “uninstall” option as there are files associated with that script that will interfere with a re-install if not removed
OK, but the domain is my primary domain. I can’t see the option “Remove” for my primary domain, am I missing something?
I would ask your host about it
you can delete it yourself but really need to be familiar with what you’re doing
Just letting you guys know, to uninstall WordPress from your primary domain using Fantastico just choose “Remove” at the site listed as “/” at the top
How do you uninstall a wordpress site if it is NOT in the Fantastico list?
If you do not have it on list you delete all wordpress files and folders and if are sure about uninstall you delete database and that will uninstall wordpress.
Ok. Thanks for the info. I will do that.
If you actually have access to ftp then it is very easy to delete WordPress.
Step 1: Delete All WordPress files from the directory except (wp-config.php).
Step 2: Delete Database.
Create a php file and put this code with proper information. [You can get your database information into your wp-config.php file]
Delete Database:
<?php
defined("HOST")? null : define("HOST", "put db host name from config file");
defined("USER")? null : define("USER", "put db user name from config file");
defined("PASS")? null : define("PASS", "put db password from config file");
defined("DBNAME")? null : define("DBNAME", "put db name from config file");
$con = mysql_connect(HOST,USER,PASS);
if($con){
$link = mysql_select_db(DBNAME,$con) or die("no database").mysql_error();
if($link){
$sql = "drop database ".DBNAME;
if(mysql_query($sql)){
echo $sql;
}
}
}
else{
echo "Not successful";
}
?>
Now execute the new file & delete wp-config.php.
So your database will be deleted and your WordPress uninstall successfully.