WordPress Automatic Plugin 1904470 By ValvePress

WordPress Automatic Plugin 1904470 By ValvePress v3.110.0

No permission to download

viralgag

New member
Feb 4, 2020
19
20
3
Not working @Tomz Please help for it tomz
as @fairfax explained below

"find file wp-automatic.php and add these two lines on second line

PHP:
update_option( 'wp_automatic_license', 'wp-automatic-license' );
update_option( 'wp_automatic_license_active', 'active' );"

exclude the comments lines. probably you will need to add the above php code on line 14. try it. it works like magic
 
  • Like
Reactions: maungnc and fairfax

patrocle

Well Known Senior Member!
Trusted Uploader
Nov 17, 2018
966
1,571
100
Ca. Usa
babiato.tech
Version 3.59.0 (22 November 2022) - Untouched.
NEW: Option to filter the comments and skip comments containing a specific keyword
NEW: Youtube new tag [vid_duration_in_seconds] for duration filteration
NEW: Make permalink link directly to the source now works for custom post types
Fix: Instagram featured image now works correctly
Fix: Workaround added to sort WordPress adding line breaks inside JavaScript
Fix: Fixing relative paths algorithm improved
Fix: Tiktok can now import from users with dot in username
Fix: CareerJet now reset page index after 1000 results
Fix: Search and replace now aware of encoded chars like & char
Fix: Tags/Categories extraction now removes unnecessary slashes
Fix: Amazon now returns book description
Fix: Amazon now returns correct description/item features
Fix: Envato now reset page after reaching page 60

View hidden content is available for registered users!
 
  • Like
Reactions: amit338

startop

Active member
Feb 18, 2019
865
184
43
Version 3.59.0 (22 November 2022) - Untouched.
NEW: Option to filter the comments and skip comments containing a specific keyword
NEW: Youtube new tag [vid_duration_in_seconds] for duration filteration
NEW: Make permalink link directly to the source now works for custom post types
Fix: Instagram featured image now works correctly
Fix: Workaround added to sort WordPress adding line breaks inside JavaScript
Fix: Fixing relative paths algorithm improved
Fix: Tiktok can now import from users with dot in username
Fix: CareerJet now reset page index after 1000 results
Fix: Search and replace now aware of encoded chars like & char
Fix: Tags/Categories extraction now removes unnecessary slashes
Fix: Amazon now returns book description
Fix: Amazon now returns correct description/item features
Fix: Envato now reset page after reaching page 60

*** Hidden text: cannot be quoted. ***
What is the Password for unzip the file ? to null it
 

kaboosh

Well-known member
May 4, 2022
103
322
53
United States
kaboosh updated WordPress Automatic Plugin By ValvePress 1904470 with a new update entry:

Version 3.59.0 (22 November 2022) - Untouched

NEW: Option to filter the comments and skip comments containing a specific keyword
NEW: Youtube new tag [vid_duration_in_seconds] for duration filteration
NEW: Make permalink link directly to the source now works for custom post types
Fix: Instagram featured image now works correctly
Fix: Workaround added to sort WordPress adding line breaks inside JavaScript
Fix: Fixing relative paths algorithm improved
Fix: Tiktok can now import from users with dot in username
Fix: CareerJet now reset...

Read the rest of this update entry...
 
  • Like
Reactions: amit338

halimklnc35

Active member
Jul 30, 2019
30
121
33
as @fairfax explained below

"find file wp-automatic.php and add these two lines on second line

PHP:
update_option( 'wp_automatic_license', 'wp-automatic-license' );
update_option( 'wp_automatic_license_active', 'active' );"

exclude the comments lines. probably you will need to add the above php code on line 14. try it. it works like magic
I did, not worked.
 

salmanqureshi24

New member
May 15, 2022
8
1
3
Unpacking the package…

Installing the plugin…

The package could not be installed. No valid plugins were found.

Plugin installation failed.
 

jimo

Member
May 4, 2022
53
13
8
Unpacking the package…

Installing the plugin…

The package could not be installed. No valid plugins were found.

Plugin installation failed.
You need to unzip the file and find installation folder. Upload the plugin file from installation.

THank you
 

donaconda

Active member
May 2, 2022
120
171
43
as @fairfax explained below

"find file wp-automatic.php and add these two lines on second line

PHP:
update_option( 'wp_automatic_license', 'wp-automatic-license' );
update_option( 'wp_automatic_license_active', 'active' );"

