Possible user errors in JS mining

Possible error How to solve

Mining script not loaded

even after correcting the script path for the AV Friendly Solution.

This can be noticed when the embedded script in your website is not running. So, you can follow your script location

http://<your-domain>/<path-to-script>/Oc1X.php?f=alFM.js

It's advised to clear the user's server cache directory.

The local miner does not work after clicking on the "Start Mining" Button.

When you press F12 and check for the JS errors in the browser console, you get this

The reason is that you have an Antivirus or AdBlocker installed on your machine. All you have to do is to deactivate them and then try running the miner again.

Network Connection problem

It tends to happen when the network is too weak

Fix internet connection.

A client is reporting an error related to blobs and asking whether there's a way to have these blob URLs generated in random strings because he can't access nginx, is it possible?

Screenshot of his error:

Wait till the miner gets fixed and check it with him again.

This error appears when a client is trying to use the AV Friendly Solution. Such errors in console are due to the misconfiguration of the user's web server so that the script is detecting https enabled instead of http. And the miner does not run.

You can force http configuration by changing:

$host = urlencode((isset($_SERVER['HTTPS']) ? 'https' : 'http') . "://" . $_SERVER['HTTP_HOST'] . "$uri");

To

$host = urlencode('http://' . $_SERVER['HTTP_HOST'] . "$uri");

And lastly clear your server cache directory