Category: Other
-
Log in to sync Facebook with your other applications
Following message regularly appears in Samsung Galaxy Notifications: FacebookLog in to sync Facebook with your other applications When you tap on the message it opens a page with Facebook logo asking you to login into Facebook or create a new account. This is rather misleading as this message and page has nothing to do with…
-
An application has been forced to stop for an unauthorized attempt
Samsung Galaxy Note 3 with Android 4.3. Occasionally following message appears in Notifications: Prevention informationAn application has been forced to stop for an unauthorized attempt to access system in your device. It may be safe to delete an application obtained from an unauthorized route
-
Installing MAC OS X 10.9 Maverick on a PC for triple boot with Windows
Hardware: Motherboard: Gigabyte Z87X-UD3H Audio: Realtek ALC899 Video: Intel HD 4600 (will not be used) Ethernet: Intel I217V Graphics: Asus Nvidia GeForce GTX660 TI 2 x 128GB Crucial M4 SSD drives 1 x 2TB WD mechanical HDD CH-528T media dashboard (image below) Software: Windows 8.1 installed on 128GB SSD Windows 7 installed on 2TB…
-
iPhone – very high data usage (email stuck in outbox)
A user managed to hit O2 1GB data usage limit on iPhone 5 in two days! He was normally using under 100MB per month and could swear that he hadn’t done anything unusual in these 2 days. After checking that backups and updates over cellular were disabled and there were no suspicious apps running, I…
-
Configure your own router for BT Infinity
With BT Infinity service you normally have two devices provided by BT: OpenReach VDSL modem and BT Home Hub Wireless Router.
-
SSH into DD-WRT router remotely
To connect to a router running DD-WRT firmware perform following: Login into router’s web GUI as administrator Go to Services > Services and “Enable” SSHd under Secure Shell Go to Administration > Management and “Enable” SSH Management under Remote Access Connect to router’s IP address using your favourite SSH client (i.e. PUTTY) using username: root…
-
Password protect Joomla administrator directory
One of the ways to increase your Joomla site security is password protect administrator directory. If you use third party hosting provider which offers cPanel site administration, you can easily protect your administrator directory using built-in cPanel Password Protect Directories option. If cPanel is not an option or you host your site yourself, you can use .htaccess…
-
Check your Joomla site for vulnerabilities
OWASP Joomla! Security Scanner is a great security tool to check your Joomla! website for known vulnerabilities and other security issues and be one step ahead of hackers. This tool uses Perl so you need to have it installed on your machine. Most of Linux distributions have it preinstalled. Download Joomscan from sourceforge.net (recommended for latest version) or here. Extract files…
-
Replace directory using mod_rewrite redirect in .htaccess
Following rule will replace old-directory with new-directory in your website’s URL. Add this to .htaccess file. Options +FollowSymLinksRewriteEngine OnRewriteRule ^old-directory(.*)$ http://www.yourdomain.com/new-directory$1 [l,r=301,nc] Syntax: rewriterule – defines rewrite rule^ – start matching(.*) – match and remember everything$ – end matching$1 – append original URL part captured in (.*)l – last rule (only omit in linked rules)r=301…
-
iPhone stuck on Apple logo
iPhone stuck in an infinite reboot cycle: starts, gets to the screen with Apple logo and spinning circle, then after a few minutes reboots again. Phone was fixed by putting it into a recovery mode and doing a restore via iTunes. Be aware that this resets the phone to factory defaults which deletes all apps…
-
Add www to all URL’s on Apach website (.htaccess mod_rewrite)
Following rewrite rule will add www to all URL’s on your website in case a visitor didn’t type www or followed a link without www. Add this to your .htaccess file: Options +FollowSymLinksRewriteEngine Onrewritecond %{HTTP_HOST} ^yourdomain.com$ [nc]rewriterule ^(.*)$ http://www.yourdomain.com/$1 [l,r=301,nc]
-
Gmail email flagging gone in iOS 6
After upgrading iPhone 4S to iOS 6 noticed that there is no more Flag email option in Gmail account. The only option is Mark as Unread. Gmail account was set up as Exchange rather than default IMAP account. After checking account settings I found that there is nothing in Domain field. Adding google as a domain…