$expenseCategoriesAndHeads
HTML;
// Include the main layout
include 'main_layout.php';
?>
-------------------- END OF FILE --------------------
FILE: create_user.php
TYPE: PHP
SIZE: 1.29 KB
------------------------------------------------------------
prepare($query);
$stmt->bind_param("ss", $username, $hashed_password);
if ($stmt->execute()) {
echo "User created successfully";
} else {
echo "Error creating user: " . $conn->error;
}
}
?>
Create User
Create User
-------------------- END OF FILE --------------------
FILE: dashboard.php
TYPE: PHP
SIZE: 10.3 KB
------------------------------------------------------------
query($query);
if ($result === false) {
throw new Exception("Query failed: " . $conn->error);
}
return $result;
}
try {
// Get total sales value
$result = executeQuery($conn, "SELECT SUM(final_amount) as total FROM sales");
$totalSales = $result->fetch_assoc()['total'] ?? 0;
// Get total expense value
$result = executeQuery($conn, "SELECT SUM(amount) as total FROM expenses");
$totalExpenses = $result->fetch_assoc()['total'] ?? 0;
// Get total payments value
$result = executeQuery($conn, "SELECT SUM(amount_paid) as total FROM payments");
$totalPayments = $result->fetch_assoc()['total'] ?? 0;
// Get total weight harvested
$result = executeQuery($conn, "SELECT SUM(weight_tilapia + weight_small_fish + weight_big_fish) as total FROM sales");
$totalWeightHarvested = $result->fetch_assoc()['total'] ?? 0;
// Get average rate per kg
$result = executeQuery($conn, "SELECT SUM(final_amount) / SUM(weight_tilapia + weight_small_fish + weight_big_fish) as avg_rate FROM sales");
$averageRatePerKg = $result->fetch_assoc()['avg_rate'] ?? 0;
// Get initial values
$result = executeQuery($conn, "SELECT * FROM initial_values LIMIT 1");
$initialValues = $result->fetch_assoc();
// Calculate cash in hand
$cashInHand = ($initialValues['cash_in_hand'] ?? 0) + $totalPayments - $totalExpenses;
// Start outputting content
ob_start();
?>
" . number_format($row['harvested_weight'], 2) . " kg
" . formatCurrency($row['rate_per_kg']) . "
";
}
?>
An error occurred: " . htmlspecialchars($e->getMessage()) . "";
}
include 'main_layout.php';
?>
-------------------- END OF FILE --------------------
FILE: db_connection.php
TYPE: PHP
SIZE: 384 B
------------------------------------------------------------
connect_error) {
die("Connection failed: " . $conn->connect_error);
}
// Set charset to utf8mb4
$conn->set_charset("utf8mb4");
-------------------- END OF FILE --------------------
FILE: debug.log
TYPE: LOG
SIZE: 518 B
------------------------------------------------------------
[2024-09-27 16:49:09] Error in get_expense_heads.php: Invalid category ID
[2024-09-27 16:49:12] Error in get_expense_heads.php: Invalid category ID
[2024-09-27 16:49:51] Error in get_expense_heads.php: Invalid category ID
[2024-09-27 16:59:46] Error in get_expense_heads.php: Invalid category ID
[2024-09-27 16:59:58] Error in get_expense_heads.php: Invalid category ID
[2024-09-27 17:00:11] Error in get_expense_heads.php: Invalid category ID
[2024-09-27 17:00:58] Error in get_expense_heads.php: Invalid category ID
-------------------- END OF FILE --------------------
FILE: default.php
TYPE: PHP
SIZE: 15.99 KB
------------------------------------------------------------
Default page
You Are All Set to Go!
All you have to do now is upload your website files and start your journey. Check out how to do that below:
HTML;
// Include the main layout
include 'main_layout.php';
?>
-------------------- END OF FILE --------------------
FILE: edit_sale.php
TYPE: PHP
SIZE: 7.18 KB
------------------------------------------------------------
real_escape_string($_GET['id']);
// Fetch sale data
$query = "SELECT s.*, b.name as buyer_name
FROM sales s
JOIN buyers b ON s.buyer_id = b.id
WHERE s.id = $sale_id";
$result = $conn->query($query);
$sale = $result->fetch_assoc();
if (!$sale) {
header("Location: sales.php");
exit();
}
// Fetch buyers for dropdown
$query = "SELECT id, name FROM buyers ORDER BY name";
$result = $conn->query($query);
$buyers = $result->fetch_all(MYSQLI_ASSOC);
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$date = $conn->real_escape_string($_POST['date']);
$buyer_id = $conn->real_escape_string($_POST['buyer_id']);
$weight_tilapia = $conn->real_escape_string($_POST['weight_tilapia']);
$weight_small_fish = $conn->real_escape_string($_POST['weight_small_fish']);
$weight_big_fish = $conn->real_escape_string($_POST['weight_big_fish']);
$include_delivery = isset($_POST['include_delivery']) ? 1 : 0;
$final_amount = $conn->real_escape_string($_POST['final_amount']);
$harvesting_charges = $conn->real_escape_string($_POST['harvesting_charges']);
$query = "UPDATE sales SET
date = '$date',
buyer_id = $buyer_id,
weight_tilapia = $weight_tilapia,
weight_small_fish = $weight_small_fish,
weight_big_fish = $weight_big_fish,
include_delivery = $include_delivery,
final_amount = $final_amount,
harvesting_charges = $harvesting_charges
WHERE id = $sale_id";
if ($conn->query($query) === TRUE) {
$_SESSION['success'] = "Sale updated successfully.";
header("Location: sales.php");
exit();
} else {
$error = "Error updating sale: " . $conn->error;
}
}
// Generate buyer options
$buyerOptions = '';
foreach ($buyers as $buyer) {
$selected = ($buyer['id'] == $sale['buyer_id']) ? 'selected' : '';
$buyerOptions .= "";
}
$includeDeliveryChecked = $sale['include_delivery'] ? 'checked' : '';
$content = <<Edit Sale
HTML;
include 'main_layout.php';
?>
-------------------- END OF FILE --------------------
FILE: error_log
TYPE:
SIZE: 84.87 KB
------------------------------------------------------------
[27-Sep-2024 10:37:54 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/dashboard.php:100
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/dashboard.php on line 100
[27-Sep-2024 10:38:50 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/dashboard.php:100
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/dashboard.php on line 100
[27-Sep-2024 10:39:51 UTC] PHP Warning: Undefined variable $generateTableRows in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/dashboard.php on line 121
[27-Sep-2024 10:39:51 UTC] PHP Fatal error: Uncaught Error: Value of type null is not callable in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/dashboard.php:121
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/dashboard.php on line 121
[27-Sep-2024 10:40:33 UTC] PHP Warning: Array to string conversion in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/dashboard.php on line 121
[27-Sep-2024 10:40:33 UTC] PHP Warning: Array to string conversion in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/dashboard.php on line 135
[27-Sep-2024 10:40:33 UTC] PHP Warning: Array to string conversion in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/dashboard.php on line 149
[27-Sep-2024 10:40:33 UTC] PHP Notice: session_start(): Ignoring session_start() because a session is already active in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/main_layout.php on line 2
[27-Sep-2024 10:41:05 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/base.php:124
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/base.php on line 124
[27-Sep-2024 10:41:07 UTC] PHP Warning: Array to string conversion in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/dashboard.php on line 121
[27-Sep-2024 10:41:07 UTC] PHP Warning: Array to string conversion in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/dashboard.php on line 135
[27-Sep-2024 10:41:07 UTC] PHP Warning: Array to string conversion in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/dashboard.php on line 149
[27-Sep-2024 10:41:07 UTC] PHP Notice: session_start(): Ignoring session_start() because a session is already active in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/main_layout.php on line 2
[27-Sep-2024 10:44:01 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/base.php:124
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/base.php on line 124
[27-Sep-2024 10:44:22 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/base.php:124
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/base.php on line 124
[27-Sep-2024 10:46:06 UTC] PHP Warning: Array to string conversion in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/base.php on line 200
[27-Sep-2024 10:46:06 UTC] PHP Fatal error: Uncaught Error: Object of class mysqli could not be converted to string in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/base.php:213
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/base.php on line 213
[27-Sep-2024 10:47:56 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php:94
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 94
[27-Sep-2024 10:48:20 UTC] PHP Parse error: Unmatched '}' in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 184
[27-Sep-2024 10:48:23 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:75
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 75
[27-Sep-2024 10:52:33 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:75
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 75
[27-Sep-2024 11:03:18 UTC] PHP Parse error: syntax error, unexpected token "?", expecting "->" or "?->" or "{" or "[" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_sale.php on line 67
[27-Sep-2024 11:09:14 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:75
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 75
[27-Sep-2024 16:15:57 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 133
[27-Sep-2024 16:16:26 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 133
[27-Sep-2024 16:28:05 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 133
[27-Sep-2024 16:36:44 UTC] PHP Parse error: syntax error, unexpected token "?", expecting "->" or "?->" or "{" or "[" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_sale.php on line 67
[27-Sep-2024 16:37:46 UTC] PHP Parse error: syntax error, unexpected token "<", expecting end of file in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 81
[27-Sep-2024 16:37:50 UTC] PHP Parse error: syntax error, unexpected token "<", expecting end of file in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 81
[27-Sep-2024 16:38:12 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_payment.php:59
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_payment.php on line 59
[27-Sep-2024 16:44:23 UTC] PHP Parse error: syntax error, unexpected token "?", expecting "->" or "?->" or "{" or "[" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_sale.php on line 67
[27-Sep-2024 16:44:31 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_payment.php:59
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_payment.php on line 59
[27-Sep-2024 16:45:02 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 124
[27-Sep-2024 16:48:09 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 124
[27-Sep-2024 16:48:09 UTC] PHP Warning: Undefined variable $expenseId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 146
[27-Sep-2024 16:48:10 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 124
[27-Sep-2024 16:48:10 UTC] PHP Warning: Undefined variable $expenseId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 146
[27-Sep-2024 16:49:07 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 124
[27-Sep-2024 16:49:07 UTC] PHP Warning: Undefined variable $expenseId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 146
[27-Sep-2024 16:49:49 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 124
[27-Sep-2024 16:49:49 UTC] PHP Warning: Undefined variable $expenseId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 151
[27-Sep-2024 16:51:07 UTC] PHP Warning: Undefined variable $categoryOptions in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 27
[27-Sep-2024 16:51:07 UTC] PHP Warning: Undefined variable $expenseRows in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 53
[27-Sep-2024 16:51:07 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 66
[27-Sep-2024 16:51:07 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:92
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 92
[27-Sep-2024 16:51:08 UTC] PHP Warning: Undefined variable $categoryOptions in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 27
[27-Sep-2024 16:51:08 UTC] PHP Warning: Undefined variable $expenseRows in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 53
[27-Sep-2024 16:51:08 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 66
[27-Sep-2024 16:51:08 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:92
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 92
[27-Sep-2024 16:52:24 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 131
[27-Sep-2024 16:52:24 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:157
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 157
[27-Sep-2024 16:52:26 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 131
[27-Sep-2024 16:52:26 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:157
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 157
[27-Sep-2024 16:52:27 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 131
[27-Sep-2024 16:52:27 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:157
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 157
[27-Sep-2024 16:52:45 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 131
[27-Sep-2024 16:52:45 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:157
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 157
[27-Sep-2024 16:53:55 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 153
[27-Sep-2024 16:53:55 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:177
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 177
[27-Sep-2024 16:55:17 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 153
[27-Sep-2024 16:55:17 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:177
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 177
[27-Sep-2024 16:55:25 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 153
[27-Sep-2024 16:55:25 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:177
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 177
[27-Sep-2024 16:56:32 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 153
[27-Sep-2024 16:56:32 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:177
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 177
[27-Sep-2024 16:56:34 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 153
[27-Sep-2024 16:56:34 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:177
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 177
[27-Sep-2024 16:56:35 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 153
[27-Sep-2024 16:56:35 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:177
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 177
[27-Sep-2024 16:59:06 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 132
[27-Sep-2024 16:59:06 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:156
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 156
[27-Sep-2024 16:59:09 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 132
[27-Sep-2024 16:59:09 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:156
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 156
[27-Sep-2024 16:59:10 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 132
[27-Sep-2024 16:59:10 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:156
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 156
[27-Sep-2024 16:59:11 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 132
[27-Sep-2024 16:59:11 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:156
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 156
[27-Sep-2024 16:59:23 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 153
[27-Sep-2024 16:59:23 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:177
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 177
[27-Sep-2024 16:59:31 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 131
[27-Sep-2024 16:59:31 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:157
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 157
[27-Sep-2024 16:59:38 UTC] PHP Warning: Undefined variable $categoryOptions in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 27
[27-Sep-2024 16:59:38 UTC] PHP Warning: Undefined variable $expenseRows in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 53
[27-Sep-2024 16:59:38 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 66
[27-Sep-2024 16:59:38 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:92
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 92
[27-Sep-2024 16:59:43 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 124
[27-Sep-2024 16:59:43 UTC] PHP Warning: Undefined variable $expenseId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 151
[27-Sep-2024 16:59:56 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 124
[27-Sep-2024 16:59:56 UTC] PHP Warning: Undefined variable $expenseId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 146
[27-Sep-2024 17:00:08 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 124
[27-Sep-2024 17:00:08 UTC] PHP Warning: Undefined variable $expenseId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 146
[27-Sep-2024 17:00:55 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 124
[27-Sep-2024 17:00:55 UTC] PHP Warning: Undefined variable $expenseId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 146
[27-Sep-2024 17:02:18 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 124
[27-Sep-2024 17:02:18 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:149
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 149
[27-Sep-2024 17:02:19 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 124
[27-Sep-2024 17:02:19 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:149
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 149
[27-Sep-2024 17:02:29 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 124
[27-Sep-2024 17:02:29 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:149
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 149
[27-Sep-2024 17:04:34 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 144
[27-Sep-2024 17:04:34 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:169
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 169
[27-Sep-2024 17:04:35 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 144
[27-Sep-2024 17:04:35 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:169
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 169
[27-Sep-2024 17:05:40 UTC] PHP Parse error: Unclosed '{' on line 60 in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 195
[27-Sep-2024 17:05:41 UTC] PHP Parse error: Unclosed '{' on line 60 in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 195
[27-Sep-2024 17:06:02 UTC] PHP Parse error: Unclosed '{' on line 60 in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 195
[27-Sep-2024 17:06:38 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 164
[27-Sep-2024 17:06:38 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:189
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 189
[27-Sep-2024 17:07:33 UTC] PHP Warning: Undefined variable $categoryId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 148
[27-Sep-2024 17:07:33 UTC] PHP Fatal error: Uncaught Error: Undefined constant "error" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php:173
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 173
[27-Sep-2024 17:36:48 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php:60
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php on line 60
[27-Sep-2024 17:36:56 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php:60
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php on line 60
[27-Sep-2024 17:36:59 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[27-Sep-2024 17:37:02 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[27-Sep-2024 17:37:04 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[27-Sep-2024 17:37:07 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[27-Sep-2024 17:37:10 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 133
[27-Sep-2024 17:37:13 UTC] PHP Parse error: syntax error, unexpected token "?", expecting "->" or "?->" or "{" or "[" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_sale.php on line 67
[27-Sep-2024 17:37:15 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 133
[27-Sep-2024 17:37:21 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[27-Sep-2024 17:37:38 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 133
[27-Sep-2024 17:38:00 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 133
[27-Sep-2024 17:38:15 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 133
[27-Sep-2024 17:38:44 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 133
[27-Sep-2024 17:39:09 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 133
[27-Sep-2024 17:39:31 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 133
[27-Sep-2024 17:39:40 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 133
[27-Sep-2024 17:39:43 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[27-Sep-2024 17:39:52 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[28-Sep-2024 01:16:22 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[28-Sep-2024 01:16:48 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 133
[28-Sep-2024 15:54:20 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 133
[28-Sep-2024 15:54:46 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 133
[28-Sep-2024 15:54:56 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 133
[28-Sep-2024 15:55:38 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[28-Sep-2024 15:55:38 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[29-Sep-2024 15:30:21 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 133
[29-Sep-2024 15:36:22 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 195
[29-Sep-2024 15:36:22 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 202
[29-Sep-2024 15:37:22 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 195
[29-Sep-2024 15:37:22 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 202
[29-Sep-2024 15:37:33 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 195
[29-Sep-2024 15:37:33 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 202
[29-Sep-2024 15:37:40 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 195
[29-Sep-2024 15:37:40 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 202
[29-Sep-2024 15:42:16 UTC] PHP Parse error: syntax error, unexpected token "?", expecting "->" or "?->" or "{" or "[" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_sale.php on line 67
[29-Sep-2024 15:42:21 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 195
[29-Sep-2024 15:42:21 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 202
[29-Sep-2024 15:42:23 UTC] PHP Parse error: syntax error, unexpected token "?", expecting "->" or "?->" or "{" or "[" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_sale.php on line 67
[29-Sep-2024 15:42:23 UTC] PHP Parse error: syntax error, unexpected token "?", expecting "->" or "?->" or "{" or "[" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_sale.php on line 67
[29-Sep-2024 15:42:24 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 195
[29-Sep-2024 15:42:24 UTC] PHP Warning: Undefined variable $saleId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 202
[29-Sep-2024 15:46:02 UTC] PHP Parse error: syntax error, unexpected token "?", expecting "->" or "?->" or "{" or "[" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_sale.php on line 67
[29-Sep-2024 15:52:52 UTC] PHP Parse error: syntax error, unexpected token "?", expecting "->" or "?->" or "{" or "[" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_sale.php on line 67
[29-Sep-2024 15:55:13 UTC] PHP Parse error: syntax error, unexpected token "?", expecting "->" or "?->" or "{" or "[" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_sale.php on line 67
[29-Sep-2024 15:55:15 UTC] PHP Parse error: syntax error, unexpected token "?", expecting "->" or "?->" or "{" or "[" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_sale.php on line 67
[29-Sep-2024 15:59:44 UTC] PHP Parse error: syntax error, unexpected token "?", expecting "->" or "?->" or "{" or "[" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_sale.php on line 67
[29-Sep-2024 15:59:48 UTC] PHP Parse error: syntax error, unexpected token "?", expecting "->" or "?->" or "{" or "[" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_sale.php on line 67
[29-Sep-2024 15:59:51 UTC] PHP Parse error: syntax error, unexpected token "?", expecting "->" or "?->" or "{" or "[" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_sale.php on line 67
[29-Sep-2024 15:59:51 UTC] PHP Parse error: syntax error, unexpected token "?", expecting "->" or "?->" or "{" or "[" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_sale.php on line 67
[29-Sep-2024 16:05:53 UTC] PHP Warning: Undefined variable $buyerOptions in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_sale.php on line 81
[29-Sep-2024 16:05:53 UTC] PHP Warning: Undefined variable $includeDeliveryChecked in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_sale.php on line 104
[29-Sep-2024 16:42:54 UTC] PHP Warning: Undefined array key "final_amount" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 43
[29-Sep-2024 16:43:21 UTC] PHP Warning: Undefined array key "final_amount" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 43
[29-Sep-2024 16:48:11 UTC] PHP Warning: Undefined array key "final_amount" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 43
[29-Sep-2024 16:54:40 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[29-Sep-2024 16:54:44 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[29-Sep-2024 16:54:53 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[29-Sep-2024 16:54:57 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[29-Sep-2024 16:55:20 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[29-Sep-2024 16:55:23 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[29-Sep-2024 16:55:33 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[29-Sep-2024 16:55:46 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[29-Sep-2024 16:56:14 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[29-Sep-2024 16:56:25 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[29-Sep-2024 16:56:54 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[29-Sep-2024 16:57:04 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[29-Sep-2024 16:58:44 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[29-Sep-2024 17:01:32 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[30-Sep-2024 02:16:46 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[30-Sep-2024 02:16:55 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[30-Sep-2024 02:16:57 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[30-Sep-2024 02:17:05 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php:60
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php on line 60
[30-Sep-2024 02:17:29 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[30-Sep-2024 02:25:30 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[30-Sep-2024 02:26:03 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[30-Sep-2024 02:28:21 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[30-Sep-2024 02:28:24 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[30-Sep-2024 02:28:50 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[30-Sep-2024 02:28:51 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[30-Sep-2024 03:05:07 UTC] PHP Parse error: syntax error, unexpected token "?", expecting "->" or "?->" or "{" or "[" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 129
[30-Sep-2024 03:05:08 UTC] PHP Parse error: syntax error, unexpected token "?", expecting "->" or "?->" or "{" or "[" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 129
[30-Sep-2024 03:05:14 UTC] PHP Parse error: syntax error, unexpected token "?", expecting "->" or "?->" or "{" or "[" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/expenses.php on line 124
[30-Sep-2024 03:06:54 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php:60
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php on line 60
[30-Sep-2024 03:06:56 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php:60
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php on line 60
[30-Sep-2024 03:07:24 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[30-Sep-2024 03:08:18 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[30-Sep-2024 17:11:33 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[30-Sep-2024 17:11:39 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[30-Sep-2024 17:11:42 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[30-Sep-2024 17:11:46 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[30-Sep-2024 17:11:49 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[30-Sep-2024 17:11:53 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[01-Oct-2024 02:28:58 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[01-Oct-2024 02:29:47 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[01-Oct-2024 02:29:58 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[01-Oct-2024 02:46:28 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[01-Oct-2024 02:46:53 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[01-Oct-2024 02:46:58 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[01-Oct-2024 02:46:59 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[01-Oct-2024 02:47:09 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[01-Oct-2024 04:32:11 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[01-Oct-2024 04:32:42 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[01-Oct-2024 04:32:55 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[01-Oct-2024 04:35:39 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[01-Oct-2024 04:36:15 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[01-Oct-2024 04:36:51 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[01-Oct-2024 04:36:58 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[01-Oct-2024 04:37:01 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[02-Oct-2024 02:15:30 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[02-Oct-2024 03:23:26 UTC] PHP Fatal error: Uncaught Error: Call to a member function fetch_assoc() on bool in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/base.php:94
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/base.php on line 94
[02-Oct-2024 03:23:27 UTC] PHP Fatal error: Uncaught Error: Call to a member function fetch_assoc() on bool in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/base.php:94
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/base.php on line 94
[02-Oct-2024 03:25:35 UTC] PHP Warning: Undefined array key "total_tilapia" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/dashboard.php on line 198
[02-Oct-2024 03:25:41 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/base.php on line 161
[02-Oct-2024 03:25:41 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/base.php on line 164
[02-Oct-2024 03:25:41 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/base.php on line 167
[02-Oct-2024 03:25:41 UTC] PHP Warning: Trying to access array offset on value of type null in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/base.php on line 170
[02-Oct-2024 03:27:35 UTC] PHP Warning: Undefined array key "total_tilapia" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/dashboard.php on line 198
[02-Oct-2024 03:30:31 UTC] PHP Warning: Undefined array key "total_tilapia" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/dashboard.php on line 198
[02-Oct-2024 03:31:24 UTC] PHP Warning: Undefined array key "total_tilapia" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/dashboard.php on line 198
[02-Oct-2024 03:35:50 UTC] PHP Parse error: syntax error, unexpected token "??", expecting "->" or "?->" or "{" or "[" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/dashboard.php on line 207
[02-Oct-2024 03:35:52 UTC] PHP Parse error: syntax error, unexpected token "??", expecting "->" or "?->" or "{" or "[" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/dashboard.php on line 207
[02-Oct-2024 03:35:53 UTC] PHP Parse error: syntax error, unexpected token "??", expecting "->" or "?->" or "{" or "[" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/dashboard.php on line 207
[02-Oct-2024 04:44:01 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[03-Oct-2024 02:47:50 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[03-Oct-2024 02:47:51 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[03-Oct-2024 02:48:03 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[04-Oct-2024 02:42:26 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[04-Oct-2024 02:42:44 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[04-Oct-2024 03:54:51 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[04-Oct-2024 03:54:59 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[06-Oct-2024 06:05:46 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[06-Oct-2024 06:05:54 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[06-Oct-2024 14:12:33 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[06-Oct-2024 14:13:00 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[06-Oct-2024 14:13:15 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[06-Oct-2024 14:19:10 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[06-Oct-2024 14:19:19 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[06-Oct-2024 14:19:26 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[06-Oct-2024 14:19:42 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[06-Oct-2024 14:20:02 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[07-Oct-2024 04:05:51 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[07-Oct-2024 04:09:29 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[07-Oct-2024 04:09:38 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[07-Oct-2024 06:22:07 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[09-Oct-2024 02:16:22 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[09-Oct-2024 02:16:47 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[10-Oct-2024 02:50:04 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[10-Oct-2024 02:50:38 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[11-Oct-2024 05:26:21 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[11-Oct-2024 05:26:33 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[11-Oct-2024 05:26:53 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[13-Oct-2024 07:53:16 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[13-Oct-2024 07:53:26 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[13-Oct-2024 07:55:54 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[13-Oct-2024 07:56:23 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[14-Oct-2024 02:17:08 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[14-Oct-2024 02:17:28 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[16-Oct-2024 02:52:59 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[16-Oct-2024 02:53:15 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[16-Oct-2024 02:54:11 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[16-Oct-2024 02:55:05 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[17-Oct-2024 02:25:59 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[17-Oct-2024 02:26:51 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[17-Oct-2024 02:27:07 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[18-Oct-2024 09:17:33 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[18-Oct-2024 09:17:42 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[18-Oct-2024 09:18:02 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[18-Oct-2024 09:20:08 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[18-Oct-2024 09:20:17 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[20-Oct-2024 08:38:59 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[20-Oct-2024 08:39:07 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[20-Oct-2024 12:50:08 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[20-Oct-2024 12:50:20 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[21-Oct-2024 03:03:45 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[21-Oct-2024 03:03:57 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[23-Oct-2024 03:30:22 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[23-Oct-2024 03:30:56 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[23-Oct-2024 15:25:05 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[23-Oct-2024 15:25:13 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[24-Oct-2024 02:51:22 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[24-Oct-2024 02:51:29 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[25-Oct-2024 02:27:59 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[25-Oct-2024 02:28:50 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[25-Oct-2024 11:16:53 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[27-Oct-2024 09:01:03 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[27-Oct-2024 09:01:12 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[28-Oct-2024 03:08:51 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[28-Oct-2024 03:09:02 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[28-Oct-2024 07:54:22 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[28-Oct-2024 07:54:28 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[29-Oct-2024 03:34:16 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[29-Oct-2024 03:34:26 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[01-Nov-2024 06:20:34 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[01-Nov-2024 06:21:00 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[02-Nov-2024 14:13:04 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[02-Nov-2024 14:13:19 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[03-Nov-2024 11:01:03 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[03-Nov-2024 11:01:11 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[04-Nov-2024 03:37:10 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[04-Nov-2024 03:37:23 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[04-Nov-2024 03:39:06 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[06-Nov-2024 02:22:36 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[06-Nov-2024 02:22:47 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[06-Nov-2024 05:18:59 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[06-Nov-2024 05:19:08 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[06-Nov-2024 05:20:14 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[06-Nov-2024 05:20:27 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[06-Nov-2024 05:20:35 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[06-Nov-2024 05:20:37 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[06-Nov-2024 05:21:02 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[06-Nov-2024 05:21:12 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[07-Nov-2024 02:44:37 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[07-Nov-2024 02:44:51 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[07-Nov-2024 02:44:52 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[07-Nov-2024 03:05:02 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[07-Nov-2024 03:05:10 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[07-Nov-2024 05:57:20 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php:60
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php on line 60
[07-Nov-2024 05:57:33 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php:60
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php on line 60
[07-Nov-2024 05:57:54 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php:60
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php on line 60
[07-Nov-2024 05:57:57 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php:60
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php on line 60
[07-Nov-2024 05:58:05 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php:60
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php on line 60
[07-Nov-2024 05:58:07 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php:60
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php on line 60
[07-Nov-2024 05:58:14 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php:60
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php on line 60
[07-Nov-2024 05:58:27 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php:60
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php on line 60
[07-Nov-2024 05:58:41 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php:60
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php on line 60
[07-Nov-2024 05:58:55 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php:60
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php on line 60
[07-Nov-2024 05:59:16 UTC] PHP Fatal error: Uncaught Error: Using $this when not in object context in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php:60
Stack trace:
#0 {main}
thrown in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/edit_expense.php on line 60
[08-Nov-2024 03:02:43 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[08-Nov-2024 03:02:59 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[10-Nov-2024 05:06:45 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[10-Nov-2024 05:06:54 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[10-Nov-2024 13:28:06 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[10-Nov-2024 13:28:21 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[10-Nov-2024 13:29:12 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[10-Nov-2024 13:29:26 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[10-Nov-2024 13:29:51 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[10-Nov-2024 13:38:43 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[11-Nov-2024 04:03:33 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[11-Nov-2024 04:03:44 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[11-Nov-2024 04:59:26 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[11-Nov-2024 04:59:41 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[14-Nov-2024 02:49:40 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[14-Nov-2024 02:49:48 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[14-Nov-2024 05:46:52 UTC] PHP Warning: Undefined array key "final_amount" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 43
[17-Nov-2024 11:14:52 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[17-Nov-2024 11:14:59 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[17-Nov-2024 11:17:25 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[17-Nov-2024 11:17:46 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[18-Nov-2024 03:35:17 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[18-Nov-2024 03:35:27 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[19-Nov-2024 03:00:24 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[19-Nov-2024 03:00:38 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[20-Nov-2024 02:36:07 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[20-Nov-2024 02:36:13 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[21-Nov-2024 02:57:56 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[21-Nov-2024 02:58:22 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[22-Nov-2024 03:08:10 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[22-Nov-2024 03:08:58 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[24-Nov-2024 10:04:22 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[24-Nov-2024 10:04:45 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[24-Nov-2024 12:45:49 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[24-Nov-2024 12:46:09 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[25-Nov-2024 03:18:07 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[25-Nov-2024 03:18:18 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[28-Nov-2024 03:41:47 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[28-Nov-2024 03:41:57 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[29-Nov-2024 03:04:35 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[29-Nov-2024 03:05:04 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[01-Dec-2024 09:18:04 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[01-Dec-2024 09:18:18 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[01-Dec-2024 09:18:23 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[01-Dec-2024 09:18:29 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[01-Dec-2024 09:22:32 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[02-Dec-2024 04:57:31 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[02-Dec-2024 06:27:30 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[02-Dec-2024 06:27:39 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[03-Dec-2024 03:57:41 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[03-Dec-2024 03:57:50 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[03-Dec-2024 03:58:17 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[03-Dec-2024 05:44:37 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[04-Dec-2024 03:30:41 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[04-Dec-2024 03:30:55 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[05-Dec-2024 02:51:26 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[05-Dec-2024 02:51:41 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[06-Dec-2024 04:11:51 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[06-Dec-2024 04:12:27 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[08-Dec-2024 13:50:51 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[08-Dec-2024 13:51:00 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[09-Dec-2024 03:50:23 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[09-Dec-2024 03:50:46 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[09-Dec-2024 03:50:53 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[09-Dec-2024 07:10:09 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[09-Dec-2024 07:13:53 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[10-Dec-2024 08:25:19 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[10-Dec-2024 08:25:26 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[11-Dec-2024 03:01:51 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[11-Dec-2024 03:02:06 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[11-Dec-2024 03:03:13 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[11-Dec-2024 03:03:32 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[15-Dec-2024 10:55:28 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[15-Dec-2024 10:55:36 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[15-Dec-2024 10:55:44 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[15-Dec-2024 10:56:10 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[15-Dec-2024 10:57:45 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[15-Dec-2024 10:57:56 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[15-Dec-2024 10:58:37 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[16-Dec-2024 04:20:45 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[16-Dec-2024 04:21:29 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[17-Dec-2024 06:57:18 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[17-Dec-2024 06:57:28 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[18-Dec-2024 03:10:04 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[18-Dec-2024 03:10:14 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[19-Dec-2024 03:55:25 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[19-Dec-2024 03:55:33 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[20-Dec-2024 15:20:03 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[20-Dec-2024 15:20:10 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[22-Dec-2024 13:12:21 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[22-Dec-2024 13:12:33 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[22-Dec-2024 13:12:40 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[24-Dec-2024 02:38:13 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[24-Dec-2024 02:38:21 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[24-Dec-2024 16:17:54 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[24-Dec-2024 16:18:03 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[24-Dec-2024 16:18:23 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[25-Dec-2024 03:54:15 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[25-Dec-2024 03:55:07 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[26-Dec-2024 03:24:27 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[26-Dec-2024 03:24:34 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[27-Dec-2024 03:22:26 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[27-Dec-2024 03:22:34 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[27-Dec-2024 03:45:16 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[27-Dec-2024 03:47:40 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[27-Dec-2024 06:05:16 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[29-Dec-2024 13:59:09 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[29-Dec-2024 13:59:18 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[30-Dec-2024 04:23:19 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[30-Dec-2024 04:23:32 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[30-Dec-2024 04:23:56 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[30-Dec-2024 04:24:05 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[31-Dec-2024 05:34:14 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[31-Dec-2024 05:34:53 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[02-Jan-2025 14:39:52 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[02-Jan-2025 14:40:02 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[04-Jan-2025 14:29:52 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[05-Jan-2025 06:27:16 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[05-Jan-2025 06:27:25 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[07-Jan-2025 06:02:01 UTC] PHP Warning: Undefined array key "final_amount" in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/sales.php on line 43
[07-Jan-2025 06:02:57 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[07-Jan-2025 06:03:06 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[07-Jan-2025 06:03:27 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[07-Jan-2025 06:03:35 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[08-Jan-2025 14:07:17 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
[08-Jan-2025 14:07:25 UTC] PHP Warning: Undefined variable $paymentId in /home/dj4p5iowaf3r/public_html/kamanifarms.timepasstechnologies.com/payments.php on line 144
-------------------- END OF FILE --------------------
FILE: expenses.js
TYPE: JS
SIZE: 2.15 KB
------------------------------------------------------------
document.addEventListener('DOMContentLoaded', function() {
const categorySelect = document.getElementById('category_id');
const headSelect = document.getElementById('head_id');
categorySelect.addEventListener('change', function() {
const categoryId = this.value;
headSelect.innerHTML = '';
fetch(`get_expense_heads.php?category_id=${categoryId}`)
.then(response => {
if (!response.ok) {
throw new Error('Network response was not ok');
}
return response.json();
})
.then(data => {
headSelect.innerHTML = '';
if (data.error) {
throw new Error(data.error);
}
if (data.length === 0) {
headSelect.innerHTML = '';
} else {
data.forEach(head => {
const option = document.createElement('option');
option.value = head.id;
option.textContent = head.name;
headSelect.appendChild(option);
});
}
})
.catch(error => {
console.error('Error:', error);
headSelect.innerHTML = ``;
});
});
const editLinks = document.querySelectorAll('.edit-expense');
editLinks.forEach(link => {
link.addEventListener('click', function(e) {
e.preventDefault();
const expenseId = this.getAttribute('href').split('=')[1];
window.location.href = `edit_expense.php?id=${expenseId}`;
});
});
const deleteLinks = document.querySelectorAll('.delete-confirm');
deleteLinks.forEach(link => {
link.addEventListener('click', function(e) {
if (!confirm('Are you sure you want to delete this expense?')) {
e.preventDefault();
}
});
});
});
-------------------- END OF FILE --------------------
FILE: expenses.php
TYPE: PHP
SIZE: 12.51 KB
------------------------------------------------------------
query($query);
if (!$result) {
// Handle error
return [];
}
return $result->fetch_all(MYSQLI_ASSOC);
}
// Get expenses
function getExpenses($conn) {
$query = "SELECT e.*, ec.name as category_name, eh.name as head_name
FROM expenses e
JOIN expense_categories ec ON e.category_id = ec.id
JOIN expense_heads eh ON e.head_id = eh.id
ORDER BY e.date DESC";
$result = $conn->query($query);
if (!$result) {
// Handle error
return [];
}
return $result->fetch_all(MYSQLI_ASSOC);
}
// Handle form submission
if ($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST["add_expense"])) {
$date = $_POST["date"] ?? date('Y-m-d');
$category_id = isset($_POST["category_id"]) ? (int)$_POST["category_id"] : 0;
$head_id = isset($_POST["head_id"]) ? (int)$_POST["head_id"] : 0;
$amount = isset($_POST["amount"]) ? (float)$_POST["amount"] : 0;
if ($category_id > 0 && $head_id > 0 && $amount > 0) {
$query = "INSERT INTO expenses (date, category_id, head_id, amount) VALUES (?, ?, ?, ?)";
$stmt = $conn->prepare($query);
if ($stmt) {
$stmt->bind_param("siid", $date, $category_id, $head_id, $amount);
if ($stmt->execute()) {
$_SESSION['flash_message'] = "Expense added successfully";
header("Location: expenses.php");
exit();
} else {
$_SESSION['flash_message'] = "Error: " . $stmt->error;
}
} else {
$_SESSION['flash_message'] = "Error: " . $conn->error;
}
} else {
$_SESSION['flash_message'] = "Please fill all required fields";
}
}
// Get data
$expenseCategories = getExpenseCategories($conn);
$expenses = getExpenses($conn);
// Generate HTML for category options
function generateCategoryOptions($categories) {
$options = '';
foreach ($categories as $category) {
$options .= "";
}
return $options;
}
// Generate HTML for expense rows
function generateExpenseRows($expenses) {
$rows = '';
foreach ($expenses as $expense) {
$rows .= "
";
}
return $rows;
}
$categoryOptions = generateCategoryOptions($expenseCategories);
$expenseRows = generateExpenseRows($expenses);
// Start of HTML content
$content = <<
Expenses Management
Add Expense
Expenses List
Date
Category
Head
Amount
Actions
$expenseRows
HTML;
include 'main_layout.php';
?>
-------------------- END OF FILE --------------------
FILE: export_dashboard.php
TYPE: PHP
SIZE: 7.64 KB
------------------------------------------------------------
query($query);
if ($result === false) {
throw new Exception("Query failed: " . $conn->error);
}
return $result;
}
try {
// Get total sales value
$result = executeQuery($conn, "SELECT SUM(final_amount) as total FROM sales");
$totalSales = $result->fetch_assoc()['total'] ?? 0;
// Get total expense value
$result = executeQuery($conn, "SELECT SUM(amount) as total FROM expenses");
$totalExpenses = $result->fetch_assoc()['total'] ?? 0;
// Get total payments value
$result = executeQuery($conn, "SELECT SUM(amount_paid) as total FROM payments");
$totalPayments = $result->fetch_assoc()['total'] ?? 0;
// Get total weight harvested
$result = executeQuery($conn, "SELECT SUM(weight_tilapia + weight_small_fish + weight_big_fish) as total FROM sales");
$totalWeightHarvested = $result->fetch_assoc()['total'] ?? 0;
// Get average rate per kg
$result = executeQuery($conn, "SELECT SUM(final_amount) / SUM(weight_tilapia + weight_small_fish + weight_big_fish) as avg_rate FROM sales");
$averageRatePerKg = $result->fetch_assoc()['avg_rate'] ?? 0;
// Get initial values
$result = executeQuery($conn, "SELECT * FROM initial_values LIMIT 1");
$initialValues = $result->fetch_assoc();
// Calculate cash in hand
$cashInHand = ($initialValues['cash_in_hand'] ?? 0) + $totalPayments - $totalExpenses;
// Set headers for CSV download
header('Content-Type: text/csv');
header('Content-Disposition: attachment; filename="dashboard_export.csv"');
// Open the output stream
$output = fopen('php://output', 'w');
// Output summary data
fputcsv($output, array('Dashboard Summary'));
fputcsv($output, array('Total Sales Value', 'Total Expense Value', 'Total Payments Value', 'Cash in Hand', 'Total Weight Harvested', 'Average Rate/Kg'));
fputcsv($output, array(
formatCurrency($totalSales),
formatCurrency($totalExpenses),
formatCurrency($totalPayments),
formatCurrency($cashInHand),
number_format($totalWeightHarvested, 2),
formatCurrency($averageRatePerKg)
));
fputcsv($output, array()); // Empty line
// Output Fortnightly Harvest Charges
// Output Fortnightly Harvest Charges
fputcsv($output, array('Fortnightly Harvest Charges'));
fputcsv($output, array('Fortnight', 'Tilapia (kg)', 'Small Fish (kg)', 'Big Fish (kg)', 'Harvest Charges'));
$query = "SELECT
DATE_FORMAT(date, '%Y-%m') as month_year,
CASE
WHEN DAY(date) <= 15 THEN 'First Half'
ELSE 'Second Half'
END as half_month,
MIN(date) as start_date,
MAX(date) as end_date,
SUM(weight_tilapia) as total_tilapia,
SUM(weight_small_fish) as total_small_fish,
SUM(weight_big_fish) as total_big_fish,
SUM(harvesting_charges) as total_charges
FROM sales
WHERE date BETWEEN '2024-10-01' AND '2025-09-30'
GROUP BY
month_year,
half_month
HAVING total_charges > 0
ORDER BY start_date";
$result = executeQuery($conn, $query);
while ($row = $result->fetch_assoc()) {
// Format the start and end dates
$startDate = date('Y-m-d', strtotime($row['start_date']));
$endDate = date('Y-m-d', strtotime($row['end_date']));
// Create a descriptive fortnight name
if ($row['half_month'] == 'First Half') {
$fortnightName = date('M d', strtotime($startDate)) . " - " . date('M d', strtotime($row['month_year'] . '-15'));
} else {
$fortnightName = date('M d', strtotime($row['month_year'] . '-16')) . " - " . date('M d', strtotime($endDate));
}
fputcsv($output, array(
$fortnightName,
number_format($row['total_tilapia'], 2),
number_format($row['total_small_fish'], 2),
number_format($row['total_big_fish'], 2),
formatCurrency($row['total_charges'])
));
}
fputcsv($output, array()); // Empty line
// Output Buyer Data
fputcsv($output, array('Buyer Data'));
fputcsv($output, array('Buyer', 'Total Sales', 'Total Payments', 'Balance'));
$query = "SELECT
b.name as buyer_name,
COALESCE(SUM(s.final_amount), 0) as total_sales,
COALESCE((SELECT SUM(amount_paid) FROM payments p WHERE p.buyer_id = b.id), 0) as total_payments,
CASE
WHEN b.name = 'Madhu' THEN COALESCE(SUM(s.final_amount), 0) - COALESCE((SELECT SUM(amount_paid) FROM payments p WHERE p.buyer_id = b.id), 0) + {$initialValues['madhu_balance']}
WHEN b.name = 'Rathna' THEN COALESCE(SUM(s.final_amount), 0) - COALESCE((SELECT SUM(amount_paid) FROM payments p WHERE p.buyer_id = b.id), 0) + {$initialValues['rathna_balance']}
WHEN b.name = 'Jambukkutti' THEN COALESCE(SUM(s.final_amount), 0) - COALESCE((SELECT SUM(amount_paid) FROM payments p WHERE p.buyer_id = b.id), 0) + {$initialValues['jambukkutti_balance']}
ELSE COALESCE(SUM(s.final_amount), 0) - COALESCE((SELECT SUM(amount_paid) FROM payments p WHERE p.buyer_id = b.id), 0)
END as balance
FROM buyers b
LEFT JOIN sales s ON b.id = s.buyer_id
GROUP BY b.id
ORDER BY b.name";
$result = executeQuery($conn, $query);
while ($row = $result->fetch_assoc()) {
fputcsv($output, array(
$row['buyer_name'],
formatCurrency($row['total_sales']),
formatCurrency($row['total_payments']),
formatCurrency($row['balance'])
));
}
fputcsv($output, array()); // Empty line
// Output Monthly Sales Data
fputcsv($output, array('Monthly Sales Data (Oct 2024 - Sep 2025)'));
fputcsv($output, array('Month', 'Sales Value', 'Expense Value', 'Payments Value', 'Harvested Weight', 'Rate/Kg'));
$query = "SELECT
DATE_FORMAT(s.date, '%Y-%m') as month,
SUM(s.final_amount) as sales_value,
(SELECT SUM(amount) FROM expenses e WHERE DATE_FORMAT(e.date, '%Y-%m') = DATE_FORMAT(s.date, '%Y-%m')) as expense_value,
(SELECT SUM(amount_paid) FROM payments p WHERE DATE_FORMAT(p.date, '%Y-%m') = DATE_FORMAT(s.date, '%Y-%m')) as payments_value,
SUM(s.weight_tilapia + s.weight_small_fish + s.weight_big_fish) as harvested_weight,
SUM(s.final_amount) / SUM(s.weight_tilapia + s.weight_small_fish + s.weight_big_fish) as rate_per_kg
FROM sales s
WHERE s.date BETWEEN '2024-10-01' AND '2025-09-30'
GROUP BY DATE_FORMAT(s.date, '%Y-%m')
ORDER BY s.date";
$result = executeQuery($conn, $query);
while ($row = $result->fetch_assoc()) {
fputcsv($output, array(
$row['month'],
formatCurrency($row['sales_value']),
formatCurrency($row['expense_value']),
formatCurrency($row['payments_value']),
number_format($row['harvested_weight'], 2),
formatCurrency($row['rate_per_kg'])
));
}
fclose($output);
} catch (Exception $e) {
// In case of error, output error message
header('Content-Type: text/plain');
echo "An error occurred: " . $e->getMessage();
}
exit();
?>
-------------------- END OF FILE --------------------
FILE: get_buyer_balance.php
TYPE: PHP
SIZE: 2.42 KB
------------------------------------------------------------
'Buyer ID and date are required']);
exit;
}
$buyerId = intval($_GET['buyer_id']);
$date = $_GET['date'];
// Verify date format
if (!preg_match('/^\d{4}-\d{2}-\d{2}$/', $date)) {
echo json_encode(['error' => 'Invalid date format']);
exit;
}
try {
// Get total sales amount
$salesQuery = "SELECT SUM(final_amount) as total_sales
FROM sales
WHERE buyer_id = ? AND date <= ?";
$salesStmt = $conn->prepare($salesQuery);
$salesStmt->bind_param("is", $buyerId, $date);
$salesStmt->execute();
$salesResult = $salesStmt->get_result();
$totalSales = $salesResult->fetch_assoc()['total_sales'] ?? 0;
// Get total payments
$paymentsQuery = "SELECT SUM(amount_paid) as total_payments
FROM payments
WHERE buyer_id = ? AND date <= ?";
$paymentsStmt = $conn->prepare($paymentsQuery);
$paymentsStmt->bind_param("is", $buyerId, $date);
$paymentsStmt->execute();
$paymentsResult = $paymentsStmt->get_result();
$totalPayments = $paymentsResult->fetch_assoc()['total_payments'] ?? 0;
// Get initial values
$query = "SELECT * FROM initial_values LIMIT 1";
$result = $conn->query($query);
$initialValues = $result->fetch_assoc();
// Get buyer name
$buyerQuery = "SELECT name FROM buyers WHERE id = ?";
$buyerStmt = $conn->prepare($buyerQuery);
$buyerStmt->bind_param("i", $buyerId);
$buyerStmt->execute();
$buyerResult = $buyerStmt->get_result();
$buyer = $buyerResult->fetch_assoc();
// Add initial balance if it's one of the special buyers
$initialBalance = 0;
if ($buyer && $initialValues) {
if ($buyer['name'] == 'Madhu') {
$initialBalance = $initialValues['madhu_balance'] ?? 0;
} elseif ($buyer['name'] == 'Rathna') {
$initialBalance = $initialValues['rathna_balance'] ?? 0;
} elseif ($buyer['name'] == 'Jambukkutti') {
$initialBalance = $initialValues['jambukkutti_balance'] ?? 0;
}
}
// Calculate balance
$balance = $totalSales - $totalPayments + $initialBalance;
echo json_encode(['balance' => $balance]);
} catch (Exception $e) {
echo json_encode(['error' => $e->getMessage()]);
}
?>
-------------------- END OF FILE --------------------
FILE: get_expense_heads.php
TYPE: PHP
SIZE: 550 B
------------------------------------------------------------
prepare($query);
$stmt->bind_param("i", $categoryId);
$stmt->execute();
$result = $stmt->get_result();
$heads = $result->fetch_all(MYSQLI_ASSOC);
echo json_encode($heads);
} else {
echo json_encode(['error' => 'Category ID is required']);
}
?>
-------------------- END OF FILE --------------------
FILE: index.php
TYPE: PHP
SIZE: 73 B
------------------------------------------------------------
-------------------- END OF FILE --------------------
FILE: login.php
TYPE: PHP
SIZE: 4.54 KB
------------------------------------------------------------
prepare($query);
$stmt->bind_param("s", $username);
$stmt->execute();
$result = $stmt->get_result();
if ($result->num_rows === 1) {
$user = $result->fetch_assoc();
if (password_verify($password, $user['password'])) {
$_SESSION['user_id'] = $user['id'];
$_SESSION['username'] = $user['username'];
header("Location: dashboard.php");
exit();
} else {
$error = "Invalid username or password";
}
} else {
$error = "Invalid username or password";
}
}
?>
Login - Katheri Lake Farm Tracker
Katheri Lake Farm Tracker
-------------------- END OF FILE --------------------
FILE: logout.php
TYPE: PHP
SIZE: 80 B
------------------------------------------------------------
- Kamani Fish Farms
";
}
return $rows;
}
function generatePagination($current_page, $total_pages) {
// Keep pagination manageable by showing limited page numbers
$display_range = 5; // Number of pages to show before and after current page
$pagination = '
';
// First page link
if ($current_page > 1) {
$pagination .= "";
}
// Previous page link
if ($current_page > 1) {
$pagination .= "";
}
// Calculate range of page numbers to display
$start_range = max(1, $current_page - $display_range);
$end_range = min($total_pages, $current_page + $display_range);
// Always show first page if not in range
if ($start_range > 1) {
$pagination .= "1";
if ($start_range > 2) {
$pagination .= "...";
}
}
// Page numbers
for ($i = $start_range; $i <= $end_range; $i++) {
if ($i == $current_page) {
$pagination .= "$i";
} else {
$pagination .= "$i";
}
}
// Always show last page if not in range
if ($end_range < $total_pages) {
if ($end_range < $total_pages - 1) {
$pagination .= "...";
}
$pagination .= "$total_pages";
}
// Next page link
if ($current_page < $total_pages) {
$pagination .= "";
}
// Last page link
if ($current_page < $total_pages) {
$pagination .= "";
}
$pagination .= '