Sean B

Results 9 comments of 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?

I see there already is a PR for this: https://github.com/DaveChild/Text-Statistics/pull/56 (and more 8.2 deprecations).

We worked around this by wrapping the call in ``` try { } catch (\Throwable $exception) { } ```

> Which call We have done something like this: ``` // Execute API query and return the result. try { $client = $this->googleQueryFactory->getClient(); $response = $client->runReport($report_parameters); } catch (\Throwable $exception)...