Sean B
Sean B
This happens in /lib/ExchangeClient.php on line 195 as well. The fix for me was to instantiate the Mailbox property as stdClass: $FindItem->ParentFolderIds->DistinguishedFolderId->Mailbox = new stdClass();
When I change the following in `Embed::extract()` it seems to work. ```$uri = $this->crawler->getResponseUri($response) ?: $request->getUri();``` ```$uri = $request->getUri();``` The getResponseUri($response) method converts the embed URL because instagram sometimes requires...
+1 on providing configuration options to show a docs/canvas tab like before.
I have the same issue, increasing NGINX_FASTCGI_BUFFERS and NGINX_FASTCGI_BUFFER_SIZE also did not seem to help? The error I get is: _upstream sent too big header while reading response header from...
Just debugged this and found out when a large set of cache tags are added to the _Cache-Tags_ header (in my case this has 4011 characters), the error occurs. Not...
I created a PR #34 that seems to work for me. Would this be something worth adding?