How to install WordPress manually ?

0

Step 1: Download the installation file from the WordPress download section by clicking on “Download.zip” or “Download.tar.gz”. This way you will get the latest stable release of the script.

Step 2: Upload it in public_html folder of your account. You can do that via FTP with a client like Filezilla or via cPanel ->File Manager -> Upload file(s). This way, after the installation is completed, the file script will appear once you visit your website.

Another option is to create a subfolder in your More >

1

Installing WordPress in CPanel

0

So, we start by going to our cpanel :

http://yoursitename/cpanel

and scrolling down page until you see this :

Click on Fantastico and you look on left for this :

And just click and fill in blanks and it will auto install, no files to upload, no sql’s to make, its all automated and installed.Go to your site page and log in.

Any questions about it ? Leave us Comment and we will try to help you !

What can PHP do?

0

Anything. PHP is mainly focused on server-side scripting, so you can do anything any other CGI program can do, such as collect form data, generate dynamic page content, or send and receive cookies. But PHP can do much more.

There are three main areas where PHP scripts are used.

  • Server-side scripting. This is the most traditional and main target field for PHP. You need three things to make this work. The PHP parser (CGI or server module), a web server and a web browser. You need to run the web More >
  • What is PHP?

    0

    PHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML.

    Nice, but what does that mean? An example:

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Example</title> </head> <body>

    <?php echo "Hi, I'm a PHP script!"; ?>

    More >

    CSS Links

    0

    Links can be styled in different ways.

    Styling Links

    Links can be styled with any CSS property (e.g. color, font-family, background, etc.).

    Special for links are that they can be styled differently depending on what state they are in.

    The four links states are:

  • a:link – a normal, unvisited link
  • a:visited – a link the user has visited
  • a:hover – a link when the user mouses over it
  • a:active – a link the moment it is clicked
  • a:link {color:#FF0000;} /* unvisited link */ a:visited More >

    CSS Text

    0

    Text Color

    The color property is used to set the color of the text.

    With CSS, a color is most often specified by:

  • a HEX value – like "#ff0000"
  • an RGB value – like "rgb(255,0,0)"
  • a color name – like "red"
  • The default color for a page is defined in the body selector.

    body {color:blue;} h1 {color:#00ff00;} h2 {color:rgb(255,0,0);}

    Text Alignment

    The text-align property is used to set the horizontal alignment of a text.

    Text can be centered, or aligned to the left or right, or justified.

    When More >

    Go to Top