FS Poster - Best Auto Poster & Scheduler Plugin For WordPress

FS Poster — Auto Poster & Scheduler Plugin For WordPress v7.1.9

No permission to download

Suhoff78

Member
Feb 16, 2020
40
4
8
How to make the number of published posts in the journal by default equal to 15. Or so that he remembers my choice 4,8,15.

Is it possible to make the plugin randomly take images from those that are in the post or product, and not just the default images
 
Last edited:

halley

Active member
Jan 19, 2020
170
42
28
update last version, not working :( don't added facebook page's. only see my profile :(
 

lgokul

Well-known member
Babiato Lover
Null Master
Trusted Uploader
Jun 26, 2019
998
1,600
93
32
Planeta Vegeta
How to make the number of published posts in the journal by default equal to 15. Or so that he remembers my choice 4,8,15.

Is it possible to make the plugin randomly take images from those that are in the post or product, and not just the default images
Both options are not currently available in the add-on, but I will put them to the author to implement them in future updates.


Edit:
In the first question do you refer to the logs?
In the options 4-8-15?
 
Last edited:

lgokul

Well-known member
Babiato Lover
Null Master
Trusted Uploader
Jun 26, 2019
998
1,600
93
32
Planeta Vegeta
hi again :( this character broken ' :( there was no solution given above
Edit the file
fs-poster\App\Providers\Helper.php

Search:
Code:
$postInf['post_title'],
Replace:
Code:
str_replace("'", "'", $postInf['post_title']),
 
  • Love
Reactions: halley

lgokul

Well-known member
Babiato Lover
Null Master
Trusted Uploader
Jun 26, 2019
998
1,600
93
32
Planeta Vegeta
schedule works fine but sleep time does not work.
Screenshot.png
Check it and it works 100% sleep time
Most likely, your sql tables in the plugin are incomplete.

I recommend that you remove the plugin from the wordpress control panel so that table cleaning is executed
Then upload the latest version again and enter the license again "babiato.tech"
 

nullsifu

Active member
Trusted Uploader
Feb 23, 2020
116
95
28
Screenshot.png
Check it and it works 100% sleep time
Most likely, your sql tables in the plugin are incomplete.

I recommend that you remove the plugin from the wordpress control panel so that table cleaning is executed
Then upload the latest version again and enter the license again "babiato.tech"
the plugin is okay. What am trying to say is this, lets say you indicate sleep time is from 6pm to 6am and say the interval is 3hrs. So the plugin is supposed to post only between 6.01am to 5.59pm but in this case it even posts during the sleep time with the same interval. Lets say the last post was at 2020-02-27 17:59 so it should indicate the next post time as 2020-02-28 06:01 but instead it shows(and posts) after the schedule interval and in this case 3hrs which is 2020-02-28 09:01
 

lgokul

Well-known member
Babiato Lover
Null Master
Trusted Uploader
Jun 26, 2019
998
1,600
93
32
Planeta Vegeta
the plugin is okay. What am trying to say is this, lets say you indicate sleep time is from 6pm to 6am and say the interval is 3hrs. So the plugin is supposed to post only between 6.01am to 5.59pm but in this case it even posts during the sleep time with the same interval. Lets say the last post was at 2020-02-27 17:59 so it should indicate the next post time as 2020-02-28 06:01 but instead it shows(and posts) after the schedule interval and in this case 3hrs which is 2020-02-28 09:01
Of course I understand what it says, that's what sleep time is all about

In your post appears a moon as in my example?
I am testing if you respect the sleep time and on my site and respect it as normal.

Could you upload your "wp_fs_schedules" table in .sql format please?
 

nullsifu

Active member
Trusted Uploader
Feb 23, 2020
116
95
28
The moon is visible.
Below is my table structure:

CREATE TABLE `wp_fs_schedules` (
`id` int(11) NOT NULL,
`user_id` int(11) DEFAULT NULL,
`title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`start_date` date DEFAULT NULL,
`end_date` date DEFAULT NULL,
`interval` int(11) DEFAULT NULL,
`status` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`filters` varchar(2000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`accounts` text COLLATE utf8mb4_unicode_ci,
`insert_date` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`share_time` time DEFAULT NULL,
`post_type_filter` varchar(2000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`category_filter` varchar(2000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`post_sort` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`post_date_filter` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`post_ids` varchar(3000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`next_execute_time` varchar(200) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`custom_post_message` varchar(2500) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`share_on_accounts` varchar(300) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`sleep_time_start` time DEFAULT NULL,
`sleep_time_end` time DEFAULT NULL,
`share_on_background` varchar(300) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`save_post_ids` varchar(3000) COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPACT;

Also a heads up, i changed
sleep_time_start and sleep_time_end from varchar(300) to time but it din't make any difference
 

lgokul

Well-known member
Babiato Lover
Null Master
Trusted Uploader
Jun 26, 2019
998
1,600
93
32
Planeta Vegeta
It must work with, don't change it

sleep_time_start varchar(300)
sleep_time_end varchar(300)

But as he says I already proved the insurance error is at work wp cron
 

nullsifu

Active member
Trusted Uploader
Feb 23, 2020
116
95
28
It must work with, don't change it

sleep_time_start varchar(300)
sleep_time_end varchar(300)

But as he says I already proved the insurance error is at work wp cron
Cron works fine.
Anyway thanks alot for your feedback(y). Let me try to find the issue and share back the solution incase anyone else is facing the same
 
  • Like
Reactions: lgokul

halley

Active member
Jan 19, 2020
170
42
28
Edit the file
fs-poster\App\Providers\Helper.php

Search:
Code:
$postInf['post_title'],
Replace:
Code:
str_replace("'", "'", $postInf['post_title']),
hey update and working
Code:
str_replace("‘", "'", $postInf['post_title']),
 
  • Like
Reactions: lgokul

hauntingfox

New member
May 3, 2019
23
5
3
Hello, thank for share this. Can you please check the sync with Medium? when i try to add my account the plugin says "Account added successfully" but doesnt appears,
 

lgokul

Well-known member
Babiato Lover
Null Master
Trusted Uploader
Jun 26, 2019
998
1,600
93
32
Planeta Vegeta
Hello, thank for share this. Can you please check the sync with Medium? when i try to add my account the plugin says "Account added successfully" but doesnt appears,
Hi, I don't have an app in medium, could someone lend me one to try? Send it by private message.
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu