Not sure if you've fixed your problem because your store seems to work fine when I access it at http://www.stitchnframeonline.com/
The contents of your Admin's configure.php file is pointing to a local XAMPP server. Since your store is now on a remote server which runs Linux, you should change the contents of the file to reflect that fact.
An example would be something like the following if you are installing into the document root directory; alter it to suit your server environment.
PHP Code:
define('DIR_FS_ADMIN', '/home/xxxx/public_html/admin/');
define('DIR_FS_CATALOG', '/home/xxxx/public_html/');
If you intend to install into a sub-directory (e.g. store) in your document root, then it would be something like this:
PHP Code:
define('DIR_FS_ADMIN', '/home/xxxx/public_html/store/admin/');
define('DIR_FS_CATALOG', '/home/xxxx/public_html/store/');
Change the text 'xxxx' and the 'admin' folder to suit your server's setup.
Bookmarks