🌐 Simple HTTP Test ================== 1️⃣ Testing with minimal headers... HTTP Status: 500 Response: {"success":false,"message":"Database initialization failed"}... Error: Info: Array ( [url] => http://mobiletr.upastithi.in/php/upload.php [content_type] => application/json [http_code] => 500 [header_size] => 402 [request_size] => 142 [filetime] => -1 [ssl_verify_result] => 0 [redirect_count] => 0 [total_time] => 0.006002 [namelookup_time] => 0.000137 [connect_time] => 0.000205 [pretransfer_time] => 0.000265 [size_upload] => 15 [size_download] => 60 [speed_download] => 9996 [speed_upload] => 2499 [download_content_length] => 60 [upload_content_length] => 15 [starttransfer_time] => 0.005992 [redirect_time] => 0 [redirect_url] => [primary_ip] => 5.9.121.239 [certinfo] => Array ( ) [primary_port] => 80 [local_ip] => 5.9.121.239 [local_port] => 35726 [http_version] => 2 [protocol] => 1 [ssl_verifyresult] => 0 [scheme] => http [appconnect_time_us] => 0 [connect_time_us] => 205 [namelookup_time_us] => 137 [pretransfer_time_us] => 265 [redirect_time_us] => 0 [starttransfer_time_us] => 5992 [total_time_us] => 6002 [effective_method] => POST [capath] => [cainfo] => /etc/pki/tls/certs/ca-bundle.crt ) CURL Verbose Log: * Host mobiletr.upastithi.in:80 was resolved. * IPv6: (none) * IPv4: 5.9.121.239 * Trying 5.9.121.239:80... * Connected to mobiletr.upastithi.in (5.9.121.239) port 80 * using HTTP/1.x > POST /php/upload.php HTTP/1.1 Host: mobiletr.upastithi.in Accept: */* Content-Type: application/json Content-Length: 15 * upload completely sent off: 15 bytes < HTTP/1.1 500 Internal Server Error < Connection: Keep-Alive < Keep-Alive: timeout=5, max=100 < x-powered-by: PHP/8.3.24 < content-type: application/json < access-control-allow-origin: * < access-control-allow-methods: POST, OPTIONS < access-control-allow-headers: Content-Type, X-Device-ID, X-Timestamp, X-Auth-Token, X-Data-Type < content-length: 60 < date: Thu, 11 Dec 2025 13:04:34 GMT < server: LiteSpeed < * Connection #0 to host mobiletr.upastithi.in left intact 2️⃣ Testing with different content types... Testing Content-Type: application/json HTTP Status: 500 ✅ This content type works! Testing Content-Type: application/x-www-form-urlencoded HTTP Status: 500 ✅ This content type works! Testing Content-Type: text/plain HTTP Status: 500 ✅ This content type works! Testing Content-Type: multipart/form-data HTTP Status: 500 ✅ This content type works! 3️⃣ Testing with GET request... GET HTTP Status: 500 GET Response: {"success":false,"message":"Database initialization failed"}... 4️⃣ Testing server configuration... Test file HTTP Status: 404 Test file Response: 404 Not Found

404

Not Found

The resource requested could not be found on this server!


Proudly powered by LiteSpeed Web Server

Please be advised that LiteSpeed Technologies Inc. is not a web hosting company and, as such, has no control over content found on this site.

5️⃣ Testing with different user agents... Testing User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 HTTP Status: 500 Testing User-Agent: curl/7.68.0 HTTP Status: 500 Testing User-Agent: Android App HTTP Status: 500 Testing User-Agent: Monitoring App HTTP Status: 500 ✅ Simple HTTP Test Completed! ============================= If all tests return 400, the issue is likely: 1. Server configuration blocking requests 2. Web server (LiteSpeed) security rules 3. PHP configuration issues 4. File permissions or .htaccess rules