RISE - Ultimate Project Manager By FairSketch

RISE - Ultimate Project Manager By FairSketch v3.8.2 Untouched

No permission to download

maumaju

Well-known member
Trusted Uploader
Dec 7, 2018
244
301
63
Just Info

RISE - Ultimate Project Manager​

Version 3.3 – 3 September, 2022
[Added] Add new option in project clone.
[Added] Include search by custom fields in server side tables.
[Added] Two new role permission settings for projects.
[Added] Send button for chat mobile view.
[Added] Show task checklist completed count on kanban view.
[Updated] Bootstrap to latest version.
[Updated] Codeigniter to latest version.
[Updated] Move RTL settings in language file.
[Updated] Show only own tasks in timesheet timelog add/edit modal.
[Updated] Stripe API to latest version.

[Fixed] Error on task details modal.
[Fixed] In project, don't show the save and continue button when logged in as client.
[Fixed] Recently move to Done filter in tasks.
[Fixed] Ticket template edit/delete is not working for team members.
[Fixed] Added protection for some XSS issues.
[Fixed] Activity log encoding problem.
[Fixed] Currency conversion is not working in income expenses chart.
[Fixed] Bug in sub task.
[Fixed] Custom fields in invoices list export.
[Fixed] Tickets last activity sort is not working in projects.
 

smartass

Well-known member
Babiato Lover
Trusted Uploader
May 5, 2019
676
1,311
93
smartass updated RISE - Ultimate Project Manager with a new update entry:

RISE - Ultimate Project Manager + Updates 3.3 (NULLED)

Version 3.3 – 3 September, 2022

[Added] Add new option in project clone.
[Added] Include search by custom fields in server side tables.
[Added] Two new role permission settings for projects.
[Added] Send button for chat mobile view.
[Added] Show task checklist completed count on kanban view.
[Updated] Bootstrap to latest version.
[Updated] Codeigniter to latest version.
[Updated] Move RTL settings in language file.
[Updated] Show only own tasks in timesheet timelog add/edit modal...

Read the rest of this update entry...
 

neosavedme

New member
Sep 19, 2019
20
7
3
hello,
i have a problem with the pdf invoice i have this message
Code:
TCPDF ERROR: [Image] Unable to get the size of the image: https://******************/files/system/_file630b9dda97326-invoice-logo.png

whatever i do, i always have this message how can i fix it?
this 3.3 update does not fix it , and no one mentions this problem.
 

SySEnG

Member
Jan 11, 2021
52
49
18
hello,
i have a problem with the pdf invoice i have this message
Code:
TCPDF ERROR: [Image] Unable to get the size of the image: https://******************/files/system/_file630b9dda97326-invoice-logo.png

whatever i do, i always have this message how can i fix it?
this 3.3 update does not fix it , and no one mentions this problem.
Check website error log and paste the error may i can help
 

neosavedme

New member
Sep 19, 2019
20
7
3
Check website error log and paste the error may i can help
thank you


according to these articles the curl maybe the cause
link 1
link 2

I have no error in the logs I checked that everything is ok and I have the curl activated
Capture d’écran 2022-09-06 180351.png
this error I never understood where it comes from
I may have to do a reinstall with the new version.
 

SySEnG

Member
Jan 11, 2021
52
49
18
thank you


according to these articles the curl maybe the cause
link 1
link 2

I have no error in the logs I checked that everything is ok and I have the curl activated
Capture d’écran 2022-09-06 180351.png
this error I never understood where it comes from
I may have to do a reinstall with the new version.
Actually not happened to me
try using ssh with command curl and watch result
and if u have multiple php
check php info for version you use
 

banna12

New member
Sep 13, 2022
1
1
3
Hi bro, I can't install even though I have replaced the code in file do_install . Can u help me?
Code:
<?php

ini_set('max_execution_time', 300); //300 seconds

