step 1
https://speeltuin.nl/thewayback/
update the code and compile with Phonegap Build – submit you IPA
step 2
get an annoying e-mail:
step 1
https://speeltuin.nl/thewayback/
update the code and compile with Phonegap Build – submit you IPA
step 2
get an annoying e-mail:
Prevent caching?
change the HEADERS!
Cache-Control: no-cache, no-store, must-revalidate Pragma: no-cache Expires: 0
GOOD INFO HERE:
https://stackoverflow.com/questions/49547/how-to-control-web-page-caching-across-all-browsers
… does not exist
https://nl.wikipedia.org/wiki/Lijst_van_HTTP-statuscodes
However it did take some of my time to figure this one out as the response code was really in my webserver logfiles and as usual… I was not the first to run into this problem, see: https://stackoverflow.com/questions/46266553/why-laravel-api-return-419-status-code-on-post-and-put-method
You get a 419 status code, if an (external) script tries to post to your Laravel application, without the o-so-needed CSRF token.
First option is to change in App\Http\Middleware\VerifyCsrfToken:
protected $except = [ ‘/*’, ];
(or maybe something more specific and a little more safe, like ‘/myapiurl/*’,)
Second option is to put the route in api.php instead of web.php, but that implies prefixing all your routes with /api/
… your choice!
| Power | Value |
| 0 | 1 |
| 1 | 2 |
| 2 | 4 |
| 3 | 8 |
| 4 | 16 |
| 5 | 32 |
| 6 | 64 |
| 7 | 128 |
| 8 | 256 |
Using .\vendor\bin\phpunit and no output whatsoever? Continue reading PHPUnit on Laravel
START WITH:
php and getcomposer Continue reading Laravel on IIS