Hey on my site there is this folder in the public_html that i can't delete does anyone have any ideas on how to remove this
If FTP or WebDisk do not work, make sure you have write permissions set to the folder. It won't delete if you don't have write permission.
The linux command to change this would be something like:
chmod 777 /folderpath/foldername
Or, you can manage it by right clicking it in the FTP client. Make sure that is your folderpath/name as 777 will give read/write/execute to all users.
Once you have write permission, you should be able to delete it. You can do this through FTP or WebDisk. Or, if you wish to use Linux, it would be:
rm -i /folderpath/foldername
I'm not sure if x10 has a Linux command line that you can use. But you can run a Perl script from cgi-bin to do the same thing.