30 Aralık 2014 Salı

Lock Chrome when you step away from your computer

To protect your data and block access to Chrome when you get up from your computer, you can turn to one of Chrome's experimental features that lets you lock the browser. It also lets you manage multiple accounts and provides guest access.

To access this feature, follow this simple, four-step process:
1. Head to chrome://flags
2. Search for "Enable new profile management system"
3. Click the Enable link
4. Click the Relaunch Now button at the bottom of Chrome

When Chrome restarts, you'll see a button in the upper-right corner labeled "First user." Click on it to reveal a small panel where you can log into your account(s). You can also rename this profile and choose a profile image. You can also create additional user profiles, each of which can support multiple accounts.

21 Aralık 2014 Pazar

How to Backup Your Evernote Notebooks

Windows: C:\Users\[Your Username]\AppData\Local\Evernote\Evernote\Databases
OS X: /Users/[Your Username]/Library/Application Support/Evernote

3 Aralık 2014 Çarşamba

Vtiger crm 6 module=Users&action=SystemSetupSave


I working with the installation vtiger crm 6 in a server with PHP 5.2.7,on each time when i login the url is stuck with this page module=Users&action=SystemSetupSave.
  
I was facing same problem and this was due to some header path which need to change .
open login.php file under

vtigerCRM\modules\Users\actions

now

about 48 line in the code
find
header ('Location: index.php?module=Users&parent=Settings&view=SystemSetup');


change this line to

header ('Location: index.php?module=Home&view=DashBoard'); and upload this at your server.
the problem will resolved

23 Kasım 2014 Pazar

Dosya Yönetim Yazılımları

http://www.projectsend.org/
http://www.opendocman.com/
http://www.nilambar.net/2012/10/best-free-web-based-file-management-scripts-in-php.html

7 Ağustos 2014 Perşembe

Opencart Currency

open: system/library/currency.php

Find:
CODE: SELECT ALL
$this->set($this->config->get('config_currency'));


Replace With:
CODE: SELECT ALL
//$this->set($this->config->get('config_currency'));
$this->set('GBP');

29 Temmuz 2014 Salı

Raspberry PI - EXT4

To mount a USB drive:
sudo mkdir /mnt/usbdrive
sudo mount /dev/sda1 /mnt/usbdrive
ls /mnt/usbdrive

To list your file systems:
sudo fdisk -l
sudo mount -l
df -h

Before disconnecting a USB drive:
sudo umount /dev/sda1

Format a drive to Linux EXT4
sudo mkfs.ext4 /dev/sda1 -L untitled

Add Apple OS X HFS+ read/write support
sudo apt-get install hfsutils hfsprogs hfsutils

Format a drive to HFS+
sudo mkfs.hfsplus /dev/sda1 -v untitled

Add Windows NTFS read/write support
sudo apt-get install ntfs-3g

Format a drive to NTFS
sudo mkfs.ntfs /dev/sda1 -f -v -I -L untitled

Add Windows/DOS FAT32 read/write support
sudo apt-get install dosfstools

Format a drive to FAT32
sudo mkfs.vfat /dev/sda1 -n untitled

Raspberry PI - Gparted

If you are running raspian you can install it by means of
sudo apt-get install gparted
but if you are running ArchLinux ARm the command is
sudo pacman -S gparted
You can start it with
xhost +
sudo gparted