Results 440 comments of bilogic

Able to help explain how ```downloadSkeleton()``` works? Specifically, where does it write the file ```rewriteRules.php```? Perhaps there was a ```fclose()``` somewhere that was not called? Just for info, your packaged...

@smoetje thanks for providing the info. Let me have a look. Meanwhile possible to edit your earlier post to highlight the PHP syntax? You can do that by adding PHP...

@Jeroen-G @smoetje I consider the root of this issue hard to replicate and not exactly our "job". May I propose we replace the 10000 cycle count with a 30 second...

@smoetje cool! 1. Maybe add a `sleep(1000);` after the `break;` inside the while loop to slow things down a bit? 2. I submitted a PR to not too long ago....

Oops, sorry, I write in a number of different languages, 1 second was what I meant. :)

btw, sleep has to be outside the braces ```PHP while(true) { if(file_exists($this->packagePath().'/'.$file) || ((time() - $start_time) > 30)) break; sleep(1); } ```

Ok, let's talk pseudo code first. Here's what we want: 1. loop 2. if we have reached 30 seconds OR file exists, get out of loop 3. since we are...

Hmm, this is extremely strange. But then again, it was a weird issue to begin with. I think you understand where to put the `sleep(1)`. Hope you can fix the...