All posts tagged php

Kill all php, nginx, mysql processes

To kill all PHP Processes kill $(ps aux | grep ‘[p]hp’ | awk ‘{print $2}’) To kill all Nginx Processes kill $(ps aux | grep ‘[n]ginx’ | awk ‘{print $2}’) To kill all MySQL Processes kill $(ps aux | grep ‘[m]ysql’ | awk ‘{print $2}’)

Xem tất cả các file php đang chạy

Xem các file php đang chạy (hoặc loop) ps aux | grep php Xem các process đang chiếm cổng: netstat -tulpn VD cổng 55555: netstat -tulpn | grep 55555 Tắt 1 process: kill [processid] Nếu kill xong nó lại quay lại, hoặc kill mãi ko được, thì dùng lệnh kill -9 [processid] . . . Read more

Debug PHP bằng Sublime text và Xdebug

PHPXdebug  Aug 29th, 2016 12:40 AM  3232 5 1  Report Debug code – chúng ta phải làm việc này rất nhiều. Viết code chạy một cách trơn tru ngay lần đầu tiên luôn thì rất là khó và chỉ có một số ít người (nếu có) làm được. Trong bài viết này, chúng . . . Read more

WordPress REST API

  WordPress REST API Quickstart Best: https://rudrastyh.com/wordpress/rest-api-create-delete-posts.html   https://github.com/Automattic/wp-rest-php-lib  

10 awesome things to do with cURL

cURL, and its PHP extension libcURL, are tools which can be used to simulate a web browser. In fact, it can for example, submit forms. In this article, I’m going to show you 10 incredible things that you can do using PHP and cURL. Acknowledgments New to cURL? If yes, check . . . Read more