Posts

Tools untuk internet marketer GRATISS

Image
Tools untuk internet marketer GRATISS  + 1 yang berbayar (di akhir thread) ​ Blogging/ Menulis ZenPen:  Tools minimalis untuk nulis, biar tetep konsen.  zenpen.io Liberio:  Buat eBook dengan mudah bisa publish dari Google Drive.  liber.io Grammarly:  Menemukan dan memperbaiki kesalahan tulisanmu.  grammarly.com Social Locker:  Minta pengunjung blog "untuk bayar" dengan tweet, dll untuk melihat konten blog.  wordpress.org/plugins/social-locker Wattpad:  Komunitas Penulis dan Pembaca terbesar di dunia.  wattpad.com/signup Free Summarizer:  Menyimpulkan teks online dengan cepat.  freesummarizer.com Menemukan Trend / Ide Konten Buzzsumo:  Menganalisa konten terbaik untuk semua topik.  buzzsumo.com Ruzzit:  Menemukan konten yang paling banyak di share di website.  Ruzzit.com Google Trends:  Semua udah tau ini.  google.com/trends/hottrends/visualize?pn=p1 Google+ What's Hot / Twitter Trending / Qu...

Odoo 8 dan OpenERP 7 - Windows all in one: can't install postgreSQL after desinstalled it

Bingung beberapa kali instal ulang odoo tapi koq postgresql nya ga mau ikut di instal. Eh ternyata penyakitnya postgresql bekas instal yang dulu walaupun udah di uninstal tapi masih ada di regedit. Solusinya hapus folder postgresql di regedit Berikut penjelasannya via launchpad: https://bugs.launchpad.net/openobject-server/+bug/1115119 Bug Description Install OpenERP7.0 with the windows all in one installer (download and install). Then unstall all installed programs (postgresql, server). Try to reinstall, the custom install do not allow you to check the posgresql anymore while you desintalled it Technical note: after investigation it seems that the PostgreSQL 9.x uninstaller does not cleanup the registry keys in the same fashion as the 8.3 did, and the following keys remain after a complete uninstall:  - HKLM\Software\PostgreSQL   `+- HKLM\Software\PostgreSQL\Installations   `+- HKLM\Software\PostgreSQL\Services Currently our installer just checks for the presence ...

Joomla CRASH, help... Hehe

Barusan teman saya bro Afit BBM saya kalo webnya crashh... dan muncul pesan eror: jtablesession::Store Failed DB function failed with error number 145 Table './xxx/xxx_session' is marked as crashed and should be repaired SQL=INSERT INTO `xxx_session` ( `session_id`,`time`,`username`,`gid`,`guest`,`client_id` ) VALUES ( '00d3a635df1af836f7726ebbfa0edaf4','1424402489','','0','1','0' ) Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 76 bytes) in /home/xxx/public_html/xxx/libraries/joomla/error/exception.php on line 117 Waduh, saya bingung donk.. Saya kontak aja orang server dan ternyata dia juga bingung :D Akhirnya saya coba googling dan nemu: https://www.ostraining.com/support-forum/joomla-support/crash-help/ Berikut saya tulis ulang postingannya, cekidot QUEST.: Worked on this site (mduphoff.com is the domain) this morning...got called away from my desk before I finished working on it...

Mengirimkan email dari localhost WAMP server

Image
How To Sent Emails From localhost/Wamp Server [Tutorial]

Prestashop blank BO and FO because of Rijndael.php

Artikel ini saya dapatkan ketika mendapatkan web prestashop saya blank back office dan front office setelah migrasi ke server baru berikut kutipannya. Hello Prestashopper. Sometimes when you try to move your prestashop website from one hosting to a new hosting, or when you migrate your database to an existing website database, it may cause a Blank Back-Office and blank Front-Office !!! this is somehow confusing, but we can fix it as follows : 1- Open your site's file manager, and open config/config.inc.php 2- Search for @ini_set('display_errors', 'off') and change 'off' to 'on'. 3- Now refresh your Front Office, if you find the following error :        Fatal error : Call to undefined function mcrypt_decrypt() in .................... Rijndael.php 4- Open your database using any database management system ( e.g phpmyadmin ). 5- Search for "  PS_CIPHER_ALGORITHM " in "  ps_configuration " table. 6- click on Edit, and change its val...

[SOLVED] Spamming Wordpress Plugin jaqqscigs@gmail.com

Saya cukup kesal sekali saat mendapati bahwa web saya disuspend oleh hosting saya karena spamming pada salah satu web saya. Berikut capture header spamming yang dikirimkan oleh hosting saya: Total Email : 261 contoh header email : Received: from ayam.n.masterweb.com ([49.50.80.10] helo= xxxxxxx .masterweb.net) by mxserver3.masterweb.com with esmtps (TLSv1:DHE-RSA-AES256-SHA:256) (Exim 4.82) (envelope-from < xxxxxxx @ xxxxxxx .masterweb.net>) id 1W6E5J-0003az-Nv for jaqqscigs@gmail.com; Thu, 23 Jan 2014 13:48:28 +0700 Received: from xxxxxxx by  xxxxxxx .masterweb.net with local (Exim 4.82) (envelope-from < xxxxxxx @ xxxxxxx .masterweb.net>) id 1W6E57-0000Jy-RS for jaqqscigs@gmail.com; Thu, 23 Jan 2014 06:48:06 +0000 To: jaqqscigs@gmail.com Subject: Wordpress Plugin Date: Thu, 23 Jan 2014 06:48:05 +0000 From: WordPress xxxxxxx .co.id> xxxxxxx X-Priority: 3 X-Mailer: PHPMailer 5.2.4 (http://code.google.com/a/apache-extras.org/p/phpmailer/) MIME-V...

Merubah Logo dan Background Login Wordpress.org

Image
Seperti tertulis pada judul, berikut akan saya jelaskan cara merubah logo dan background pada halaman login wordpress.org Creating your own custom wordpress login page is a lot easier than you may think. First you will need to open the functions.php file for the theme you are going to be using. This should be located at ~/public_html/wp-content/themes/ yourtheme /functions.php Replace  yourtheme  with the theme you will be using. Example Preview You will need to add the following lines of code to the bottom of your functions.php file: Full Code add_action ( "login_head" , "login_mod" ) ; function login_mod ( ) { echo " " ; } add_filter ( 'login_headerurl' , create_function ( false , "return 'http://smyl.es';" ) ) ; Breakdown Hook the Function First we will use add_action ( WordPress Codex ) to create the hook for  login_head  to our function we named  login_mod . add_action (...