Portfolio
Php5

Phân tích hệ thống tiki.vn 2014

September 21, 2017Category : Code/Web

Tổng quan hệ thống Mọi lời nói không thể thay thế bằng hình ảnh rõ ràng được :) Tiki sử dụng Magento version 1.x Source code Magento sẽ được deploy lên 4 server web app, server Media và request sẽ được load balance qua 4 server này Database sử dụng là Percona MySQL được cấu..

Read more
01.

EasyEngine & WordPress

September 18, 2017Category : Code/Web IT & Network

EasyEngine là gì? EasyEngine là một *UNIX script dành cho hệ điều hành Ubuntu/Debian giúp bạn tự động cài đặt một webserver sử dụng NGINX và PHP-FPM hoàn chỉnh phục vụ riêng cho WordPress. Điều này có nghĩa là nó sẽ tự tối ưu hóa cho NGINX để làm việc với WordPress tốt nhất. Bởi vì chúng ta..

Read more
02.

PHP Auto create XML playlist file

December 5, 2015Category : Code/Web

List file create order by abc <?php // *** requires PHP5 *** // search for jpg files $filter = “.mp3”; // path to the directory you want to scan $directory = ‘./audio’; $it = new RecursiveDirectoryIterator(“$directory”); foreach( new RecursiveIteratorIterator($it) as $file) { if (!((strpos(strtolower($file), $filter)) === false)) { $items[] = preg_replace(“#\\\#”, “/”, $file); } }..

Read more
03.

PHP’s Zend Opcache Config

November 19, 2014Category : Code/Web

PHP’s Zend Opcache Config In your php.ini or /etc/phpversion…/fpm/conf.d/05-opcache.ini  opcache.memory_consumption=128 opcache.interned_strings_buffer=8 opcache.max_accelerated_files=50000 opcache.revalidate_freq=60 opcache.fast_shutdown=1 opcache.enable_cli=1

Read more
04.

Installing PHP FastCGI and Zend OPcache on XAMPP for Windows

November 14, 2014Category : Code/Web

Why install PHP + FastCGI? Mod-PHP comes installed with XAMPP, and it is slow. You also cannot utilise the Zend opcode cache, which is included with PHP itself since PHP 5.5. Steps to install PHP + FastCGI

Read more
05.

Chuẩn bị gì để thi chứng chỉ Zend PHP5 ZCE?

March 26, 2010Category : Code/Web

Nguon: http://bloghoctap.com/lap-trinh-php/chuan-bi-gi-de-thi-chung-chi-zend-php5-zce.html Trước tiên, có lẽ các bạn cần biết mình nên chuẩn bị những kiến thức gì để tập trung nghiên cứu cho cuộc thi. Mặc dù khối lượng kiến thức của PHP khá nhiều, nhưng cuộc thi chỉ tập trung vào một số mảng sau:

Read more
06.
© Oliver / All rights reserved.
To top