Skip to main content

Posts

Showing posts with the label WP

Note AWS, cloud 5

php artisan down do what ? put app to maintenance mode. https://medium.com/stashaway-engineering/deploying-a-self-contained-maintenance-page-on-aws-ad4ec8e0a736 heroku have setting for that (cool) https://stackoverflow.com/questions/13693947/how-do-you-put-up-a-maintenance-page-for-aws-when-your-instances-are-behind-an-e May be these thing like this make heroku shine here. WP   can be set maintenance mode too ? pp complain ab WP but sometime it shine. php artisan down not posible in cloud (ie. ELB beanstalk...) => where VPS shine ? http://v2.wp-api.org/extending/adding/#the-controller-pattern https://dba.stackexchange.com/questions/86783/converting-heap-to-myisam-issue https://forums.mysql.com/read.php?22,111012,202235 https://aws.amazon.com/premiumsupport/knowledge-center/troubleshoot-http-5xx/ https://docs.aws.amazon.com/elasticloadbalancing/latest/classic/config-conn-drain.html My bg task stop when lock screen. hmm lost few hour of data. https://apple.stack...

WP tuning p2 (API), Lumen, Laravel codepipeline Beanstalk

https://deliciousbrains.com/comparing-wordpress-rest-api-performance-admin-ajax-php/ https://stackoverflow.com/questions/3338220/how-to-simulate-high-traffic-load-on-a-web-application http://www.opensourcetesting.org/category/performance/page/2/ https://jmeter.apache.org/usermanual/get-started.html#non_gui curl -sH 'X-Papertrail-Token: YOUR-HTTP-API-KEY' https://papertrailapp.com/api/v1/archives.json |   grep -o '"filename":"[^"]*"' | egrep -o '[0-9-]+' |   awk '$0 >= "YYYY-MM-DD" && $0 < "YYYY-MM-DD" {     print "output " $0 ".tsv.gz"     print "url https://papertrailapp.com/api/v1/archives/" $0 "/download"   }' | curl --progress-bar -fLH 'X-Papertrail-Token: YOUR-HTTP-API-KEY' -K- https://help.papertrailapp.com/kb/how-it-works/permanent-log-archives/#usage-example https://medium.com/@avishayil/deploy-to-elastic-beanstalk-using-bitbuc...