Saturday, 8 October 2016

The Best Way to Adding Home Page



Adding a link to home.
<a href="<?php echo esc_url( home_url( '/' ) ); ?>">Home</a>
<link rel="stylesheet" href="<?php echo esc_url( home_url( '/' ) ); ?>wp-content/themes/rica/css/grid.css">
};

Friday, 27 November 2015

PHP ebook by w3cschool

http://www.mediafire.com/download/kk9k9o2lx3t1d11/PHP+Introduction.pdf

Monday, 21 September 2015

If you want to access your magento URL without index.php

If you want to access your magento URL without index.php
For example:

http://domain.com/index.php/category
to

http://domain.com/category
then use the following steps
1) Login to admin section by using the URL

http://domain.com/index.php/admin
2) then go to “System >>  Configuration >>Web >> Search Engines Optimization”

Use Web Server Rewrites : YES
3) Go to “System >>  Configuration >>Web >>Secure”

Use secure URL Frontend: YES
4)Then create the .htaccess file under your the magento installed folder. If the magento installed under document root (/home/username/public_html) then add follogig rules into .htaccess file

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
and If the magento installed under /shop or directory then add the following rules into ” /home/username/public_html/shop/.htaccess ” file.

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /shop/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /shop/index.php [L]
</IfModule>

Friday, 17 October 2014

How to update Nokia XL and Nokia X Mobiles


It will work 100%
Step-1. downlaod update, after downloding 100% do not restart and update your phone, first go to Android -->>data-->>com.nokia.update-->>files
Copy Files folder into memory card.

Step-2. Turn off your #nokiaXL or #nokiaX mobile and again while turning on your mobile you will get a nokia logo on the screen at that time press and hold the volume up button for 10 seconds then you will be getting a recovery window from there you have to select apply update from the external storage option by using power button. *Selection can be done using the power button.

Step-3. After selecting that you have to select the Android -->>data-->>com.nokia.update-->>files-->>update.Inside update folder you will see the 1.2.3.1 update file which you have downloaded and then select the 2nd file by using the power button and the update will start installing like normal.

Step-4. After completed all process reboot your system then your device will get updated.
Posted By- AnujSingh