Search results

  1. kidino

    $_POST is empty via Ajax

    I found out from the General Demo software in EXEOutput
  2. kidino

    $_POST is empty via Ajax

    Yep, thanks for testing this for me jayd. My actual software I am building, yes, deals with some MB of data. I was trying that at first. And when I encounter this problem, I tested with just about 100 byte, and still it fails. Plus, the data has been downloaded successfully before I try this...
  3. kidino

    $_POST is empty via Ajax

    By the way, I have all my php.ini settings correct I believe. memory_limit = 128M post_max_size = 100M And I don’t think it’s because of timeout because this is data sent from local to local. Even a short data set failed. My further testing, I found out that the server always treat the Ajax...
  4. kidino

    $_POST is empty via Ajax

    OK, here’s what I found out. Normal POST with a form works, but POST via Ajax doesn’t. Here’s my code that sends that Ajax. <!DOCTYPE html> <html> <head> <title>Ajax Progress</title> <script src="js/jquery.js"></script> <script...
  5. kidino

    $_POST is empty via Ajax

    I am sending data using $.ajax and using the POST method. I cannot use GET because the data is long in the MB range. But on the receiving php script, it always seems that the $_POST is empty. This is not the case with I run my app in the browser with my localhost XAMPP. I thought that it could...
  6. kidino

    [SOLVED] $.ajax header is different

    Hahaha… laughing at myself. This is not EXEOutput’s fault. I am doing cross-domain Ajax and it appears that I was missing some HTTP header settings on my servers. I needed… header('Access-Control-Allow-Origin: *'); header("Access-Control-Allow-Methods: POST, GET"); header('Custom-Header...
  7. kidino

    [SOLVED] $.ajax header is different

    I am doing a cross domain ajax call with jQuery’s $.ajax. I do have Access-Control-Allow-Origin and Access-Control-Allow-Methods set at the server so those are good. I do get the response I needed. However, some data is stored in the HTTP Header and I am getting a different result when using EXE...
Back
Top