The domain is mat.mysite.com. The files are in /mat.
the .htaccess is:
Code: Select all
# Please ensure register_globals is Off by uncommenting this line
#php_flag register_globals Off
# URL Alias - see install.txt
Options +FollowSymlinks
<IfModule mod_rewrite.c>
RewriteEngine On
#OPENCART REWRITES START
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php
#OPENCART REWRITES END
</IfModule>
Code: Select all
<?php
// HTTP
define('HTTP_SERVER', 'http://mat.mysite.com/');
define('HTTP_IMAGE', 'http://mat.mysite.com/image/');
// HTTPS
define('HTTPS_SERVER', '');
define('HTTPS_IMAGE', '');
// DIR
define('DIR_CACHE', './cache/');
define('DIR_DOWNLOAD', './download/');
define('DIR_IMAGE', './image/');
define('DIR_LIBRARY', './library/');
define('DIR_MODEL', './catalog/model/');
define('DIR_CONTROLLER', './catalog/controller/');
define('DIR_LANGUAGE', './catalog/language/');
define('DIR_EXTENSION', './catalog/extension/');
define('DIR_TEMPLATE', './catalog/template/');
// DB
define('DB_HOST', 'xxxxx.secureserver.net');
define('DB_USER', 'mymat');
define('DB_PASSWORD', 'xxxxxxxx');
define('DB_NAME', 'mymat');
?>
Code: Select all
500 Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, support@supportwebsite.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
Apache/1.3.33 Server at mat.boyuu.com Port 80
Thanks!