October 30, 2019
Forwarder dan Filter Rule cPanel
September 24, 2019
August 14, 2019
LVE Extension Hilang dari Paket Hosting
October 19, 2018
The domain already exists in the userdata.
Tidak bisa addon domain dengan pesan error: The domain already exists in the userdata.
Pastikan dahulu tidak ada subdomain yang berhubungan dengan domain yang mau diaddon.
Lalu
grep domain.com /var/cpanel/users/*
grep -R domain.com /var/cpanel/userdata/*
Edit file/s that are found and remove domain name the customer is trying to add.
October 3, 2018
Looping Update Package (Yum Update)
yum clean all --enablerepo=*
yum update -y
August 6, 2018
August 2, 2018
Delete Empty File or 0b File
Use the Find command to find files by size and print file names to standard output.
find . -type f -size 0b -print
substitute -print with -delete to delete the files rather than print them on screen.
find . -type f -size 0b -delete
May 1, 2018
Disable Product Recommend Virtuemart Joomla
Edit administrator/components/com_virtuemart/html/shop.recommend.php
Di bawah code
if( !defined( '_VALID_MOS' ) && !defined( '_JEXEC' ) ) die( 'Direct Access to '.basename(__FILE__).' is not allowed.' );
Tambahkan kode baru:
header('Location: http://google.com/');
exit;
April 13, 2018
Spamming Joomla
UPDATE jos_extensions SET params = '{\"show_contact_category\":\"hide\",\"show_contact_list\":\"0\",\"presentation_style\":\"sliders\",\"show_name\":\"1\",\"show_position\":\"1\",\"show_email\":\"0\",\"show_street_address\":\"1\",\"show_suburb\":\"1\",\"show_state\":\"1\",\"show_postcode\":\"1\",\"show_country\":\"1\",\"show_telephone\":\"1\",\"show_mobile\":\"1\",\"show_fax\":\"1\",\"show_webpage\":\"1\",\"show_misc\":\"1\",\"show_image\":\"1\",\"image\":\"\",\"allow_vcard\":\"0\",\"show_articles\":\"0\",\"show_profile\":\"0\",\"show_links\":\"0\",\"linka_name\":\"\",\"linkb_name\":\"\",\"linkc_name\":\"\",\"linkd_name\":\"\",\"linke_name\":\"\",\"contact_icons\":\"0\",\"icon_address\":\"\",\"icon_email\":\"\",\"icon_telephone\":\"\",\"icon_mobile\":\"\",\"icon_fax\":\"\",\"icon_misc\":\"\",\"show_headings\":\"1\",\"show_position_headings\":\"1\",\"show_email_headings\":\"0\",\"show_telephone_headings\":\"1\",\"show_mobile_headings\":\"0\",\"show_fax_headings\":\"0\",\"allow_vcard_headings\":\"0\",\"show_suburb_headings\":\"1\",\"show_state_headings\":\"1\",\"show_country_headings\":\"1\",\"show_email_form\":\"0\",\"show_email_copy\":\"1\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"1\",\"custom_reply\":\"0\",\"redirect\":\"\",\"show_category_crumb\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}' WHERE name = 'com_contact' AND type = 'component';
UPDATE jos_extensions SET params = '{\"allowUserRegistration\":\"0\",\"new_usertype\":\"2\",\"useractivation\":\"1\",\"frontend_userparams\":\"1\",\"mailSubjectPrefix\":\"\",\"mailBodySuffix\":\"\"}' WHERE name = 'com_users' AND type = 'component';
ganti jos_extensions dengan nama table extensions user.