This privacy policy applies to the Math Brain Challenge app (hereby referred to as “Application”) for mobile devices that was created by FRASmedia (hereby referred to as “Service Provider”) as a Free service. This service is intended for use “AS IS”. Information Collection and Use The Application collects information when you download and use it….
Author: adminfrasmedia
Privacy Policy Fun Math by FRASApps
This privacy policy applies to the Kids Drawing by FRASApps app (hereby referred to as “Application”) for mobile devices that was created by FRASApps (hereby referred to as “Service Provider”) as a Free service. This service is intended for use “AS IS”. Information Collection and Use The Application collects information when you download and use…
Privacy Policy Kids Drawing by NiktoApps
This privacy policy applies to the Kids Drawing by NiktoApps app (hereby referred to as “Application”) for mobile devices that was created by NiktoApps (hereby referred to as “Service Provider”) as a Free service. This service is intended for use “AS IS”. Information Collection and Use The Application collects information when you download and use…
WooCommerce Filter Order By Payment Method
Alamat Plugin WooCommerce Filter by Payment Method di directory plugin WordPress : Plugin ini digunakan untuk memfilter order di WooCommerce berdasarkan metode pembayaran yang digunakan. Kode ini sebenarnya bukan 100% saya yang menulis, saya dapatkan dari forum tanya jawab. Saya hanya mempermudah menjadikannya sebuah plugin yang tinggal install saja tanpa harus oprek template. Semoga bermanfaat.
Cara Nambah situs baru di Netlify
Sebelumnya kita sudah belajar untuk membuat akun di netlify ( https://frasmedia.com/alternatif-hosting-statis-di-netlify.html ), serta membuat situs pertama kita di netlify, sekarang kita belajar bagaimana untuk menambah situs baru tanpa membuat akun baru di netlify, karena di netlify, kita tidak hanya diperbolehkan membuat 1 situs saja, tapi diperbolehkan untuk membuat situs lebih dari satu. Apa saja yang…
Alternatif hosting statis di Netlify
Netlify.com adalah sebuah platform yang menyediakan layanan hosting statis, ada yang versi gratis dan ada yang versi berbayar. Untuk tutorial kali ini, kita akan menggunakan yang versi gratis. Selain netlify, sebenarnya ada banyak perusahaan laen yang menyediakan layanan hosting gratis seperti vercel, github, Amazon S3, Render, dan lainnya. Bedanya ada pada fitur, seperti banyaknya kapasitas…
How To Install & Secure phpMyAdmin for Apache on Ubuntu 20.04
Original post from devanswers.co, In this guide we will install and secure phpMyAdmin to work with Apache on Ubuntu Server 20.04. Prerequisites You should be using a non-root user with sudo privileges as explained in Ubuntu 20.04 Initial Server Setup. You should also have your LAMP stack for Ubuntu 20.04 already installed and serving web pages before continuing…
Ubuntu 20.04 Initial Server Setup
Original post from devanswers.co, In this guide we will configure your new Ubuntu 20.04 server and implement some best practices. Prerequisites If you are accessing Ubuntu Server 20.04 remotely and don’t know how to access terminal via SSH, please see one of the following guides: How to Log into Linux from Windows using PuTTY How…
How To Install Apache, MySQL, PHP (LAMP) Stack on Ubuntu 20.04 / 20.10
Original post from devanswers.co, In this guide we will install a LAMP Stack (Apache, MySQL, PHP) on Ubuntu Server 20.04 / 20.10 and configure a web server. Prerequisites You should use a non-root user account with sudo privileges. Please see the Initial server setup for Ubuntu 20.04 / 20.10 guide for more details. 1. Install Apache The…
WordPress .htaccess Basic
# BEGIN WordPress RewriteEngine On RewriteRule .* – [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase / RewriteRule ^index\.php$ – [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] # END WordPress