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

RISE - Ultimate Project Manager By FairSketch

RISE - Ultimate Project Manager By FairSketch v3.6.1 UNTOUCHED INSTALLATION + UPDATES

No permission to download
Unable to send emails, using SMTP. even test email is not being sent. Failed to send the test email. Can someone help?
 
  • Like
Reactions: ausduns
[GUIDE] - Updating Rise CRM Manually

1. Create Backup files and db for your safety
2. Delete all plugins (it will conflict with your future updates i.e. Wooops Snag error....)
3. Set PHP to highest version
4. Disable Recaptcha
5. Upload all updates including the old version in update folder (See attachment) to "updates" folder.
6. Open this file "yourdomain.com/app/Controllers/Updates.php" and comment on the following lines.

!IMPORTANT: Always check "app/Controllers/Updates.php" file always before updating and make sure the following is in comment:

// if ($updates_info->next_installable_version != $version) {
// echo json_encode(array("success" => false, 'message' => "Please install the version - $updates_info->next_installable_version first!"));
// exit();
// }

************ or **************

//check the sequential updates
// $updates_info = $this->_get_updates_info();
// if ($updates_info->next_installable_version != $version) {
// echo json_encode(array("success" => false, 'message' => "Please install the version - $updates_info->next_installable_version first!"));
// exit();
// }


!IMPORTANT: Always check "app/Controllers/Updates.php" file before updating as it may override with your previous update and make sure the above code is in comment.
!Optional: Gradually update your crm. You can start updating your crm from 3.1 version.

7. Paste this to your browser: "yourdomain.com/index.php/updates/do_update/3.1" (NOTE: Replace 3.1 with version)

8. If installation is success, it will display this > {"response_type":"success","message":"Version - 3.1 installed successfully!"}


*****************************************

[GUIDE] - Installing plugin manually

1. Install plugin yourdomain/index.php/Plugins, DO NOT ACTIVATE!!! Just enter any character on the pruchase code and ignore invalid notification.
2. Go to your hosting file manager and locate plugin: "plugins/[****name of your plugin]"
3. Open the index.php file in the root folder of your uploaded plugin
4. Comment the following lines:

//install dependencies
//register_installation_hook("[*****name of your plugin]", function ($item_purchase_code) {
//include PLUGINPATH . "[*****name of your plugin]/install/do_install.php";
//});

5. Install and Activate the plugin
 

Attachments

  • 3.4.2.zip
    6.6 KB · Views: 15
  • 3.5.1.zip
    1 MB · Views: 17
  • 3.5.2.zip
    109.6 KB · Views: 13
  • 3.5.3.zip
    83.6 KB · Views: 34
  • 3.5.zip
    4 MB · Views: 19
  • Like
Reactions: pedroa.
how to work or fixed install
"Please enter a valid purchase code."

here you go:

How To Null This Script​


Just open the file do_install.php, located in​

Code:
\install\

Locate the line #142,​

Code:
function verify_rise_purchase_code($code) {

Then put this code below:​

Code:
return 'verified';

And Voilá, This code is nulled...​


Or, put this file instead the original do_install.php and try again (clear cache)​

Password to open:​

*** Hidden text: cannot be quoted. ***
 
function verify_rise_purchase_code($code) {
$code = urlencode($code);
$url = "https://releases.fairsketch.com/rise/?type=install&code=" . $code . "&domain=" . $_SERVER['HTTP_HOST'];
$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HTTPGET, TRUE);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)");
curl_setopt($ch, CURLOPT_HTTPHEADER, Array('Content-type: text/plain'));
/$daa = curl_exec($ch);
curl_close($ch);
if (!$data) {
$data = file_get_contents($url);
//return $data;
return 'verified';
}
return $data;
}




What's wrong with my nulling?
 
What's wrong with my nulling?
make it this below

function verify_rise_purchase_code($code) {
return 'verified';
$code = urlencode($code);
$url = "https://releases.fairsketch.com/rise/?type=install&code=" . $code . "&domain=" . $_SERVER['HTTP_HOST'];

$ch = curl_init();

curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HTTPGET, TRUE);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)");
curl_setopt($ch, CURLOPT_HTTPHEADER, Array('Content-type: text/plain'));

$data = curl_exec($ch);
curl_close($ch);

if (!$data) {
$data = file_get_contents($url);
}

return $data;
}
 
Hello! Can any one explain, how to assign a task to another user? All I can see is just my self
 
EDIT: Forgot to give the SQL user permissions, got it fixed

Hey guys,

I have nulled the code as bellow in the do_install.php file

