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

19 Temmuz 2014 Cumartesi

Diski FAT formatlama

open command prompt ( start > all programs > accesories > command promt. or start > run > cmd)
type:

format x: /q /fs:FAT

15 Temmuz 2014 Salı

Google Chrome - Running from a Custom Location

To do this, add the --user-data-dir flag to chrome.exe, like this: chrome.exe --user-data-dir=c:\foo

28 Haziran 2014 Cumartesi

ClientEngage Dil Eklemek

Can I translate the ClientEngage Project Platform into my own language?
Yes you can: Translating the ClientEngage Project Platform into other languages (currently the system features British English, American English and German) is easily possible by following these steps:
1. Duplicate the directory “app/Locale/en_gb” and rename it to “app/Locale/dan” (e.g. “dan” for a Danish translation)
2. Open the files within “app/Locale/dan/LC_MESSAGES” with Poedit ( www.poedit.net ) and translate all strings to your own language
3. Open the file “app/Lib/GlobalClasses.php” and look for “AppLanguages” around line 189. Duplicate one of the items in the array and change the key to your language code, and the value to the display-name of your language
4. Simply go to your configuration-section, select the new language and you are ready to go after saving your changes