Sander Verhagen

Results 10 comments of Sander Verhagen

This would be great to have, and it looks like your PR already got a good deal covered, but I have to guess it's stale now. What happened here, it'd...

At this point I'm wondering whether the what seems to be timeout can be influenced by PHP settings or Apache settings. It's interesting that @01-Scripts mentions so specifically 30 seconds....

FYI, the `$g_long_process_timeout` seems to affect a part of the process, and not the process as a whole. When setting it to e.g. "10" (seconds implied) it takes a minute...

Here's another approach that I'm tinkering with: - Add `$t_repo->save();` to `plugins/Source/pages/repo_import_latest.php` (near the end, where it says `post_stats`). How else will my "_Import Latest Data_" ever save it's data?...

This particular problem seems to be caused by the URL being malformed, which is due to the parameters being wrong. I figured this out by putting the following on line...

Another problem that I'm noticing, and this may be not so much a problem in production, but I have been heavily debugging this plugin, is that I'm hitting Bitbucket's [rate...

Would be nice if there was a solution, I'm getting what appears the same on 0.14.

I think I solved my performance problems with a mix of `flush`/`clear` and `@Column(updatable = false)`, but I still wanted to add my two cents to the discussion, here. Similar...

Unfortunately, I can't commit to that at this time. As I said, I solved my performance problems in another way. Since you foreshadowed some further investigation in the future, I...

FWIW, using this as a workaround now: constructor(props) { super(props); this.focused = false; } render() { const suggestions = ...; const filteredSuggestions = this.focused ? suggestions : []; return (...