|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2017-03-30 07:15 UTC] orsinimichele at hotmail dot com
Description: ------------ php-cgi.exe crashes (no matter cgi or fastcgi) on windows 2012 IIS8 only when the facebook callback was thrown, tested x86 and x64 version, Thread Safe and Non Thread Safe, the result is the same php-cgi.exe crashes on facebook callback The browser outputs 502.2 Bad Gateway On event viewer we have this: Faulting application name: php-cgi.exe, version: 7.1.3.0, time stamp: 0x58c87e08 Faulting module name: php7.dll, version: 7.1.3.0, time stamp: 0x58c88218 Exception code: 0xc0000005 Fault offset: 0x0000000000480275 Faulting process id: 0x5b628 Faulting application start time: 0x01d2a889c6caa76c Faulting application path: D:\Program Files (x86)\Parallels\Plesk\Additional\PleskPHP71x64\php-cgi.exe Faulting module path: D:\Program Files (x86)\Parallels\Plesk\Additional\PleskPHP71x64\php7.dll Report Id: 048f0b3d-147d-11e7-946a-d4ae52d40b64 Faulting package full name: Faulting package-relative application ID: Patchesphp_stream_fopen_tmpfile (last revision 2017-04-13 13:30 UTC by aserbulov at plesk dot com)Pull Requests
Pull requests:
HistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 15:00:01 2025 UTC |
Steps to reproduce: 1. Create C:\TEMP folder 2. Create system user 3. Add Deny Full control access rights for created user on C:\ 4. Remove Deny Full control access rights for created user on C:\TEMP 5. Add Allow Full control access rights for created user on C:\TEMP 6. Set TEMP and TMP system environment variables value to C:\TEMP 7. Execute script by created user: <?php $fp = fopen('php://temp', 'w+b'); $ch = curl_init(); curl_setopt($ch, CURLOPT_FILE, $fp);