if (isset($_POST)) {
    $host = $_POST["host"];
    $dbuser = $_POST["dbuser"];
    $dbpassword = $_POST["dbpassword"];
    $dbname = $_POST["dbname"];

    $first_name = $_POST["first_name"];
    $last_name = $_POST["last_name"];
    $email = $_POST["email"];
    $login_password = $_POST["password"] ? $_POST["password"] : "";

    $purchase_code = $_POST["purchase_code"];

    //check required fields
    if (!($host && $dbuser && $dbname && $first_name && $last_name && $email && $login_password)) {
        echo json_encode(array("success" => false, "message" => "Please input all fields."));
        exit();
    }


    //check for valid email
    if (filter_var($email, FILTER_VALIDATE_EMAIL) === false) {
        echo json_encode(array("success" => false, "message" => "Please input a valid email."));
        exit();
    }

    //check for valid database connection
    $mysqli = @new mysqli($host, $dbuser, $dbpassword, $dbname);

    if (mysqli_connect_errno()) {
        echo json_encode(array("success" => false, "message" => $mysqli->connect_error));
        exit();
    }


    //all input seems to be ok. check required fiels
    if (!is_file('database.sql')) {
        echo json_encode(array("success" => false, "message" => "The database.sql file could not found in install folder!"));
        exit();
    }





    /*
     * check the db config file
     * if db already configured, we'll assume that the installation has completed
     */


    $db_file_path = "../application/config/database.php";
    $db_file = file_get_contents($db_file_path);
    $is_installed = strpos($db_file, "enter_hostname");

    if (!$is_installed) {
        echo json_encode(array("success" => false, "message" => "Seems this app is already installed! You can't reinstall it again."));
        exit();
    }
 

Attachments

  • z3736461214736_dc99f9000c65bfc0cb05dfea0dca2cb0.jpg
    z3736461214736_dc99f9000c65bfc0cb05dfea0dca2cb0.jpg
    37.6 KB · Views: 60
  • Like
Reactions: Neon112

Foxxx

New member
Sep 1, 2019
3
0
1
too bad it isn't nulled properly. check app/Rise.php it has the url to check for updates. They send request to their server, they could be logging :)
 

bufor

New member
Sep 26, 2022
2
0
1
Hi all, when the installation is finish im getting 404 :
"The resource requested could not be found on this server!"

any clue what to do ?

thx
 

Neon112

New member
Sep 28, 2022
12
5
3
Hi, I'm quite unable to install it :< It is asking me for the item purchase code.. could someone assist me please?
 

Neon112

New member
Sep 28, 2022
12
5
3
Hi bro, I can't install even though I have replaced the code in file do_install . Can u help me?
Code:
<?php

ini_set('max_execution_time', 300); //300 seconds

if (isset($_POST)) {
    $host = $_POST["host"];
    $dbuser = $_POST["dbuser"];
    $dbpassword = $_POST["dbpassword"];
    $dbname = $_POST["dbname"];

    $first_name = $_POST["first_name"];
    $last_name = $_POST["last_name"];
    $email = $_POST["email"];
    $login_password = $_POST["password"] ? $_POST["password"] : "";

    $purchase_code = $_POST["purchase_code"];

    //check required fields
    if (!($host && $dbuser && $dbname && $first_name && $last_name && $email && $login_password)) {
        echo json_encode(array("success" => false, "message" => "Please input all fields."));
        exit();
    }


    //check for valid email
    if (filter_var($email, FILTER_VALIDATE_EMAIL) === false) {
        echo json_encode(array("success" => false, "message" => "Please input a valid email."));
        exit();
    }

    //check for valid database connection
    $mysqli = @new mysqli($host, $dbuser, $dbpassword, $dbname);

    if (mysqli_connect_errno()) {
        echo json_encode(array("success" => false, "message" => $mysqli->connect_error));
        exit();
    }


    //all input seems to be ok. check required fiels
    if (!is_file('database.sql')) {
        echo json_encode(array("success" => false, "message" => "The database.sql file could not found in install folder!"));
        exit();
    }





    /*
     * check the db config file
     * if db already configured, we'll assume that the installation has completed
     */


    $db_file_path = "../application/config/database.php";
    $db_file = file_get_contents($db_file_path);
    $is_installed = strpos($db_file, "enter_hostname");

    if (!$is_installed) {
        echo json_encode(array("success" => false, "message" => "Seems this app is already installed! You can't reinstall it again."));
        exit();
    }
Having the same issue :<
 

FlyingHigh

Active member
Babiato Lover
GiveAway Master
Trusted Seller
Trusted Uploader
May 20, 2022
315
245
43
I am using IIS web server and during installation i am getting 404 error can anyone help me with the installation.

Thanks!
 

Forum statistics

Threads
69,206
Messages
908,333
Members
236,832
Latest member
PS1CK0

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