• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

WPSSO Core Premium

WPSSO Core Premium 17.16.0 [UNTOUCHED]

No permission to download
sharmanhall updated WPSSO Core Premium with a new update entry:

WPSSO Core Premium

Changelog / Release Notes​

Version 17.5.0 (2023/12/19)

  • New Features
    • None.
  • Improvements
    • None.
  • Bugfixes
    • Fixed adding 'product:shipping_weight:units' without 'product:shipping_weight:value'.
  • Developer Notes
    • Updated static cache in methods to limit the number of elements:
      • WpssoComment->get_mod()
      • WpssoComment->get_options()...

Read the rest of this update entry...
 
  • Like
Reactions: jamestonewall
Dude scroll up, i gave the null script:

PHP:
// Get the current wpsso_update_manager_config option value
$config = get_option('wpsso_update_manager_config');

// Unserialize the string to get an array
$config_array = unserialize( $config );

// Update the values in the array with the new values
$config_array['auth_type'] = 'tid';
$config_array['auth_id'] = 'WPSSO-PP-00000000000000000';
$config_array['plugin_status'] = 'S*';

// Serialize the array back to a string
$config_serialized = serialize( $config_array );

// Update the wpsso_update_manager_config option with the new serialized string
update_option('wpsso_update_manager_config', $config_serialized);
you gave a directory. What must the file be called? Are we creating a new php file or inserting this code into an existing file. Your instructions are very vague
 
you gave a directory. What must the file be called? Are we creating a new php file or inserting this code into an existing file. Your instructions are very vague
1. save as php script
Code:
script.php
place in root dir.
2. navigate to
Code:
website.com/script.php
in browser
3. activate plugin, it should now be nulled
 
get HTTP ERROR 500 if i use it with

<?php

// Get the current wpsso_update_manager_config option value

and if i remove the <?php it just outputs the code in plain text
 
  • Like
Reactions: finfin
ok so wasnt logged in when i ran script, which is the reason for the HTTP ERROR 500 error.

So ran it again logged in, and gives a white screen, but plugin wasn't nulled.
I then deactivated the pluggin and ran script again, then reactivated, but still not nulled.

So we need the Update manager active as well?

Is there something i am doing wrong?
 
get HTTP ERROR 500 if i use it with

<?php

// Get the current wpsso_update_manager_config option value

and if i remove the <?php it just outputs the code in plain text

PHP:
<?php
// Include the WordPress bootstrap file
require_once( dirname(__FILE__) . '/wp-load.php' );

// Get the current wpsso_update_manager_config option value
$config = get_option('wpsso_update_manager_config');

// Check if $config is false or empty, and initialize a new array if it is
if (!$config) {
    $config_array = array();
} else {
    // Unserialize the string to get an array
    $config_array = unserialize($config);
}

// Update the values in the array with the new values
$config_array['auth_type'] = 'tid';
$config_array['auth_id'] = 'WPSSO-PP-00000000000000000';
$config_array['plugin_status'] = 'S*';

// Serialize the array back to a string
$config_serialized = serialize($config_array);

// Update the wpsso_update_manager_config option with the new serialized string
update_option('wpsso_update_manager_config', $config_serialized);

echo "WPSSO Update Manager configuration updated successfully.";
?>

1704957707472.png

To use this file:

  1. Copy the code code into a new file named
    Code:
    WPSSO.php
    .
  2. Upload this file to your
    Code:
    public_html
    directory.
When you visit
Code:
example.com/WPSSO.php
, this script will execute.

It will update the
Code:
wpsso_update_manager_config
option in your WordPress database with the specified values.


1704958620089.png


Does that make sense? @Gangrasta
 

Attachments

  • 1704958236356.png
    1704958236356.png
    193.2 KB · Views: 9
  • Like
Reactions: finfin
sharmanhall updated WPSSO Core Premium with a new update entry:

WPSSO Core Premium

