Posts

Showing posts from October, 2018

MYTV transmitter list

Image
  If anybody know where can get this list, put in comment below. Thanks. Credit: http://mytvdvb-t2.blogspot.com/2017/01/cara-cara-untuk-cari-dan-simpan-signal.html

Remove some context menu

Use Winaero Tweaker For iDrive and MEGASync, edit registry, go to Computer\HKEY_CLASSES_ROOT\Directory\shellex\ContextMenuHandlers\Offline Files and remove it from there. Credit: https://www.howtogeek.com/howto/windows-vista/how-to-clean-up-your-messy-windows-context-menu

Yii2: Authentication with Google and Facebook

Image
This is continuation from https://takdekeje.kuceng.my/2018/08/yii2-validate-email-after-registration.html . Objective: Register and login with Google and Facebook account. Link existing account with Google and Facebook. Unlink  existing account from Google and Facebook. You may truncate both tables to start fresh. Part 1: Initial setup Install  AuthClient Extension . composer require "yiisoft/yii2-authclient:*" Create new migration to update DB yii migrate/create authclient Edit the migration file: <?php use yii\db\Migration; /** * Class m180926_083206_auth */ class m180926_083206_auth extends Migration { /** * {@inheritdoc} */ public function safeUp() { } /** * {@inheritdoc} */ public function safeDown() { echo "m180926_083206_auth cannot be reverted.\n"; return false; } // Use up()/down() to run migration code without a t...