Setup Authorize.Net with magento 2.3.5-p1

Hello everybody!
I’m using magento 2.3.5-p1. I setup Authorize.Net module but it not active. This is error

[2020-06-29 10:09:44] [ERROR] Failed to load the "AutherizeNet_CreditCard/js/view/payment/method-renderer/creditcard" compenent. console-ouput-handler-min-js:2

How do I fix?

We’re going to need a few more details in order to provide an answer…

  1. Which version of Autherize.net are you using?

  2. If the latter, did you install the module yourself?

  3. What type of Error is it? 503? 404? Something else?

1 Like

Hi!
I using magento 2.3.5-p1 version.
I using Authorize.Net CIM version V4.3.0 of Paradox. Before, I was tested module Authorize.net of authorize deverlop., but it not active.
Error type is 404.
please help me!

Running into a 404 that should be generated by a recently installed module would suggest to me that the installation hasn’t completed successfully. Try running through the following commands to ensure all is working as it should.

These are my goto commands whenever I install anything new

Run one line at a time as the “magento” user from the “magento root directory”:

rm -rf var/cache/* var/page_cache/* generated/code/* pub/static/* var/view_preprocessed/*
bin/magento setup:upgrade
bin/magento setup:di:compile
bin/magento setup:static-content:deploy en_US en_GB -f

*Replace en_US and en_GB with whatever locales you’re using.

bin/magento indexer:reindex
bin/magento cache:clean
bin/magento cache:flush
redis-cli FLUSHALL

*Only required if you run Redis

1 Like

Thank you so much! I will test