Guillaume Grasset

Results 7 comments of Guillaume Grasset

You have to set a timezone in the php.ini, like that: ``` [Date] date.timezone = America/New_York ``` More info: http://php.net/date.timezone

Ok, but so why don't make it possible through a plug-in. Could it be possible to make PhotoShow "plug-in aware" ?

@boogerlad and @tkaehn, the scroll wheels are nothing else than button mapping: - Button 4 is "Scroll Up": `mouseOut( 4, 0, 0);` - Button 5 is "Scroll Down": `mouseOut( 5,...

Could it be related to this bug: https://bugzilla.mozilla.org/show_bug.cgi?id=1251795#c13 ?

I was trying some workaround for this one and it seems that the `request.continue(overrides)` with `page.setRequestInterceptionEnabled(true)` is broken. The headers provided through the overrides are not applied on the request...

@aslushnikov, I use puppeteer with chromium to crawl pages. My process is the following: 1. launching puppeteer on a starting url, I retrieve all the request that could be made...