PHP:
function verify_rise_purchase_code($code) {
return 'verified';
$code = urlencode($code);
$url = "https://releases.fairsketch.com/rise/?type=install&code=" . $code . "&domain=" . $_SERVER['HTTP_HOST'];

$ch = curl_init();

curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HTTPGET, TRUE);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)");
curl_setopt($ch, CURLOPT_HTTPHEADER, Array('Content-type: text/plain'));

$data = curl_exec($ch);
curl_close($ch);

if (!$data) {
$data = file_get_contents($url);
}

return $data;
}

However, I'm still getting a "Something went wrong. Please check the error log for more details."

Any help would be awesome.
 
Last edited:
[GUIDE] - Updating Rise CRM Manually

1. Create Backup files and db for your safety
2. Delete all plugins (it will conflict with your future updates i.e. Wooops Snag error....)
3. Set PHP to highest version
4. Disable Recaptcha
5. Upload all updates including the old version in update folder (See attachment) to "updates" folder.
6. Open this file "yourdomain.com/app/Controllers/Updates.php" and comment on the following lines.

!IMPORTANT: Always check "app/Controllers/Updates.php" file always before updating and make sure the following is in comment:

// if ($updates_info->next_installable_version != $version) {
// echo json_encode(array("success" => false, 'message' => "Please install the version - $updates_info->next_installable_version first!"));
// exit();
// }

************ or **************

//check the sequential updates
// $updates_info = $this->_get_updates_info();
// if ($updates_info->next_installable_version != $version) {
// echo json_encode(array("success" => false, 'message' => "Please install the version - $updates_info->next_installable_version first!"));
// exit();
// }


!IMPORTANT: Always check "app/Controllers/Updates.php" file before updating as it may override with your previous update and make sure the above code is in comment.
!Optional: Gradually update your crm. You can start updating your crm from 3.1 version.

7. Paste this to your browser: "yourdomain.com/index.php/updates/do_update/3.1" (NOTE: Replace 3.1 with version)

8. If installation is success, it will display this > {"response_type":"success","message":"Version - 3.1 installed successfully!"}


*****************************************

[GUIDE] - Installing plugin manually

1. Install plugin yourdomain/index.php/Plugins, DO NOT ACTIVATE!!! Just enter any character on the pruchase code and ignore invalid notification.
2. Go to your hosting file manager and locate plugin: "plugins/[****name of your plugin]"
3. Open the index.php file in the root folder of your uploaded plugin
4. Comment the following lines:

//install dependencies
//register_installation_hook("[*****name of your plugin]", function ($item_purchase_code) {
//include PLUGINPATH . "[*****name of your plugin]/install/do_install.php";
//});

5. Install and Activate the plugin

Thanks for proficientech1
 

Attachments

  • 2.7.1.zip
    726 KB · Views: 6
  • 2.8.zip
    2 MB · Views: 4
  • 2.9.1.zip
    63.8 KB · Views: 5
  • 2.9.2.zip
    932.1 KB · Views: 4
  • 2.9.zip
    2.2 MB · Views: 5
  • 3.0.1.zip
    25.8 KB · Views: 6
  • 3.0.zip
    1.2 MB · Views: 5
  • 3.1.zip
    2.5 MB · Views: 6
  • 3.2.1.zip
    15.5 KB · Views: 6
  • 3.2.2.zip
    40 KB · Views: 5
  • 3.2.zip
    4.2 MB · Views: 5
  • 3.3.zip
    2.8 MB · Views: 8
Part 2 - Rise CRM Manually
 

Attachments

  • 3.5.2.zip
    109.6 KB · Views: 18
  • 3.5.1.zip
    1 MB · Views: 9
  • 3.4.zip
    3.1 MB · Views: 6
  • 3.4.2.zip
    6.6 KB · Views: 11
  • 3.4.1.zip
    153.2 KB · Views: 9
  • 3.5.3.zip
    83.6 KB · Views: 26
  • 3.5.zip
    4 MB · Views: 24
To make the script accept any purchase code and proceed with the installation, you'll need to bypass the purchase code verification step. Here's how you can do it:

1. Locate the function `verify_rise_purchase_code($code)` inside "/install/do_install.php" file.
2. Modify the function to always return "verified" regardless of the input.

Here's the modified function:​



PHP:
function verify_rise_purchase_code($code) {
    return "verified";
}


By making this change, the script will always consider any purchase code as valid and proceed with the installation.
 
Last edited:
I'm facing an issue during the installation of this script. When I click on "Install," it only displays a "Please wait" message without any further action
 

Attachments

  • 1697284614596.png
    1697284614596.png
    24.5 KB · Views: 69
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