Page 1 of 1

Depending on network: 404 object not found / or loading just fine ... how to fix this?

Posted: Tue Oct 22, 2019 1:04 am
by Vugt89
Hi all,

I've been trying to get Opencart to load correctly on "all networks" for quite some time now. Although without much success.

The problem:
When I try to load the webshop from the wi-fi network at home (and at some friends places) I will get a 404 object not found. When I try to access the same webshop via work vpn or a mobile hotspot, it just loads fine (it also loads just fine on some other wi-fi networks). Honestly, I have no idea why this happens. I'm guessing it has something to do with the redirection, or with the .htaccess file. But I'm just not that knowledgable in this area.

The current site:
https://pristine.store/

My current settings in phpmyadmin:
Image

My .htaccess file (note: i've tried it without the file / without the headers / and just the plain .htaccess as was supplied with opencart)

Code: Select all

Header add Access-Control-Allow-Origin "*"
Header add Access-Control-Allow-Headers "origin, x-requested-with, content-type"
Header add Access-Control-Allow-Methods "PUT, GET, POST, DELETE, OPTIONS"

# 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|.twig|\.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/storage/(.*) 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
My config in the main dir (http and https were also edited under admin):

Code: Select all

<?php
// HTTP
define('HTTP_SERVER', 'http://www.pristine.store/');
// HTTPS
define('HTTPS_SERVER', 'https://www.pristine.store/');
// DIR
define('DIR_APPLICATION', '/home/deb50730n2/domains/pristine.store/public_html/catalog/');
define('DIR_SYSTEM', '/home/deb50730n2/domains/pristine.store/public_html/system/');
define('DIR_IMAGE', '/home/deb50730n2/domains/pristine.store/public_html/image/');
define('DIR_STORAGE', DIR_SYSTEM . 'storageizbwifmudogr/');
define('DIR_LANGUAGE', DIR_APPLICATION . 'language/');
define('DIR_TEMPLATE', DIR_APPLICATION . 'view/theme/');
define('DIR_CONFIG', DIR_SYSTEM . 'config/');
define('DIR_CACHE', DIR_STORAGE . 'cache/');
define('DIR_DOWNLOAD', DIR_STORAGE . 'download/');
define('DIR_LOGS', DIR_STORAGE . 'logs/');
define('DIR_MODIFICATION', DIR_STORAGE . 'modification/');
define('DIR_SESSION', DIR_STORAGE . 'session/');
define('DIR_UPLOAD', DIR_STORAGE . 'upload/');

// DB
define('DB_DRIVER', 'mysqli');
define('DB_HOSTNAME', 'localhost');
define('DB_USERNAME', 'deb50730n2_oc4');
define('DB_PASSWORD', 'J(9GH^XK7]g[iSvgi0(46^*0');
define('DB_DATABASE', 'deb50730n2_oc4');
define('DB_PREFIX', 'oc_');
define('DB_PORT', '3306');
I hope someone is able to help me ;D

Also, if more info is needed, I'm more than happy to provide

Re: Depending on network: 404 object not found / or loading just fine ... how to fix this?

Posted: Tue Oct 22, 2019 12:07 pm
by IP_CAM
by Use of HTTP, the config.php File Content must look like this:

Code: Select all

// HTTP
define('HTTP_SERVER', 'http://www.pristine.store/');
// HTTPS
define('HTTPS_SERVER', 'http://www.pristine.store/');
and by Use of HTTPS, the config.php File Content must look like this:

Code: Select all

// HTTP
define('HTTP_SERVER', 'https://www.pristine.store/');
// HTTPS
define('HTTPS_SERVER', 'https://www.pristine.store/');
and similar in the Admin config.php file ... ;)
Ernie

Re: Depending on network: 404 object not found / or loading just fine ... how to fix this?

Posted: Tue Oct 22, 2019 3:53 pm
by letxobnav
then you probably have a DNS issue with your home wifi network.
Check if your wifi network can find your domain name.