- First of all, search all UNREAD email in your gmail account by enter the “l:unread” or “l:^u“ in Search box like this:
Download Java API from here. Extract the zip file in your local directory. From ecliplse –> Window –> Preferences –> Java –> “Installed JREs” select available JRE (jre6 C:Program Files (x86)Javajre6 for instance) and click Edit. Select all the “JRE System libraries” using Shift key. Click “Javadoc Location” Change “Javadoc location path:” from “http://download.oracle.com/javase/7/docs/api/” to […]
Here is detail of the error : Counting objects: 8, done. Delta compression using 2 threads. Compressing objects: 100% (4/4), done. Writing objects: 100% (5/5), 1.37 KiB, done. Total 5 (delta 2), reused 0 (delta 0) error: insufficient permission for adding an object to repository database ./objects fatal: failed to write object error: unpack-objects exited […]
Full detail of the error you may encounter when you try to run Xampp in the computer that have VMWare installed: Port 443 in use by “”C:Program Files (x86)VMwareVMware Workstationvmware-hostd.exe” -u “C:ProgramDataVMwarehostdconfig.xml”” with PID 2612! Apache WILL NOT start without the configured ports free! You need to uninstall/disable/reconfigure the blocking application or reconfigure Apache and the […]
/bin (and /sbin) were intended for programs that needed to be on a small / partition before the larger /usr, etc. partitions were mounted. These days, it mostly serves as a standard location for key programs like /bin/sh, although the original intent may still be relevant for e.g. installations on small embedded devices. /sbin, as […]
This installation are full and complete installation for latest release of ffmpeg/mplayer/x264 and other module on 28-12-2009 and tested working on Centos 5.3 x86_64 or rhel server, below installation work for major media script.
Edit the /etc/ld.so.conf file and add the following lines
Make sure you accomplised complete installation of XAMPP, If not, please visit this tutorial (Windows | Linux | Mac OSX).
Open /opt/lampp/lampp restart/httpd-xampp.conf in an editor. Then, look for <LocationMatch> </LocationMatch>
, comment the “Deny from all” statement.
<LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))">
Order deny,allow
#Deny from all
Allow from ::1 127.0.0.0/8
fc00::/7 10.0.0.0/8 172.16.0.0/12 192.168.0.0/16
fe80::/10 169.254.0.0/16
ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</LocationMatch>
Reset Xampp with /opt/lampp/lampp restart
For Ubuntu: Create a script in init.d called lampp sudo gedit /etc/init.d/lampp Paste this code on the script and save #!/bin/bash /opt/lampp/lampp start Give -x permissions to the file sudo chmod +x /etc/init.d/lampp Use update-rc.d to install init scripts to all runlevel by typing sudo update-rc.d lampp defaults For CentOS: Open /etc/rc.local using command vi […]
First turn on your computer and access to BIOS immediately . If you don’t know how, please visit this article. After you get in BIOS, open Advanced tab > Restore on AC/Power Loss. Make sure that its value is “Power On“ Finally, Save & exit. If you like to give it a test, unplug your computer […]
Asus notebook, desktop, and laptop
- Press F2 immediately after powering on.
Acer – Aspire, Power, Veriton, Extensa, Ferrari, TravelMate, Altos
- Press Del or F2 immediately after powering on.
- The BIOS on the Acer Altos 600 server uses the Ctrl+Alt+Esc key and the F1 key for advanced options.
- Older Acer computers may use also use the F1 or Ctrl+Alt+Esc keys to access BIOS.
Compaq – Presario, Prolinea, Deskpro, Systempro, Portable
- Press F10 while the cursor in the top right corner of the screen is blinking.
- Older Compaq computers may use the F1, F2, F10, or Del key to give access to BIOS.
First of all, you have to make sure that rpmforge repo installed. If not, here is how :
Open the terminal, and enter the following commannds :
-
wget http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm
-
chmod +x rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm
-
rpm -Uvh rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm
Now you have rpmforge repo installed. Then you start install NTFS driver for CentOS by usinig the following command:
- yum install fuse fuse-ntfs-3g
- Try this if your rpmforge repo is disabled by default: yum –enablerepo=rpmforge install fuse fuse-ntfs-3g
After this, you are able to plug any NTFS USB or device to your CENTOS. Enjoy !!!
Here is the Regex rule that matches any text surround by double quote “(?>(?:[^”]+|””)*)” Regex rule that match any <div> tag: <div[^>]*> Match any empty space (For Eclipse) ^s*n Match a html tag with atributes <tag name[^>]*?(/?)> ex: <table[^>]*?(/?)>, or <td[^>]*?(/?)>
Click Start then search Run application or Press Windows key + R, Type regedit and press Enter. This will open the Registry Editor of Windows. In the registry, expand HKEY_CURRENT_USER > Control Panel > Keyboard.In the Keyboard folder, Change “InitialKeyboardIndicators” with the below values base your need: 0 => Num Lock is turned OFF after the logon. 1 => […]
Here is how to get auto-complete working in Eclipse PDT with the new version. Especially since it is different from the last way I did it. This works in BOTH controllers and Models. This unfortunately does not automatically include CUSTOM libraries, controllers, or models… but it does take care of all the CORE classes built into Codeigniter. Please follow the following steps:
- First of all make sure you have the following applications installed in your computer:
- Extract the CodeIgniter from zip file, and name it with “***_BASE”
- Open Eclipse, then create a new PHP project, and setup the new project like the follwing screenshot: Continue reading
OS X Mavericks (version 10.9) is the latest release of OS X, Apple Inc.’s desktop and serveroperating system for Mac computers. OS X Mavericks was announced on June 10, 2013, at WWDC 2013, and was available for upgrading for free through the Mac App Store on October 22, 2013 Please visit here to see the […]
Here is command line that check current version of Mac OSX Sever: Full: sw_vers Only product version: sw_vers | grep ‘ProductVersion:’ Just version number: sw_vers | grep ‘ProductVersion:’ | grep -o ‘[0-9]*.[0-9]*.[0-9]*’