Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 50015
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T16:31:37+00:00 2026-05-10T16:31:37+00:00

I’m attempting to do an AJAX call (via JQuery) that will initiate a fairly

  • 0

I’m attempting to do an AJAX call (via JQuery) that will initiate a fairly long process. I’d like the script to simply send a response indicating that the process has started, but JQuery won’t return the response until the PHP script is done running.

I’ve tried this with a ‘close’ header (below), and also with output buffering; neither seems to work. Any guesses? or is this something I need to do in JQuery?

<?php  echo( 'We'll email you as soon as this is done.' );  header( 'Connection: Close' );  // do some stuff that will take a while  mail( 'dude@thatplace.com', 'okay I'm done', 'Yup, all done.' );  ?> 
  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T16:31:38+00:00Added an answer on May 10, 2026 at 4:31 pm

    The following PHP manual page (incl. user-notes) suggests multiple instructions on how to close the TCP connection to the browser without ending the PHP script:

    • Connection handling Docs

    Supposedly it requires a bit more than sending a close header.


    OP then confirms: yup, this did the trick: pointing to user-note #71172 (Nov 2006) copied here:

    Closing the users browser connection whilst keeping your php script running has been an issue since [PHP] 4.1, when the behaviour of register_shutdown_function() was modified so that it would not automatically close the users connection.

    sts at mail dot xubion dot hu Posted the original solution:

    <?php header('Connection: close'); ob_start(); phpinfo(); $size = ob_get_length(); header('Content-Length: $size'); ob_end_flush(); flush(); sleep(13); error_log('do something in the background'); ?> 

    Which works fine until you substitute phpinfo() for echo('text I want user to see'); in which case the headers are never sent!

    The solution is to explicitly turn off output buffering and clear the buffer prior to sending your header information. Example:

    <?php ob_end_clean(); header('Connection: close'); ignore_user_abort(true); // just to be safe ob_start(); echo('Text the user will see'); $size = ob_get_length(); header('Content-Length: $size'); ob_end_flush(); // Strange behaviour, will not work flush(); // Unless both are called ! // Do processing here  sleep(30); echo('Text user will never see'); ?> 

    Just spent 3 hours trying to figure this one out, hope it helps someone 🙂

    Tested in:

    • IE 7.5730.11
    • Mozilla Firefox 1.81

    Later on in July 2010 in a related answer Arctic Fire then linked two further user-notes that were-follow-ups to the one above:

    • Connection Handling user-note #89177 (Feb 2009)
    • Connection Handling user-note #93441 (Sep 2009)
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've got a string that has curly quotes in it. I'd like to replace
I have a small JavaScript validation script that validates inputs based on Regex. I
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I need a function that will clean a strings' special characters. I do NOT
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
For some reason, after submitting a string like this Jack’s Spindle from a text
I have a jquery bug and I've been looking for hours now, I can't
I have a French site that I want to parse, but am running into

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.