Code:
/*
 * Plugin Name: WPSSO Core Premium
 * Plugin Slug: wpsso
 * Text Domain: wpsso
 * Domain Path: /languages
 * Plugin URI: https://wpsso.com/extend/plugins/wpsso/
 * Assets URI: https://surniaulula.github.io/wpsso/assets/
 * Author: JS Morisset
 * Author URI: https://wpsso.com/
 * License: GPLv3
 * License URI: https://www.gnu.org/licenses/gpl.txt
 * Description: Present your content at its best on social sites and in search results - no matter how URLs are shared, reshared, messaged...

Read the rest of this update entry...
 
@Gangrasta


install both, then run the PHP -- does that clarify?



Code:
<?php
// Include the WordPress bootstrap file
require_once( dirname(__FILE__) . '/wp-load.php' );

// Get the current wpsso_update_manager_config option value
$config = get_option('wpsso_update_manager_config');

// Check if $config is false or empty, and initialize a new array if it is
if (!$config) {
    $config_array = array();
} else {
    // Unserialize the string to get an array
    $config_array = unserialize($config);
}

// Update the values in the array with the new values
$config_array['auth_type'] = 'tid';
$config_array['auth_id'] = 'WPSSO-PP-0000000000000000P';
$config_array['plugin_status'] = 'S*';

// Serialize the array back to a string
$config_serialized = serialize($config_array);

// Update the wpsso_update_manager_config option with the new serialized string
update_option('wpsso_update_manager_config', $config_serialized);

echo "WPSSO Update Manager configuration updated successfully.";
?>
 

Attachments

  • wpsso-17.7.1.zip
    2.1 MB · Views: 24
  • wpsso-um-5.1.0.zip
    136.3 KB · Views: 19
ok Id did all this and go the confirmation "WPSSO Update Manager configuration updated successfully" but its still not nulled. (Have UM 5.1 installed as well)

In Advanced tab, none of the premium features are available and in Licenses it says this auth code WPSSO-PP-00000000000000000, but still states
License InformationNot available
 
sharmanhall updated WPSSO Core Premium with a new update entry:

WPSSO Core Premium

CHANGELOG / RELEASE NOTES​

Version 17.13.0 (2024/02/15)

  • New Features
    • None.
  • Improvements
    • None.
  • Bugfixes
    • None.
  • Developer Notes
    • Added a “product:is_virtual” internal meta tag for the WPSSO GMF and CMCF add-ons.
    • Updated the WpssoIntegEcomWooCommerce->add_mt_product() method to provide the “product:is_virtual” meta tag value.
  • Requires At...

Read the rest of this update entry...
 
thank you
....
s:110:"a:3:{s:9:"auth_type";s:3:"tid";s:7:"auth_id";s:26:"WPSSO-PP-0000000000000888P";s:13:"plugin_status";s:2:"S*";}";
 
ok Id did all this and go the confirmation "WPSSO Update Manager configuration updated successfully" but its still not nulled. (Have UM 5.1 installed as well)

In Advanced tab, none of the premium features are available and in Licenses it says this auth code WPSSO-PP-00000000000000000, but still states
License InformationNot available
phpmyadmin---database---delete**wpsso_update_manager_config

you dont the Update manager active
try again
 

Attachments

  • wpsso_update_manager_config.jpg
    wpsso_update_manager_config.jpg
    66.7 KB · Views: 4
@sharmanhall This is what I'm getting. Can you please help out? Much appreciated. Thanks in advance.
1705058766981.png
phpmyadmin---database---delete**wpsso_update_manager_config

you dont the Update manager active
try again
 

Attachments

  • 1.jpg
    1.jpg
    65.7 KB · Views: 4
  • 2.jpg
    2.jpg
    142.4 KB · Views: 4
  • 3.jpg
    3.jpg
    43.9 KB · Views: 4
get HTTP ERROR 500 if i use it with

<?php

// Get the current wpsso_update_manager_config option value

and if i remove the <?php it just outputs the code in plain text
 

Attachments

  • wpsso_update_manager_config.jpg
    wpsso_update_manager_config.jpg
    66.7 KB · Views: 3
dont the Update manager active, only install.
if Update manager active,phpmyadmin---database--**wpsso_update_manager_config, will change.

soory, i am chinese, english bad
 
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock