• 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"

FS Poster - Best Auto Poster & Scheduler Plugin For WordPress

FS Poster — Auto Poster & Scheduler Plugin For WordPress v6.5.5

No permission to download
Thank You , I have installed the snitch and yes it confirmed the problem is FS-poster , can you help with that ? I add screenshot from my report


Thank You
The processes that I see in your image belong to the verification of accounts.
Disable social media account verification in the dashboard and see if this is fixed.

I also see processes to check for updates but these are minor processes.

Anyway I will try to cancel the update queries in future versions.
 
  • Like
Reactions: master1review
The processes that I see in your image belong to the verification of accounts.
Disable social media account verification in the dashboard and see if this is fixed.

I also see processes to check for updates but these are minor processes.

Anyway I will try to cancel the update queries in future versions.


done but always still the process : Providers/FSCodeUpdater.php:126
 

Attachments

  • Screen Shot 2020-12-13 at 23.55.00 PM.png
    Screen Shot 2020-12-13 at 23.55.00 PM.png
    489.3 KB · Views: 11
I see in "snitch" plugin is possible to "Block this host " or " Block this file " can solve if I click on one of this or will the FS-poster dont work anymore?
 
ok I dont know what really is doing the snitch plugin but I have click to "Block this host " and " Block this file " and the plugin continue work and the admin of Wordpress now is going fast!!! ThanK you to everyone for the help
 
  • Like
Reactions: Mamo
ok I dont know what really is doing the snitch plugin but I have click to "Block this host " and " Block this file " and the plugin continue work and the admin of Wordpress now is going fast!!! ThanK you to everyone for the help
Uhmm thanks for the tip, I'll cancel it in future versions.
 
  • Like
Reactions: master1review
ok I dont know what really is doing the snitch plugin but I have click to "Block this host " and " Block this file " and the plugin continue work and the admin of Wordpress now is going fast!!! ThanK you to everyone for the help
You could replace the file:
wp-content/plugins/fs-poster/App/Providers/FSCodeUpdater.php

Code:
<?php

namespace FSPoster\App\Providers;

use stdClass;

class FSCodeUpdater
{
    private $expiration = 12;// horus
    private $plugin_slug;
    private $update_url;
    private $plugin_base;
    private $purchase_code;

    public function __construct ( $plugin, $updateURL, $purchase_code )
    {
        $this->plugin_slug   = $plugin;
        $this->update_url    = $updateURL;
        $this->plugin_base   = $plugin . '/init.php';
        $this->purchase_code = $purchase_code;

        $this->check_if_forced_for_update();

        add_filter( 'plugins_api', [ $this, 'plugin_info' ], 20, 3 );
        add_filter( 'site_transient_update_plugins', [ $this, 'push_update' ] );
        add_action( 'upgrader_process_complete', [ $this, 'after_update' ], 10, 2 );
        add_filter( 'plugin_row_meta', [ $this, 'check_for_update' ], 10, 2 );
    }

    public function plugin_info ( $res, $action, $args )
    {
        if ( $action !== 'plugin_information' )
        {
            return FALSE;
        }

        if ( $args->slug !== $this->plugin_slug )
        {
            return FALSE;
        }

        $remote = $this->get_transient();

        if ( $remote )
        {
            $res = new stdClass();

            $res->name    = $remote->name;
            $res->slug    = $this->plugin_slug;
            $res->version = $remote->version;
            $res->tested  = $remote->tested;

            $res->author         = '<a href="https://www.fs-code.com">FS Code</a>';
            $res->author_profile = 'https://www.fs-code.com';
            $res->download_link  = $remote->download_url;
            $res->trunk          = $remote->download_url;
            $res->last_updated   = $remote->last_updated;

            $res->sections = [
                'description'  => $remote->sections->description,
                'installation' => $remote->sections->installation,
                'changelog'    => $remote->sections->changelog
            ];

            return $res;

        }

        return FALSE;

    }

    public function push_update ( $transient )
    {
        if ( empty( $transient->checked ) )
        {
            return $transient;
        }

        $remote = $this->get_transient();

        if ( $remote && version_compare( Helper::getVersion(), $remote->version, '<' ) )
        {
            $res                = new stdClass();
            $res->slug          = $this->plugin_slug;
            $res->plugin        = $this->plugin_base;
            $res->new_version   = $remote->version;
            $res->tested        = $remote->tested;
            $res->package       = $remote->download_url;
            $res->compatibility = new stdClass();

            $transient->response[ $res->plugin ] = $res;
        }

        return $transient;
    }

    public function after_update ( $upgrader_object, $options )
    {
        if ( $options[ 'action' ] === 'update' && $options[ 'type' ] === 'plugin' )
        {
            delete_transient( 'fscode_upgrade_' . $this->plugin_slug );
        }
    }

