I have no clue what happened here, this is version 2.3.0.2 and I noticed the other day that I stopped getting backup messages, and now nothing is working at all. Every page gives me ERR_EMPTY_RESPONSE. About every 15 tries I can get a page to load, and it does not matter what broswer I use, the behavior is consistent. Is it possible my web host changed something and screwed up my cart?
I have no idea where to start looking here. I saw a few posts from the older version that mentioned adding or removing www. from the root and admin config.php files so I tried that and had no change.
I also tried commenting out the HTTPS stuff since I am not running that on this server, and that made no difference, so I reverted everything back to original. Any help you can provide would be greatly appreciated!
I have no idea where to start looking here. I saw a few posts from the older version that mentioned adding or removing www. from the root and admin config.php files so I tried that and had no change.
I also tried commenting out the HTTPS stuff since I am not running that on this server, and that made no difference, so I reverted everything back to original. Any help you can provide would be greatly appreciated!
Here is the config.php in my root folder:
Code: Select all
<?php
// HTTP
define('HTTP_SERVER', 'http://3sixty-solutions.com/shop/');
// HTTPS
define('HTTPS_SERVER', 'http://3sixty-solutions.com/shop/');
// DIR
define('DIR_APPLICATION', '/home/sixtysol/domains/3sixty-solutions.com/public_html/shop/catalog/');
define('DIR_SYSTEM', '/home/sixtysol/domains/3sixty-solutions.com/public_html/shop/system/');
define('DIR_IMAGE', '/home/sixtysol/domains/3sixty-solutions.com/public_html/shop/image/');
define('DIR_LANGUAGE', '/home/sixtysol/domains/3sixty-solutions.com/public_html/shop/catalog/language/');
define('DIR_TEMPLATE', '/home/sixtysol/domains/3sixty-solutions.com/public_html/shop/catalog/view/theme/');
define('DIR_CONFIG', '/home/sixtysol/domains/3sixty-solutions.com/public_html/shop/system/config/');
define('DIR_CACHE', '/home/sixtysol/domains/3sixty-solutions.com/public_html/shop/system/storage/cache/');
define('DIR_DOWNLOAD', '/home/sixtysol/domains/3sixty-solutions.com/public_html/shop/system/storage/download/');
define('DIR_LOGS', '/home/sixtysol/domains/3sixty-solutions.com/public_html/shop/system/storage/logs/');
define('DIR_MODIFICATION', '/home/sixtysol/domains/3sixty-solutions.com/public_html/shop/system/storage/modification/');
define('DIR_UPLOAD', '/home/sixtysol/domains/3sixty-solutions.com/public_html/shop/system/storage/upload/');
// DB
define('DB_DRIVER', 'mysqli');
define('DB_HOSTNAME', 'localhost');
define('DB_USERNAME', '**********_shop360');
define('DB_PASSWORD', '*********');
define('DB_DATABASE', '********_shop360');
define('DB_PORT', '*****');
define('DB_PREFIX', 'shop_');
This is the config.php from my admin folder:
Code: Select all
<?php
// HTTP
define('HTTP_SERVER', 'http://3sixty-solutions.com/shop/admin/');
define('HTTP_CATALOG', 'http://3sixty-solutions.com/shop/');
// HTTPS
define('HTTPS_SERVER', 'http://3sixty-solutions.com/shop/admin/');
define('HTTPS_CATALOG', 'http://3sixty-solutions.com/shop/');
// DIR
define('DIR_APPLICATION', '/home/sixtysol/domains/3sixty-solutions.com/public_html/shop/admin/');
define('DIR_SYSTEM', '/home/sixtysol/domains/3sixty-solutions.com/public_html/shop/system/');
define('DIR_IMAGE', '/home/sixtysol/domains/3sixty-solutions.com/public_html/shop/image/');
define('DIR_LANGUAGE', '/home/sixtysol/domains/3sixty-solutions.com/public_html/shop/admin/language/');
define('DIR_TEMPLATE', '/home/sixtysol/domains/3sixty-solutions.com/public_html/shop/admin/view/template/');
define('DIR_CONFIG', '/home/sixtysol/domains/3sixty-solutions.com/public_html/shop/system/config/');
define('DIR_CACHE', '/home/sixtysol/domains/3sixty-solutions.com/public_html/shop/system/storage/cache/');
define('DIR_DOWNLOAD', '/home/sixtysol/domains/3sixty-solutions.com/public_html/shop/system/storage/download/');
define('DIR_LOGS', '/home/sixtysol/domains/3sixty-solutions.com/public_html/shop/system/storage/logs/');
define('DIR_MODIFICATION', '/home/sixtysol/domains/3sixty-solutions.com/public_html/shop/system/storage/modification/');
define('DIR_UPLOAD', '/home/sixtysol/domains/3sixty-solutions.com/public_html/shop/system/storage/upload/');
define('DIR_CATALOG', '/home/sixtysol/domains/3sixty-solutions.com/public_html/shop/catalog/');
// DB
define('DB_DRIVER', 'mysqli');
define('DB_HOSTNAME', 'localhost');
define('DB_USERNAME', '*********_shop360');
define('DB_PASSWORD', '**********');
define('DB_DATABASE', '********_shop360');
define('DB_PORT', '*******');
define('DB_PREFIX', 'shop_');
Here is the .htaccess file (which still had ".txt" at the end, but that had no effect when I removed it)
Code: Select all
# 1.To use URL Alias you need to be running apache with mod_rewrite enabled.
# 2. In your opencart directory rename htaccess.txt to .htaccess.
# For any support issues please visit: http://www.opencart.com
Options +FollowSymlinks
# Prevent Directoy listing
Options -Indexes
# Prevent Direct Access to files
<FilesMatch "(?i)((\.tpl|\.ini|\.log|(?<!robots)\.txt))">
Require all denied
## For apache 2.2 and older, replace "Require all denied" with these two lines :
# Order deny,allow
# Deny from all
</FilesMatch>
# SEO URL Settings
RewriteEngine On
# If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/
RewriteBase /
RewriteRule ^sitemap.xml$ index.php?route=extension/feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=extension/feed/google_base [L]
RewriteRule ^system/download/(.*) index.php?route=error/not_found [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
### Additional Settings that may need to be enabled for some servers
### Uncomment the commands by removing the # sign in front of it.
### If you get an "Internal Server Error 500" after enabling any of the following settings, restore the # as this means your host doesn't allow that.
# 1. If your cart only allows you to add one item at a time, it is possible register_globals is on. This may work to disable it:
# php_flag register_globals off
# 2. If your cart has magic quotes enabled, This may work to disable it:
# php_flag magic_quotes_gpc Off
# 3. Set max upload file size. Most hosts will limit this and not allow it to be overridden but you can try
# php_value upload_max_filesize 999M
# 4. set max post size. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
# php_value post_max_size 999M
# 5. set max time script can take. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
# php_value max_execution_time 200
# 6. set max time for input to be recieved. Uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields
# php_value max_input_time 200
# 7. disable open_basedir limitations
# php_admin_value open_basedir none
Googling by ERR_EMPTY_RESPONSE gives you a lot of interesting results...
Professional OpenCart extensions, support and custom work.
Contact me via email or Skype by support@thekrotek.com
Version doesn't matter, because this error is not even related to OpenCart. It's a message, which your browser displays, not OpenCart. So google again and try different solutions no matter the version.
Professional OpenCart extensions, support and custom work.
Contact me via email or Skype by support@thekrotek.com
Hi,
I know this is a necro bump. But I am having the same issue. And yes, I also tried moving my opencart to another directory then suddenly it's started working.
I have 3 servers with at least 1 opencart installation. All of them are like this. And it's happening when I tried saving in Opencart settings.
Even for a fresh install.
I know that this may not be an Opencart issue, but at least, maybe if I post here, someone will be able to help.
I am beginning to think that this is a server issue but I cannot see what's wrong.
I am using a VPS server with CWP Pro control panel installed.
Suddently, it just happened. It's working for about a year while I am using CWP Pro
I know this is a necro bump. But I am having the same issue. And yes, I also tried moving my opencart to another directory then suddenly it's started working.
I have 3 servers with at least 1 opencart installation. All of them are like this. And it's happening when I tried saving in Opencart settings.
Even for a fresh install.
I know that this may not be an Opencart issue, but at least, maybe if I post here, someone will be able to help.
I am beginning to think that this is a server issue but I cannot see what's wrong.
I am using a VPS server with CWP Pro control panel installed.
Suddently, it just happened. It's working for about a year while I am using CWP Pro
Who is online
Users browsing this forum: No registered users and 2 guests