Mysql Secure Installation (Unattended)
NB : MyPass
is your current mysql password
echo -e "MyPass\nn\nY\nY\nY\nY\n" | mysql_secure_installation 2>/dev/null
Result:
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
<?php session_start(); | |
if(isset($_SESSION['username'])){ | |
echo "Hi Admin, user kamu ".$_SESSION["username"]; | |
}else{ | |
header('Location: index.php'); | |
} | |
?> |
//09/22/2015/22:54//iframeJs | |
var targetUrl = window.location.href; | |
if (self !== top) { | |
self.location.href = targetUrl | |
} | |
var iframe = iframe || { | |
object: null, | |
init: function init() { | |
this.object = document.getElementById("main-frame") | |
}, |
Mysql Secure Installation (Unattended)
NB : MyPass
is your current mysql password
echo -e "MyPass\nn\nY\nY\nY\nY\n" | mysql_secure_installation 2>/dev/null
Result:
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
<?php | |
/* | |
* Created by Sucipto | |
* http://www.sucipto.net | |
* June 2015 | |
*/ | |
include 'yandex.php'; |
#ifndef HTTPTHREAD_H | |
#define HTTPTHREAD_H | |
#include <QThread> | |
#include <QTcpSocket> | |
class FortuneThread : public QThread | |
{_ | |
Q_OBJECT |