Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter Mike

    (@evaran)

    Hi @cheffernan

    Only options I can find are the two I defined while debugging as mentioned above in wp-config.php:
    grep -ri “LEADIN_KEY|LEADIN_SALT”
    wp-content/plugins/leadin/public/auth/class-oauthcrypto.php: if ( defined( ‘LEADIN_KEY’ ) ) {
    wp-content/plugins/leadin/public/auth/class-oauthcrypto.php: return LEADIN_KEY;
    wp-content/plugins/leadin/public/auth/class-oauthcrypto.php: if ( defined( ‘LEADIN_SALT’ ) ) {
    wp-content/plugins/leadin/public/auth/class-oauthcrypto.php: return LEADIN_SALT;
    wp-content/plugins/leadin/leadin.php:if ( ! defined( ‘LEADIN_KEY’ ) && defined( ‘LOGGED_IN_KEY’ ) ) {
    wp-content/plugins/leadin/leadin.php: define( ‘LEADIN_KEY’, LOGGED_IN_KEY );
    wp-content/plugins/leadin/leadin.php:if ( ! defined( ‘LEADIN_SALT’ ) && defined( ‘LOGGED_IN_SALT’ ) ) {
    wp-content/plugins/leadin/leadin.php: define( ‘LEADIN_SALT’, LOGGED_IN_SALT );
    wp-config.php:define(‘LEADIN_KEY’,’lorem’);
    wp-config.php:define(‘LEADIN_SALT’,’ipsum’);

    wp_option database has
    _account_name = unset
    _portal_domain = unset

    _refresh_token = random string/hash

    Those these appear to all be unset by uninstall.php

    I can see in the plugin it checks if LEADIN_KEY & LEADIN_SALT are defined and then falls back to the WP keys/salts, so likely the issue is something else?

    We cannot do anything with the plugin settings, there’s the login page only. The other tabs are disabled when disconnected.

    Thanks

    Mike

    Edit: Just tried connecting a new user/account and it connected, cleared the domain cache and reset the plugin and will ask our HS admin to try and reconnect – does this require deleting the old/existing connections from settings > integrations > connected apps, or is this a question for HS support? 🙂

    • This reply was modified 2 weeks, 2 days ago by Mike.
Viewing 1 replies (of 1 total)