Search This Blog

Monday, April 14, 2014

menampilkan tanggal sebelum tanggal hari ini dengan php

<?php
$prev_day = 30;
$prev_hari = mktime(0,0,0,date("m"),date("d")-$prev_day,date("Y"));
echo "30 hari sebelum tanggal sekarang = ".date("Y-m-d",$prev_hari);
echo "tanggal sekarang = ".date("Y-m-d");
?>

Thursday, April 10, 2014

mengaktifkan modul mCrypt di Ubuntu

sudo ln -s /etc/php5/conf.d/mcrypt.ini /etc/php5/mods-available
sudo php5enmod mcrypt
sudo service apache2 restart

Monday, April 7, 2014

MEMBUAT SERVER CLOUD STORAGE SENDIRI PADA JARINGAN LAN

Saya sudah pernah menulis tentang layanan cloud storage yang bisa kita gunakan seperti Dropbox, Google Drive, dan Ubuntu One. Nah tulisan kali ini akan membahas tentang cara bagaimana membuat server cloud storage sendiri pada jaringan lokal (LAN). Perangkat lunak yang saya gunakan untuk server cloud storage ini menggunakan distro Linux Ubuntu 12.04 sebagai sistem operasi servernya, LAMP untuk web server dan database, dan yang terakhir ownCloud sebagai perangkat lunak aplikasi untuk cloud storagenya.

Change MySQL Password on Zentyal

1.Change the default password in the config file for Zentyal 
Code:
sudo nano 
/var/lib/zentyal/conf/zentyal-mysql.passwd
2. Copy and paste the password to a text file for root login later. Comment out the password in the file and list your new password for mysql. Then press ctrl 'x' then 'y'
3. Stop the MySQL Server.
Code:
sudo /etc/init.d/mysql stop
4. Start the mysqld configuration
Code:
sudo mysqld --skip-grant-tables &
5. Login to MySQL as root. EDIT: Use original password in "ebox-zarafa.passwd", the one you commented out in step 2
Code:
mysql -u root
6. Replace YOURNEWPASSWORD with your new password!
Code:
 UPDATE mysql.user SET password=password('your new pass') WHERE user='root' AND host='localhost'; FLUSH PRIVILEGES; exit;

sudo /etc/init.d/mysql start