    public function check_for_update ( $links, $file )
    {
        if ( strpos( $file, $this->plugin_base ) !== FALSE )
        {
            $new_links = [
                'check_for_update' => '<a href="plugins.php?fscode_check_for_update=1&plugin=' . urlencode( $this->plugin_slug ) . '&_wpnonce=' . wp_create_nonce( 'fscode_check_for_update_' . $this->plugin_slug ) . '">Check for update</a>'
            ];

            $links = array_merge( $links, $new_links );
        }

        return $links;
    }

    private function get_transient ()
    {
        $remote = get_transient( 'fscode_upgrade_' . $this->plugin_slug );

        if ( ! $remote )
        {
            //$remote = wp_remote_get( $this->update_url . '?act=check_update&domain=' . network_site_url() . '&purchase_code=' . $this->purchase_code );

            if ( ! is_wp_error( $remote ) && isset( $remote[ 'response' ][ 'code' ] ) && $remote[ 'response' ][ 'code' ] == 200 && ! empty( $remote[ 'body' ] ) )
            {
                set_transient( 'fscode_upgrade_' . $this->plugin_slug, $remote, $this->expiration * 60 * 60 );
            }
            else
            {
                return FALSE;
            }
        }

        $remote = json_decode( $remote[ 'body' ] );

        return $remote;
    }

    private function check_if_forced_for_update ()
    {
        $check_update = Request::get( 'fscode_check_for_update', '', 'string' );
        $plugin       = Request::get( 'plugin', '', 'string' );
        $_wpnonce     = Request::get( '_wpnonce', '', 'string' );

        if ( $check_update === '1' && $plugin === $this->plugin_slug && wp_verify_nonce( $_wpnonce, 'fscode_check_for_update_' . $this->plugin_slug ) )
        {
            delete_transient( 'fscode_upgrade_' . $this->plugin_slug );
        }
    }
}
And copy this content and see if you still keep asking too many queries?

In order not to need an external plugin to fix this problem.
 
not working bro, while adding facebook or any social account its giving error https://prntscr.com/w259it
Well I have already spoken about this but I will mention it again.
All standard fs poster applications are for paid users only.
Remember that we are nulled, this is easily solved by creating your own app.
You can find the tutorials on the question marks when adding an account depending on the social network you choose.

Regards
 
Thank You , I have installed the snitch and yes it confirmed the problem is FS-poster , can you help with that ? I add screenshot from my report


Thank You


why not just blocked the related external url?

it will which php file related,

usually, I just blocked the url,and download that php file, just simple remove the related url or replaced with the one of my site.
 
Uhmm thanks for the tip, I'll cancel it in future versions.

That would be great, since there are external connections in most of plugins to collect information from your site, this is actually conflict with privacy plolicy in most of countries.

but the author of plugin never admit this point.:)

Snitch is great tool to monitor this problem.
 
  • Like
Reactions: Mamo
Well I have already spoken about this but I will mention it again.
All standard fs poster applications are for paid users only.
Remember that we are nulled, this is easily solved by creating your own app.
You can find the tutorials on the question marks when adding an account depending on the social network you choose.

Regards
sorry didn't get you bro
 
sorry didn't get you bro
brother, @lgokul meant that when you want to add any account, there is the ADD account button, ok?
when you tried to add the account using the FSposter standard app, it gave you this message. this standard account now not available for NULLED versions like us.

for further help please ask, the community will help, this place is great.

Best Wishes for all of you
 
  • Like
Reactions: lgokul
lgokul updated FS Poster - WordPress auto poster & schedulers with a new update entry:

FS Poster - WordPress Auto Poster & Scheduler

v 4.3.0 – 14 Dec 20 - Nulled By lgokul

+ Added an option to disable the virtual Cron Job;
+ Added an option to keep or ignore skipped post logs;
+ Improved the option to remove all useless shortcodes;
+ Improved the Google My Business API error messages;
+ Fixed the issue related to the Divi page builder;
+ Fixed the issue related to order of posts while scheduling;
+ Fixed the issues related to Cron Jobs;
+ Fixed the issue related posts that don't match conditions of account;
+...

Read the rest of this update entry...
 
  • Love
Reactions: JRGWxRxZ
sorry didn't get you bro
I'll explain it to you again.
The "standard applications" use fs poster's own servers.
For this you need a valid license, that is, to buy the add-on.
If you do not have the means to buy it, this is easily solved by creating your own application. There are tutorials in the question mark before adding an account on how to create your application is very easy and you avoid problems.
 
That would be great, since there are external connections in most of plugins to collect information from your site, this is actually conflict with privacy plolicy in most of countries.

but the author of plugin never admit this point.:)

Snitch is great tool to monitor this problem.
These unnecessary update queries have already been patched in the nulled of this new version.
The option was also added: "Disable the default Cron Job"

When activating it, it respects and uses the cron job of your server and not the virtual cron job, which is what always happened in the previous versions that were executed every minute.
 
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