Vultr VPS For WHMCS

Vultr VPS For WHMCS v1.2.0 Not Nulled

No permission to download
patch was free when you have download it
i update null patch to lastest vesrion 1.0.6 ,please download from here and then replace files.
*** Hidden text: cannot be quoted. ***



method:

remove localkey

with phpmyadmin or other run sql to display localkey information.

SQL:
   SELECT * FROM `tblconfiguration` WHERE `setting` LIKE 'vultr_vps_localkey' ORDER BY `id` DESC

remove record
Can you show update link for me pls.
 
I've made sure the cron job runs normally, and the key is updated every day, but the invalid license error is always there.

When removing the localkey module it runs normally
SELECT * FROM `tblconfiguration` WHERE `setting` LIKE 'vultr_vps_localkey' ORDER BY `id` DESC
While I check the localkey is updated every day. localkey is always updated at 00.00 WIB

Is there an automatic command to delete localkey daily?
or every localkey is created by the system and then we make script an automatic deletion command.
create new file name delwhmcs.php in your cronjob folder and paste this code

PHP:
<?php
// change your directory
include_once('/your/home/directory/to/configuration.php');
$conn = mysqli_connect($db_host, $db_username, $db_password, $db_name);
if(! $conn ) {
               die('Could not connect: ' . mysqli_connect_error());
            }
$sql = "DELETE FROM tblconfiguration WHERE setting='vultr_vps_localkey'";
if(mysqli_query($conn, $sql)){
    echo "Records were deleted successfully.";
} else{
    echo "ERROR: Could not able to execute $sql. " . mysqli_error($conn);
}
 
// Close connection
mysqli_close($conn);
die;

then create cronjob for run every day and use this code
Python:
php -q /your/home/directory/to/your/folder/delwhmcs.php
 
create new file name delwhmcs.php in your cronjob folder and paste this code

PHP:
<?php
// change your directory
include_once('/your/home/directory/to/configuration.php');
$conn = mysqli_connect($db_host, $db_username, $db_password, $db_name);
if(! $conn ) {
               die('Could not connect: ' . mysqli_connect_error());
            }
$sql = "DELETE FROM tblconfiguration WHERE setting='vultr_vps_localkey'";
if(mysqli_query($conn, $sql)){
    echo "Records were deleted successfully.";
} else{
    echo "ERROR: Could not able to execute $sql. " . mysqli_error($conn);
}
 
// Close connection
mysqli_close($conn);
die;

then create cronjob for run every day and use this code
Python:
php -q /your/home/directory/to/your/folder/delwhmcs.php
cron job have risk ,best don't use this to do something ,you can find better in link https://developers.whmcs.com/advanced/db-interaction/ ,or cron job have risk.
I don't know what happened to you, but the patch updates the key automatically
 
thanks to dear member @hargrave updated Vultr VPS For WHMCS with a new update entry:

changelog

NEW FEATURE
  • WHMCS V8.6 support
  • Support for PHP 8.1 version
  • Support for Vultr "Marketplace Apps" for product configuration and configurable options which allows to install the selected application automatically upon instance creation - case #87
  • White-label noVNC console support - Note: Please contact Vultr support first to be able to use this feature
  • Specify a random domain prefix that will be used when the hostname is not provided for created instances -...

Read the rest of this update entry...
 
Back
Top