Kiểm tra cấu hình đường dẫn upload ảnh
Found 1 file(s):
ℹ️ Note: This is how URLs will be generated when images are uploaded. If you see a 404 error when clicking the link above, the path configuration is correct (file just doesn't exist yet).
This is what should be in your image_upload_handler.php:
<?php
// Line ~12
define('UPLOAD_DIR', $_SERVER['DOCUMENT_ROOT'] . '/uploads/live_chat_images/');
// Line ~95
$protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off') ? 'https' : 'http';
$host = $_SERVER['HTTP_HOST'];
$image_url = $protocol . '://' . $host . '/uploads/live_chat_images/' . $new_filename;
?>