Post by gsc1ugs » Sat Apr 04, 2015 2:10 am

OC 2.0.2.0 does not checkout with Google Chrome
Last edited by OSWorX on Mon Apr 06, 2015 2:17 am, edited 1 time in total.
Reason: no caps

Active Member

Posts

Joined
Mon Sep 09, 2013 3:32 pm

Post by gilaraujo » Mon Apr 06, 2015 1:57 am

Cannot replicate what so ever.

Could you expand ?
(without caps please!)

New member

Posts

Joined
Fri Mar 27, 2015 10:32 pm

Post by OSWorX » Mon Apr 06, 2015 2:21 am

gsc1ugs wrote:OC 2.0.2.0 does not checkout with Google Chrome
Do you think that this description is enough???
Tell us more and maybe you will get help.

1. which version
2. viruscanner enabled (and if, which)
3. a firewall enabled
4. does it work with other browser
5. and so on .. the more, the better!

Full Stack Web Developer :: Dedicated OpenCart Development & Support DACH Region
Contact for Custom Work / Fast Support.


User avatar
Administrator

Posts

Joined
Mon Jan 11, 2010 10:52 pm
Location - Austria

Post by gsc1ugs » Tue Apr 07, 2015 4:07 pm

Works with IE and FIREFOX, lastest chrome installed, firewalls not blocking

Active Member

Posts

Joined
Mon Sep 09, 2013 3:32 pm

Post by gilaraujo » Tue Apr 07, 2015 11:03 pm

Sorry, This makes no sense what so ever.

New member

Posts

Joined
Fri Mar 27, 2015 10:32 pm

Post by gsc1ugs » Tue Apr 07, 2015 11:35 pm

The add to cart buttons dont work on

Version 41.0.2272.118 m

Google Chrome is up to date.

Active Member

Posts

Joined
Mon Sep 09, 2013 3:32 pm

Post by gilaraujo » Tue Apr 07, 2015 11:51 pm

cant replicate at all, in fact Chrome is my main browser!

Did you try in another machine?
Do you have extensions on chrome?

New member

Posts

Joined
Fri Mar 27, 2015 10:32 pm

Post by gsc1ugs » Wed Apr 08, 2015 12:04 am

If you use 4 products has featured home page, those buttons dont work, you you use hyperlinks to go to the product the big blue button works

Active Member

Posts

Joined
Mon Sep 09, 2013 3:32 pm

Post by gilaraujo » Wed Apr 08, 2015 12:16 am

So what you mean is:
IN google chrome - The add to cart button on the featured Module do not add items to the Cart.

Is that correct?

are you using Https? if so did you configure it correctly on the back end?
Is your .htaccess file redirecting you to an https if you do. Otherwise you will get problems

Can you show us a link of your frontend so we can replicate?

New member

Posts

Joined
Fri Mar 27, 2015 10:32 pm

Post by gsc1ugs » Wed Apr 08, 2015 12:26 am

Will do later

Active Member

Posts

Joined
Mon Sep 09, 2013 3:32 pm

Post by gsc1ugs » Wed Apr 08, 2015 4:42 am

what is the line in .htaccess? do you mean SSL on the server tab?

Active Member

Posts

Joined
Mon Sep 09, 2013 3:32 pm

Post by gsc1ugs » Wed Apr 08, 2015 5:18 pm

Chrome enter key doesn't work on front page, search don't work, see differences on images please

IE

FIREFOX

CHROME (Chrome buttons don't work)

Attachments

iefrontpage.jpg

iefrontpage.jpg (17.5 KiB) Viewed 2226 times

firefoxfrontpage.jpg

firefoxfrontpage.jpg (18.53 KiB) Viewed 2226 times

chromefrontpage.jpg

chromefrontpage.jpg (16.61 KiB) Viewed 2226 times


Active Member

Posts

Joined
Mon Sep 09, 2013 3:32 pm

Post by OSWorX » Wed Apr 08, 2015 6:57 pm

Having absolutely no problems with OC 2.0.2.0 and MSIE, FF, Chrome, Opera (all latest versions).
Seems that you are the only one with problems.
Suggest you check first your environement, and then - if you have still problems - come back.

Full Stack Web Developer :: Dedicated OpenCart Development & Support DACH Region
Contact for Custom Work / Fast Support.


User avatar
Administrator

Posts

Joined
Mon Jan 11, 2010 10:52 pm
Location - Austria

Post by gsc1ugs » Wed Apr 08, 2015 7:32 pm

First thing to look at you reckon?

Active Member

Posts

Joined
Mon Sep 09, 2013 3:32 pm

Post by gsc1ugs » Wed Apr 08, 2015 7:38 pm

This look normal or anything need changing, never needed alter this before .htaccess

# 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))">
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=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
RewriteRule ^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

Active Member

Posts

Joined
Mon Sep 09, 2013 3:32 pm

Post by gilaraujo » Wed Apr 08, 2015 7:41 pm

The way Chrome is rendering the website, it almost feels it has a addon blocking functionality somehow. It just not normal. Be sure you didnt tinker with Chrome settings, remember if you have chrome synched to your google account it will reimport ALL settings across machines and environments, if you sign in.

I had this add on that i installed years ago, to "block" all the social media advertising. i forgot about it all together, and then my social media buttons on opencart wouldn't load. I wrote a ticket to the Theme developer, was a bit embarrassing.

I would try to run it on a different machine with a CLEAN chrome. Not sure if chrome has a "safe" mode, something to google uppon.

New member

Posts

Joined
Fri Mar 27, 2015 10:32 pm

Post by gsc1ugs » Wed Apr 08, 2015 7:52 pm

Ive just check settings in chrome all at recommended

Active Member

Posts

Joined
Mon Sep 09, 2013 3:32 pm

Post by gsc1ugs » Wed Apr 08, 2015 7:54 pm

Is there anything in settings in admin i should look at? its a mystery

Active Member

Posts

Joined
Mon Sep 09, 2013 3:32 pm

Post by gilaraujo » Wed Apr 08, 2015 8:02 pm

Give me the URL, and i post to you my screenshot frm Chrome. thats all i can do.
That way you will know if its the code, or your browser

New member

Posts

Joined
Fri Mar 27, 2015 10:32 pm

Post by gsc1ugs » Wed Apr 08, 2015 8:14 pm

Just pm'd you thxs

Active Member

Posts

Joined
Mon Sep 09, 2013 3:32 pm
Who is online

Users browsing this forum: No registered users and 4 guests