Author: Vigas Deep
-
The New Schedule
Okay, Hi there ! I’ve been writing a after a long time. Its 16:20, and this is 2 Oct, 2012. I started a new schedule, I woke up 5 in the morning and Studied Engineering Mathematics because I have to clear that in this semester ( Its a previous Backlog, and I am not afraid…
-
Broadcom wireless problem : SOLVED
Most of Broadcom chips in laptop give problems in connecting to wireless signals, so here is the tested easy fix: # apt-get remove bcmwl-kernel-source You may get it working 🙂 Reboot.
-
WordPress : Website for logged in users only
If you want to hide your wordpress website, so that, only logged in users may access it. So, here’s the quick fix. append following code into your wp-blog-header.php file right below wp(); //****************************************************// /////////////////////////// Require login to view website get_currentuserinfo(); global $user_ID; if ($user_ID == ”) { header(‘Location: wp-login.php’); } ////////////////////////// Require login to view…