dapurhosting.com Blog for Tech

April 10, 2018

Download File dari Google Drive

Filed under: Uncategorized — dh @ 7:37 am

Cara download file dari google drive via ssh

buat file getfile.sh


touch getfile.sh
chmod +x getfile.sh
nano getfile.sh

Copy paste:

#!/bin/bash
fileid="### file id ###"
filename="MyFile.csv"
curl -c ./cookie -s -L "https://drive.google.com/uc?export=download&id=${fileid}" > /dev/null
curl -Lb ./cookie "https://drive.google.com/uc?export=download&confirm=`awk '/download/ {print $NF}' ./cookie`&id=${fileid}" -o ${filename}

Ganti fileid dengan id file google.
Ganti filename dengan nama file asli.

fileid didapat dari share file (klik kanan di file, lalu klik Get shareable link), contoh: https://drive.google.com/open?id=1_naou3PopRVlQt9FZJTCGzRKGp306hs8
1_naou3PopRVlQt9FZJTCGzRKGp306hs8 adalah FILEID

Referensi:

https://gist.github.com/tanaikech/f0f2d122e05bf5f971611258c22c110f

March 23, 2018

execute vz from root

Filed under: vz — dh @ 7:07 am


vzctl exec cid "su -c 'zmcontrol restart' - zimbra"

March 7, 2018

Disable form kontak Prestashop

Filed under: CMS — dh @ 9:58 am

Buka file controllers/front/ContactController.php

Cari kode


public function initContent()
{

tambahkan kode berikut


Tools::redirect('pagenotfound'); // redirect contact page to 404 page

February 1, 2018

Hardisk Cek Umur Hardisk

Filed under: Server — Tags: — dh @ 4:32 am

smartctl --all /dev/sda | grep Power_On_Hours

January 22, 2018

cpbackup-exclude.conf

Filed under: cPanel/WHM — dh @ 8:15 am

cpanel backup exclued

buka atau buat file cpbackup-exclude.conf di home directory

public_html/
mail/.*
mail/abc.com/*/.Junk
mail/abc.com/*/.Trash
tmp/
backup*

January 17, 2018

Unblock Spam Blacklist hotmail live msn outlook

Filed under: Email — dh @ 8:07 am

Check status ip di network microsoft

https://postmaster.live.com/snds/

Form request unblock

https://olcsupport.office.com/

https://support.microsoft.com/en-us/supportrequestform/8ad563e3-288e-2a61-8122-3ba03d6b8d75

https://sender.office.com/

December 14, 2017

Test Kecepatan Hardisk

Filed under: Server — dh @ 9:31 am

dd if=/dev/zero of=/home/testfile bs=1G count=10 oflag=direct

Hasil untuk Samsung SSD 850 EVO 1TB (kosong)
10+0 records in
10+0 records out
10737418240 bytes (11 GB) copied, 22.6079 s, 475 MB/s

October 3, 2017

Export Import MySQL SSH

Filed under: MySql — dh @ 3:21 am

(more…)

September 15, 2017

Force Update Litespeed

Filed under: Server — dh @ 11:20 am

/usr/local/lsws/admin/misc/lsup.sh -f -v 4.2
Ganti 4.2 dengan versi terbaru LiteSpeed

September 4, 2017

xml-api cpanel

Filed under: cPanel/WHM — dh @ 2:23 am

Suspend outgoing mail

http://hostname:2086/cpsession/xml-api/suspend_outgoing_email?api.version=1&user=usercp

Unsuspend outgoing mail

http://hostname:2086/cpsession/xml-api/unsuspend_outgoing_email?api.version=1&user=usercp
« Newer PostsOlder Posts »

Powered by WordPress