Note that there are some explanatory texts on larger screens.

plurals
  1. POIE does not send post data PHP & jQuery
    primarykey
    data
    text
    <p>In IE only when sending a post request the POST information is not received by the server.</p> <p>This works correctly in every other browser tested.</p> <p>The code :</p> <pre><code>$.ajax({ url: '/dashboard/draft/get/data?date=' + new Date(), type: 'post', data: { 'draftid': $.allpro.draftid, 'iefix': true }, cache: false, success: function(response) { $.allpro.draft.salary_cap = parseInt(response.data.salary_cap) $.allpro.draft.salary_remaining = parseInt(response.data.salary_remaining) $.allpro.draft.average_spent = response.data.average_spent $('#salary_cap').text(response.data.salary_cap) $('#salary_remaining').text(response.data.salary_remaining) $('#average_spent').text(response.data.average_spent) $.each(response.data.drafted, function(_i, _v){ if (_v.playerid == "0") { var id = _v.teamid var is_team = 1 } else { var id = _v.playerid var is_team = 0 } $.allpro.draft.playerOptions.queue_add( id, is_team, _v.position ) }) set_requirements(response.data.requirements) } }) </code></pre> <p>Doing a <code>var_dump</code> on both <code>$_REQUEST</code> and <code>$_POST</code> show nothing was received.</p> <p>I've researched this and found many of topics describing a similar issue but none provide a fix ... and as you can see I've already tried to add an additional post field, cache bust and disabling the cache with nothing fixing the problem.</p> <p>Thanks!</p> <hr> <p>Changing this a GET fixes the problem at hand ... but the issue still exists if someone can find a fix.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload