You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am getting the error after updating to the separate Client / Updater SDK.
I have correctly connected GitHub and Wordpress SVN. I have even recreated these connections so they are fresh and not revoked.
The publishing of a release here on GitHub with a tag properly makes the "push" to Appsero, but the update plugin does not work at all. It was working fine for 2 years or so when the updated was inside the Client SDK.
SDKs are at the latest versions, including Wordpress, using PHP 8.3.
My server is not blocking the connection (checked that).
This is in my plugin code:
// Initiliaze plugin analytics SDK
require __DIR__ . '/vendor/autoload.php';
function appsero_init_tracker_webrun_ized()
{
if (! class_exists('Appsero\Client')) {
require_once __DIR__ . '/appsero/src/Client.php';
}
if (! class_exists('Appsero\Updater')) {
require __DIR__ . '/updater/src/Updater.php';
}
$client = new Appsero\Client('KEY_HERE', 'Webrun', __FILE__);
$insights = $client->insights();
// Active automatic updater
// Active insights
$client->insights()
->hide_notice()
->add_plugin_data()
->init();
// Active automatic updater
Appsero\Updater::init($client);
}
appsero_init_tracker_webrun_ized();
The text was updated successfully, but these errors were encountered:
Hello,
I am getting the error after updating to the separate Client / Updater SDK.
I have correctly connected GitHub and Wordpress SVN. I have even recreated these connections so they are fresh and not revoked.
The publishing of a release here on GitHub with a tag properly makes the "push" to Appsero, but the update plugin does not work at all. It was working fine for 2 years or so when the updated was inside the Client SDK.
SDKs are at the latest versions, including Wordpress, using PHP 8.3.
My server is not blocking the connection (checked that).
This is in my plugin code:
The text was updated successfully, but these errors were encountered: