Friday, August 3, 2018

Create Auto Backup Database on Linux

p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px 'Helvetica Neue'; color: #454545} p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px 'Helvetica Neue'; color: #454545; min-height: 14.0px} apt-get install cron crontab -e #!/bin/sh  mysqldump -u root -pQidDniuJMb@LC@G5 gift > /var/bin/db/gift/gift.sql  cd /var/bin/db/gift/  tar -zcvf giftsql_$(date +%d%m%y).tgz...

Thursday, August 2, 2018

Basic Auth with PHP

// basic auth if (   !isset($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']) ||   ($_SERVER['PHP_AUTH_USER'] !== 'admin' && $_SERVER['PHP_AUTH_PW'] !== 'test')) {    header('WWW-Authenticate: Basic realm="Enter username and password for admin page."');    header('Content-Type: text/plain; charset=utf-8');    die('このページを見るにはログインが必要です。'); ...

Tuesday, July 26, 2016

How to get pins from pinterest with Jquery

If you are familiar with PHP you can just use these existing projects from github 1- Pinterest API - PHP Read more To use the Pinterest API you have to register yourself as a developer and create an application. After you've created your app you will receive a app_id and app_secret. 2- Pinterest...

Monday, July 25, 2016

How to check Cron jobs

In the previous article I have shown you to configure cron jobs. Somebody asked me how to check weather cron jons is processing. So, if you haven't known what is cron jobs please read follow this cron jobs There are many way to check your cron jobs. To do it you have to : 1- Turn on your terminal...

Set up cron jobs or crontab in Cakephp

Before stating to set up Cron jobs in your server you have understand and know what the Cron jobs is? Cron is a Linux utility which schedules a command or script on your server to run automatically at a specified time and date. A cron job is the scheduled task itself. Cron jobs can...

Tuesday, April 5, 2016

Sunday, March 27, 2016

Websocket with PHP

There are many ways to create real time web application with PHP, but in this case I will show you a best websocket library will be useful for making a real time web application. What is Websockt? It is full-duplex (data can transmitted in both directions) clinet/Server commnuication over TCP. so...