I am familiar with typical cloud storage services like Google Drive and Microsoft OneDrive. However, in web development, these cloud storage providers are not suitable because they lack direct links to the uploaded files. To address this issue, object storage becomes a handy solution.
(more…)Category: How-To Guides
-
How to install IonCube Loader with FlyWP
I heard FlyWP for the first time at WordCamp 2024 @ Menara Ken TTDI event. I give a try, and I immediately fall in love with this product. I was thinking that someone that build plugin for WordPress could be using IonCube to encrypt the source code.
(more…) -
How to simplify access to SSH with .ssh/config
If you are frequently access ssh where you need to check the server IP Address to SSH, this is the way for you to simplify the process. The strategy is to put a name to the ssh address, and you will only need to call ssh + name to access it.
(more…) -
WordPress user prior to 6.4 may want to disable attachment pages
If you are upgrading your WordPress site from any version prior to 6.4, you will have option for wp_attachment_pages_enabled configured to 1 (true). According to announcement by WordPress, you will need to modify the value manually to 0 to disable attachment page creation.
(more…) -
You shouldn’t be using any WordPress SMTP plugin
Instead, configure your web server on the Operating System level with Postfix. This is better way since Postfix will handle the rest. Also, provided if there is latency between the web server and the email provider, it will not affect your WordPress performance.
(more…) -
How can I get IPv6 when my ISP doesn’t provide it?
This is a weird question. But, for those who are wonder, you can get one by using CloudFlare WARP. This is especially a case for whom that are using WiFi in public space where it only configured with IPv4 (because it is weird for ISP not to give one since MCMC has make it mandatory). Here is how to get IPv6 with CloudFlare WARP.
(more…) -
PHP Send Duplicate Key in POST data
Some Application Programming Interface (API) requires you to send multiple parameter with same key name. However, associative array in PHP only allow unique key name per each array. Subsequent assignment towards the same key will override the previously assigned values. Here is how to send duplicate key in POST data with PHP.
(more…) -
How to integrate with CHIP Payment Gateway (PHP)
You are new to payment gateway integration and you wish to know on how to integrate with payment gateway. In this article, we will walkthrough the very basic things you need to know to integrate with CHIP Payment Gateway.
(more…) -
How I make simple HTTP load test
This WordPress blog is running on Amazon Web Service Elastic Compute Cloud (AWS EC2) with t2.nano instance. The web (apache + php-fpm) and database (mariadb) is put in different instance, making this blog technically running on two t2.nano instance or equivalent to one t2.micro instance.
(more…)