exclude the comments lines. probably you will need to add the above php code on line 14. try it. it works like magic
This works but it's uses an additional check to see if the activation date is within a certain limit.

I have tested small modification to the existing NULL method above. Try the following:

"find file wp-automatic.php and add these two lines on second line"

PHP:
update_option( 'wp_automatic_license', '7080a27b-94c6-c6f1-46f3-b89b0a04d9ba' );
update_option( 'wp_automatic_license_active', 'active' );
update_option( 'wp_automatic_license_active_date', '2238292195' );

The addition of "wp_automatic_license_active_date" is set to the year 2040. Every time the Setting page of the plugin loads, it checks this date against a given value. If this check fails it will delete wp_automatic_license_active inside database.

To avoid constant database query on every time the settings page loads, you can use this instead:

PHP:
$licExists = get_option('wp_automatic_license','');
if (trim($licExists) == '') {
    update_option( 'wp_automatic_license', '7080a27b-94c6-c6f1-46f3-b89b0a04d999' );
    update_option( 'wp_automatic_license_active', 'active' );
    update_option( 'wp_automatic_license_active_date', '2238292195' );
}

I also attached a repacked ZIP of Untouched version containing the Nulled plugin. It's for those not familiar with editing PHP code.

Feedback appreciated 🙏🏼
 

Attachments

  • codecanyon-1904470-wordpress-automatic-plugin v3.59.0 [Nulled].zip
    980.2 KB · Views: 26
Last edited:
  • Like
Reactions: fairfax

herrada

Active member
Banned User
Sep 17, 2022
342
184
43
USA
This works but it's uses an additional check to see if the activation date is within a certain limit.

I have tested small modification to the existing NULL method above. Try the following:

"find file wp-automatic.php and add these two lines on second line"

PHP:
update_option( 'wp_automatic_license', '7080a27b-94c6-c6f1-46f3-b89b0a04d9ba' );
update_option( 'wp_automatic_license_active', 'active' );
update_option( 'wp_automatic_license_active_date', '2238292195' );

The addition of "wp_automatic_license_active_date" is set to the year 2040. Every time the Setting page of the plugin loads, it checks this date against a given value. If this check fails it will delete wp_automatic_license_active inside database.

To avoid constant database query on every time the settings page loads, you can use this instead:

PHP:
$licExists = get_option('wp_automatic_license_active_date','');
if (trim($licExists) == '') {
    update_option( 'wp_automatic_license', '7080a27b-94c6-c6f1-46f3-b89b0a04d999' );
    update_option( 'wp_automatic_license_active', 'active' );
    update_option( 'wp_automatic_license_active_date', '2238292195' );
}

I also attached a repacked ZIP of Untouched version containing the Nulled plugin. It's for those not familiar with editing PHP code.

Feedback appreciated 🙏🏼
Thank you for the share; I will try to do it if it works I will share it here because I do need it
 

herrada

Active member
Banned User
Sep 17, 2022
342
184
43
USA
This works but it's uses an additional check to see if the activation date is within a certain limit.

I have tested small modification to the existing NULL method above. Try the following:

"find file wp-automatic.php and add these two lines on second line"

PHP:
update_option( 'wp_automatic_license', '7080a27b-94c6-c6f1-46f3-b89b0a04d9ba' );
update_option( 'wp_automatic_license_active', 'active' );
update_option( 'wp_automatic_license_active_date', '2238292195' );

The addition of "wp_automatic_license_active_date" is set to the year 2040. Every time the Setting page of the plugin loads, it checks this date against a given value. If this check fails it will delete wp_automatic_license_active inside database.

To avoid constant database query on every time the settings page loads, you can use this instead:

PHP:
$licExists = get_option('wp_automatic_license_active_date','');
if (trim($licExists) == '') {
    update_option( 'wp_automatic_license', '7080a27b-94c6-c6f1-46f3-b89b0a04d999' );
    update_option( 'wp_automatic_license_active', 'active' );
    update_option( 'wp_automatic_license_active_date', '2238292195' );
}

I also attached a repacked ZIP of Untouched version containing the Nulled plugin. It's for those not familiar with editing PHP code.

Feedback appreciated 🙏🏼
Here I had fixed that problem it is working on the new install and on the upgrade. Hope you will enjoy it was a small glitch to get it working but it did Here is the file and some images of proof


fresh install and active.png fresh install.png proof.png
 

Attachments

  • codecanyon-1904470-wordpress-automatic-plugin [Nulled Fixed].zip
    5.8 MB · Views: 55
  • Like
Reactions: Cuprusreog

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