Posts

IPhone Applications look better than Android

When the Facebook iPhone app was benchmarked with the Android operating system app about a year ago, a quick evaluation initially was deduced that even organizations with massive development teams such as Facebook or MySpace did not create an Android operating system app that was anywhere close to the iPhone comparative. At the moment there was nothing that was better than the iPhone app, the android Symbols look old, not properly scaled and the colours were not reliable with the Facebook or MySpace website or Android operating system design, search required two clicks instead of one as for iOS and in getting notifications , hyperlinks started pop out up the web browser. Ever since then the reason why there is still much difference is because Apple is so brilliant in terms of design and strong user interface IPhone is expected to look better than android initially because The iPhone SDK was originally designed with one main thing in mind; Total Control of the user experience by The app...

Battery Saver Apps for Android Phones

Image
Do you want to find a solution for saving battery of your Android phone? Looking for a perfect solution? I also wanted to find the solution for the same.So,I searched for the battery saver apps for android phones and I found many solutions, but among them the best that I liked are given below. These are the apps that saves your battery by intelligently and extends your battery life. JuiceDefender – Battery Saver It is a powerful and easy to use power manager app that also extends the battery life of your android device. Battery Defender – Battery Saver It is very easy to use. A battery saver app that extends your battery life. Easy Battery Saver It is a powerful and easy to use power manager app that saves your battery by intelligently and extends your battery life. One Touch Battery Saver It provides “power saving” mode to activate the mode if the power is insufficient in your device. Battery Dr saver + a task killer It will improve and max your battery life. GreenPower Battery Saver ...

Apache X-Forward-For settings for behinding reverse proxy

Add following settings into your httpd.conf or the configuration file in sites-available that linked to sites-enabled. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" proxy  SetEnvIf X-Forwarded-For "^.*\..*\..*\..*" forwarded  CustomLog "logs/access_log" combined env=!forwarded CustomLog "logs/access_log" proxy env=forwarded After saving the settings, restart your httpd and you should see the real client IP in access log.

How to Customize Google Maps in Joomla

The process you are going to view below will walk you through how to add Google Maps into your Joomla powered site with ease and simplicity, providing guidelines and on how to handle the implementation of the plug-in on your website by yourself. Google maps are provided directions to your place of business or to an event you may be promoting is common practice. Adding a highly configurable Google Map to your website is just like taking your webpage or your business one step further, allowing people to get directions and see exactly where you are on their mobile device and PC with ease at anytime, from anywhere in the world. We're going to use a plug-in called 'Plug-in Google maps'. Here's how you do it: Plug-in Google maps from the Joomla code site. It’s a long list but you can use the very first file. In the administration area of your Joomla site, go to Extensions >> Install / Uninstall and upload the file to install. Sign up for a free Google Maps API Key. It’s...

Practical PHP Tutorial - Home Page

Chapter 3 Home Page, first page. Here is the plan: A column in left side content comprising Logo and Navigation List A right side container that has the page's main content A footer that has immediate links We are going to use Table Layout to achieve this. You can use relative, fluid or other layouts if you want. But for following the tutorial we are doing table layout. Lets start with the basic html syntax. <!doctype html> <html> <head> <meta charset="utf-8"> <title>My Trading Center</title> <link href="/styles/style.css" rel="stylesheet" type="text/css"> <script src="/scripts/jquery.js" type="text/javascript"></script> <script src="/scripts/script.js" type="text/javascript"></script> </head> <body> </body> </html> I hope you understand this syntax. Again, if you are not familiar with h...

Practical PHP Tutorial - Project Layout

Chapter 2 As I said in the introduction, we are going to develop a simulation of a online stock trading system. A very good project that helps us to cover every aspect of php. PROJECT FOLDERS Create a folder in you root directory named OnlineStock or anything you like. This is going to be our project folder. From now on I will refer this folder as root folder. Create the following folders in the OnlineStock folder. Also create respective files in the OnlineStock/ scripts/ script.js jquery.js styles/ styles.css images/ common/ index.php Note: All the folder names are recommended to be in lowercase only. This will ensure that users will not have difficulty in typing the url, as the php servers are really case sensitive. Scripts Folder will contain all the javascript files. The scripts file is created by you. You have to download the jquery.js javascript library. Please download the latest module from here . Styles Folder will contain all the css files. Images Folder accommodates the i...

Practical PHP Tutorial - Configuration

Image
Chapter 1 Editors Text editors for php can be as simple as notepad and as sophisticated as Dreamweaver. Its you wish. But I prefer to use  webmatrix  by Microsoft or  SublimeText . These are really simple to configure and you. Or you can use  Notepad++ . The latter is simply a syntax highlighter. Servers Configuring server is a process needed for running php. Php is server side language. We can use following servers that provide facilities to host php and render them. XAMPP for Windows/Linux/Mac XAMPP is a popular server, supports all platforms, that packages all that we require PHP binaries -latest xampp has latest php binaries. phpMyAdmin - that is used to manage the tables and databases in MySQL MySQL - contains our databases FileZilla - and FTP manager that required to upload file to server(not this local server, but to your domain). Every prefers it as has everything in it by default. You can download it  here . WAMP Server It is a sub package of xampp, but...