Post by RaceVTA » Mon May 23, 2022 7:07 am

activated SSL in admin section and edited both config files. Store now randomly jumps between secure and not secure pages, you can add to cart but when clicking on cart shows cart is empty ?? Login in to account is secure but when u return to store its not secure and you are logged out again, did I miss something ??
Last edited by RaceVTA on Mon May 23, 2022 9:23 am, edited 1 time in total.

New member

Posts

Joined
Fri Apr 27, 2018 11:42 pm

Post by by mona » Mon May 23, 2022 7:17 am

RaceVTA wrote:
Mon May 23, 2022 7:07 am
did I miss something ??
yes

OC version
Theme
Extensions
and web address

plesase and thank you optional but appreciated ;D

DISCLAIMER:
You should not modify core files .. if you would like to donate a cup of coffee I will write it in a modification for you.


https://www.youtube.com/watch?v=zXIxDoCRc84


User avatar
Expert Member

Posts

Joined
Mon Jun 10, 2019 9:31 am

Post by RaceVTA » Mon May 23, 2022 7:20 am

by mona wrote:
Mon May 23, 2022 7:17 am
RaceVTA wrote:
Mon May 23, 2022 7:07 am
did I miss something ??
yes

OC version
Theme
Extensions
and web address

plesase and thank you optional but appreciated ;D
Version 3.0.3.7
default
racevta.com

Current value: RSA, 2,048-bit

New member

Posts

Joined
Fri Apr 27, 2018 11:42 pm

Post by by mona » Mon May 23, 2022 7:27 am

Check your cache control headers

viewtopic.php?t=214597


in system/framework.php

Code: Select all

// Response
$response = new Response();
$response->addHeader('Content-Type: text/html; charset=utf-8');
$response->setCompression($config->get('config_compression'));
$registry->set('response', $response);
into:

Code: Select all

// Response
$response = new Response();
$response->addHeader('Content-Type: text/html; charset=utf-8');
$response->addHeader('Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0');
$response->addHeader('Pragma: no-cache');
$response->setCompression($config->get('config_compression'));
$registry->set('response', $response);

DISCLAIMER:
You should not modify core files .. if you would like to donate a cup of coffee I will write it in a modification for you.


https://www.youtube.com/watch?v=zXIxDoCRc84


User avatar
Expert Member

Posts

Joined
Mon Jun 10, 2019 9:31 am

Post by RaceVTA » Mon May 23, 2022 7:49 am

by mona wrote:
Mon May 23, 2022 7:27 am
Check your cache control headers

viewtopic.php?t=214597


in system/framework.php

Code: Select all

// Response
$response = new Response();
$response->addHeader('Content-Type: text/html; charset=utf-8');
$response->setCompression($config->get('config_compression'));
$registry->set('response', $response);
into:

Code: Select all

// Response
$response = new Response();
$response->addHeader('Content-Type: text/html; charset=utf-8');
$response->addHeader('Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0');
$response->addHeader('Pragma: no-cache');
$response->setCompression($config->get('config_compression'));
$registry->set('response', $response);
changed Response code, cleared cache on chrome and in admin (theme & sass) and still no luck. Secured works fine on all pages from admin side but not for store front.

New member

Posts

Joined
Fri Apr 27, 2018 11:42 pm

Post by by mona » Mon May 23, 2022 8:23 am

have you changed your htaccess

DISCLAIMER:
You should not modify core files .. if you would like to donate a cup of coffee I will write it in a modification for you.


https://www.youtube.com/watch?v=zXIxDoCRc84


User avatar
Expert Member

Posts

Joined
Mon Jun 10, 2019 9:31 am

Post by RaceVTA » Mon May 23, 2022 8:35 am

by mona wrote:
Mon May 23, 2022 8:23 am
have you changed your htaccess
my .htaccess file contains only this:

RewriteEngine on

my .htaccess.txt contains :
# 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

New member

Posts

Joined
Fri Apr 27, 2018 11:42 pm

Post by by mona » Mon May 23, 2022 8:42 am


DISCLAIMER:
You should not modify core files .. if you would like to donate a cup of coffee I will write it in a modification for you.


https://www.youtube.com/watch?v=zXIxDoCRc84


User avatar
Expert Member

Posts

Joined
Mon Jun 10, 2019 9:31 am

Post by RaceVTA » Mon May 23, 2022 8:49 am

Thanks !!! working now :)

New member

Posts

Joined
Fri Apr 27, 2018 11:42 pm

Post by by mona » Mon May 23, 2022 8:50 am

perfect - if you would edit the title of this post to include [SOLVED] everyone will be happy
have a nice day

DISCLAIMER:
You should not modify core files .. if you would like to donate a cup of coffee I will write it in a modification for you.


https://www.youtube.com/watch?v=zXIxDoCRc84


User avatar
Expert Member

Posts

Joined
Mon Jun 10, 2019 9:31 am
Who is online

Users browsing this forum: Adminas99999, Semrush [Bot] and 122 guests