Pages

Friday, 24 May 2013

learn php coding



Computer Programming is very easy to learn”.  At first you will have to set this sentence in your mind. Then you will be able to be a best Programmer.
Everyone wants to know about Computer Programming but easily, they don’t want to spend time and brain. Even they don’t want to READ Articles. So, how they will learn?
I have planned to make easy for those lazy peoples. If they follow my guides and online instructions it will be easy for them to fulfill their dreams.
Any way, we will start now.
                    We are going to learn PHP and Mysql.
PHP is for coding and MYSQL is for database.

PHP:
          What is php? At first it was told Personal Home Page, but now it is told Hypertext Preprocessor.
You can run php in your computer by installing some software. I will guide you how to use WAMP.

Monday, 13 May 2013

Introduction with wordpress

Wordpress is the most used CMS for online applications. It is best blogger engine.

introduction with joomla cms

Joomla is a most used CMS(Content Management System) in php.
You can use joomla for any type of php application.

Wednesday, 8 May 2013

how redirect by .htaccess with a link of space %20

Redirect by .htaccess is easy for a server.
If you want to redirect a link then put the .htaccess file in root folder of the server.
Then put the following of code in .htaccess file.

Redirect 301 old_link.html  new_link.html

the above is normal rule. but if you have space in the old link (not _ ) then it makes problem.

then add the following code after RewriteEngine On

RewriteRule ^/?tag/(.*)\ (.*)$ /tag/$1-$2   [L,R=301]

then put the redirect condition suppose:

Redirect 301 '/codebooks/Malawi Geocoded Aid Codebook.pdf' http://aiddata.org/weceem_uploads/_ROOT/File/geocoding/UCDP_AidData_Codebook_Published.pdf

the Malawi Geocoded Aid Codebook.pdf is in single cote and this link has %20 or space

it was :  /Malawi%20Geocoded%20Aid%20Codebook.pdf 


i have become success by following above rule.





Friday, 3 May 2013

how on allow_url_fope in server

Some times you need to on allow_url_fopen in server. then you can try by the following two ways:

      1.   Create a .htaccess file and keep it to root folder ( sometimes it may need to place it one step back folder of the root) and paste this code there.
php_value allow_url_fopen On

     2.   Create a php.ini file (for update srver php5.ini) and keep it to root folder( sometimes it may need to place it one step back folder of the root) and paste the following code there

           allow_url_fopen = On;

I, personally get effet by using the above solutions.