[Solved] Blocked.com free trial script shows blank page [closed]

I found what the problem was. I had to enable errors to see what was going on, and apparently I need(ed) to install IonCube Loader on the server. //error_reporting(0); ini_set(‘display_errors’, 0); ini_set(‘display_errors’,1); ini_set(‘display_startup_errors’,1); error_reporting(-1); Also, they check if you have IonCube Loader in your system AFTER using it… Makes sense. $version_ioncube = ioncube_loader_version(); Fatal error: … Read more

[Solved] Why is the Windows Forms UI blocked when executing Task with ContinueWith?

Since you already create (and save) your tasks, the easiest fix would be to await them for each iteration of your while loop: while (run) { action2(); foreach (Task t in continutask) await t; } That way, when all pings completed (successful or not) you start the entire process again – without delay. One more … Read more