problem on admin page
Forum rules
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
problem on admin page
Hi,
I go issue with the admin page, when login, i get this corrupt interface. (attached pic)
Any idea what the prob?
I go issue with the admin page, when login, i get this corrupt interface. (attached pic)
Any idea what the prob?
- Attachments
-
- aimeos.jpg (102.27 KiB) Viewed 3431 times
Re: problem on admin page
Can you please open the console of your browser and have a look if there are any Javascript errors or some XHR requests that are failing?
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,

Re: problem on admin page
I have check on the browser console, and get the errors as below,
cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.css Failed to load resource: net::ERR_INSECURE_RESPONSE
cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/css/tether.min.css Failed to load resource: net::ERR_INSECURE_RESPONSE
cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css Failed to load resource: net::ERR_INSECURE_RESPONSE
jquery.min.js Failed to load resource: net::ERR_INSECURE_RESPONSE
jquery-ui.min.js Failed to load resource: net::ERR_INSECURE_RESPONSE
d3.min.js Failed to load resource: net::ERR_INSECURE_RESPONSE
modernizr.js Failed to load resource: net::ERR_INSECURE_RESPONSE
tether.min.js Failed to load resource: net::ERR_INSECURE_RESPONSE
ckeditor.js Failed to load resource: net::ERR_INSECURE_RESPONSE
jquery.js Failed to load resource: net::ERR_INSECURE_RESPONSE
bootstrap.min.js:6 Uncaught Error: Bootstrap's JavaScript requires jQuery. jQuery must be included before Bootstrap's JavaScript.
at bootstrap.min.js:6
tether.min.js Failed to load resource: net::ERR_INSECURE_RESPONSE
js:141 Uncaught ReferenceError: jQuery is not defined
at js:141
Any idea on how what this mean? something to do with the refer js link?
cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.css Failed to load resource: net::ERR_INSECURE_RESPONSE
cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/css/tether.min.css Failed to load resource: net::ERR_INSECURE_RESPONSE
cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css Failed to load resource: net::ERR_INSECURE_RESPONSE
jquery.min.js Failed to load resource: net::ERR_INSECURE_RESPONSE
jquery-ui.min.js Failed to load resource: net::ERR_INSECURE_RESPONSE
d3.min.js Failed to load resource: net::ERR_INSECURE_RESPONSE
modernizr.js Failed to load resource: net::ERR_INSECURE_RESPONSE
tether.min.js Failed to load resource: net::ERR_INSECURE_RESPONSE
ckeditor.js Failed to load resource: net::ERR_INSECURE_RESPONSE
jquery.js Failed to load resource: net::ERR_INSECURE_RESPONSE
bootstrap.min.js:6 Uncaught Error: Bootstrap's JavaScript requires jQuery. jQuery must be included before Bootstrap's JavaScript.
at bootstrap.min.js:6
tether.min.js Failed to load resource: net::ERR_INSECURE_RESPONSE
js:141 Uncaught ReferenceError: jQuery is not defined
at js:141
Any idea on how what this mean? something to do with the refer js link?
Re: problem on admin page
There seems to be some proxy between you and the CDN which modifies the data so the hashes don't match any more.
If you can't get around this, you can try to replace "https" by "http" or remove the "integrity" attribute in the "link" and "script" tags in a local copy of this file in ./resources/views/vendor/shop/jqadm/: https://github.com/aimeos/aimeos-larave ... .blade.php
If you can't get around this, you can try to replace "https" by "http" or remove the "integrity" attribute in the "link" and "script" tags in a local copy of this file in ./resources/views/vendor/shop/jqadm/: https://github.com/aimeos/aimeos-larave ... .blade.php
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,

Re: problem on admin page
By changing the https to http, prob solved. thanks !