osamaaf
New member
- Jun 26, 2020
- 4
- 1
- 3
I could not find the upgrades folder?@OliverQueen Check my previous post
I could not find the upgrades folder?@OliverQueen Check my previous post
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...
TCPDF ERROR: [Image] Unable to get the size of the image: https://******************/files/system/_file630b9dda97326-invoice-logo.png
Check website error log and paste the error may i can helphello,
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.
thank youCheck website error log and paste the error may i can help
Actually not happened to me
<?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 :<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(); }