In Feburary 2016 27,
Download FTP client software. FileZilla, Sherrod FTP Client and Starksoft Free FTP are three widely used applications that you can download and install for free. They all work in a similar way.
Double-click the icon of the file you downloaded in the previous step. Follow the on-screen prompts to configure the software, and install it on your computer.
Open your newly installed FTP client.
Enter your server address, user name and password in the appropriate fields at the top of the FTP client screen. Leave the 'Port' field blank unless your server's configuration specifically requires otherwise.
Press the 'Connect' or 'Quickconnect' button to connect to the server.
Double-click the folder containing your website files. This folder will most likely have one of three names: 'public_html,' 'wwwroot' or 'www.'
Right-click on the right-hand side of the FTP client screen, and select 'New Directory' or 'Create Directory.' Give the directory a name, and press the 'Enter' key. This creates a top-level directory for your website. Repeat the process to create more than one top-level directory.
Double-click a newly created folder to open it.
Right-click on the right-hand side of the FTP client screen, and select 'New Directory' or 'Create Directory' again, providing a directory name and pressing 'Enter.' This creates a sub-directory within the top-level folder. Repeat the process within each folder of your website until you have created your desired directory tree.
In Feburary 2016 27,
Showing posts with label step. Show all posts
Showing posts with label step. Show all posts
Saturday, 27 February 2016
Thursday, 18 February 2016
How to Add a Parked Domain on 11 HostingIn Feburary 2016 18,
In Feburary 2016 18,
Launch your Internet browser and visit the 1&1 Control Panel page. Log in using your 1&1 username and password (see Resources).
Click on the package you wish to add a parked domain to. If you only have one hosting package, ignore this step. The website will now take you to the hosting package administration page.
Click on 'Domains' under the Domains category. Then click on the 'New' button above the list of domains and select 'Add domain.'
Type the domain name you wish to add to your account in the 'Domain Name' field. Then click on the 'Check Domain' button. A new page will now load, telling you if the domain name is available for registration or not. If it isn't, click on 'Search Again,' choose a new domain name and repeat this step. If it is available, read the 'Terms and Conditions' and click on the check box. Then click on 'Next.'
Select either a 'Public' or 'Private' domain registration by clicking on one of the radio buttons. With a public registration, 1&1 will link your personal details to your domain name registration. With a private one, Internet users who perform a search on your domain name will not be able to access your personal details. Read the 'Terms and Conditions,' click on the check box and click on 'Next.'
Click on 'Order' to finalize the registration process. The Web host 1&1 will now add and park your domain.
In Feburary 2016 18,
Launch your Internet browser and visit the 1&1 Control Panel page. Log in using your 1&1 username and password (see Resources).
Click on the package you wish to add a parked domain to. If you only have one hosting package, ignore this step. The website will now take you to the hosting package administration page.
Click on 'Domains' under the Domains category. Then click on the 'New' button above the list of domains and select 'Add domain.'
Type the domain name you wish to add to your account in the 'Domain Name' field. Then click on the 'Check Domain' button. A new page will now load, telling you if the domain name is available for registration or not. If it isn't, click on 'Search Again,' choose a new domain name and repeat this step. If it is available, read the 'Terms and Conditions' and click on the check box. Then click on 'Next.'
Select either a 'Public' or 'Private' domain registration by clicking on one of the radio buttons. With a public registration, 1&1 will link your personal details to your domain name registration. With a private one, Internet users who perform a search on your domain name will not be able to access your personal details. Read the 'Terms and Conditions,' click on the check box and click on 'Next.'
Click on 'Order' to finalize the registration process. The Web host 1&1 will now add and park your domain.
In Feburary 2016 18,
Monday, 8 February 2016
Pitfalls in Relational Database DesignIn Feburary 2016 08,
In Feburary 2016 08,
Choosing names is an aspect of database design that is often neglected but can have a considerable impact on usability and future development. To avoid this, both table and column names should be chosen to be meaningful and to conform to the established conventions, ensuring that consistency is maintained throughout a system. A number of conventions can be used in relational database names, including the following two examples for a record storing a client name: 'client_name' and 'clientName.'
Lack of Documentation
Creating documentation for a relational database can be a vital step in safeguarding future development. There are different levels of documentation that can be created for databases, and some database management systems are able to generate the documentation automatically. For projects where formal documentation is not considered necessary, simply including comments within the SQL code can be helpful.
Failure to Normalize
Normalization is a technique for analyzing, and improving on, an initial database design. A variety of techniques are involved, including identifying features of a database design that may compromise data integrity, for example items of data that are stored in more than one place. Normalization identifies anomalies in a database design, and can preempt design features that will cause problems when data is queried, inserted or updated.
Lack of Testing
Failure to test a database design with a sample of real, or realistic, data can cause serious problems in a database system. Generally, relational database design is started from an abstract level, using modeling techniques to arrive at a design. The drawback to this process is that the design sometimes will not relate accurately to the actual data, which is why testing is so important.
Failure to Exploit SQL Facilities
SQL has many capabilities that can improve the usability and success of a database system. Facilities such as stored procedures and integrity checks are often not used in cases where they could greatly enhance the stability of a system. Developers often choose not to carry out these processes during the design stages of a project as they are not a necessity, but they can help to avoid problems at a later stage.
In Feburary 2016 08,
Choosing names is an aspect of database design that is often neglected but can have a considerable impact on usability and future development. To avoid this, both table and column names should be chosen to be meaningful and to conform to the established conventions, ensuring that consistency is maintained throughout a system. A number of conventions can be used in relational database names, including the following two examples for a record storing a client name: 'client_name' and 'clientName.'
Lack of Documentation
Creating documentation for a relational database can be a vital step in safeguarding future development. There are different levels of documentation that can be created for databases, and some database management systems are able to generate the documentation automatically. For projects where formal documentation is not considered necessary, simply including comments within the SQL code can be helpful.
Failure to Normalize
Normalization is a technique for analyzing, and improving on, an initial database design. A variety of techniques are involved, including identifying features of a database design that may compromise data integrity, for example items of data that are stored in more than one place. Normalization identifies anomalies in a database design, and can preempt design features that will cause problems when data is queried, inserted or updated.
Lack of Testing
Failure to test a database design with a sample of real, or realistic, data can cause serious problems in a database system. Generally, relational database design is started from an abstract level, using modeling techniques to arrive at a design. The drawback to this process is that the design sometimes will not relate accurately to the actual data, which is why testing is so important.
Failure to Exploit SQL Facilities
SQL has many capabilities that can improve the usability and success of a database system. Facilities such as stored procedures and integrity checks are often not used in cases where they could greatly enhance the stability of a system. Developers often choose not to carry out these processes during the design stages of a project as they are not a necessity, but they can help to avoid problems at a later stage.
In Feburary 2016 08,
Labels:
client,
client_name,
clientName,
created,
databases,
levels,
Management,
safeguarding,
step,
vital
Saturday, 6 February 2016
How to Find Backlinks to Your Site Using Yahoo Site ExplorerIn Feburary 2016 06,
In Feburary 2016 06,
The first thing you want to do is go to http://siteexplorer.search.yahoo.com/ (a clickable link is in the resources area at the bottom of the article)You can see a picture of the site to your left. Click on it and take a look to make sure you are at the right spot.
The next step you are going to do is to type in the URL or address of your site or page that you want to check. You will type that in the box between where it says Yahoo Site Explorer and Explore URL. Now click explore URL. You will get a list of results that look like the screen shot to your left. In this case I used eHow as the site to be explored.Remember to put in the entire address if you are trying to look up a specific page and not the entire website.
The next step is to click on the inlinks button to the right of the pages button in the results area. Then to the right of that in the drop down box where it says 'From All Pages', change that to Except from this domain'. Click on the screen shot to the left if you don't understand.
Now look below in the results area and you will see all of the backlinks to that page from outside the website. The number of links is next to where it says inlinks. The actual links are all listed below.
In Feburary 2016 06,
The first thing you want to do is go to http://siteexplorer.search.yahoo.com/ (a clickable link is in the resources area at the bottom of the article)You can see a picture of the site to your left. Click on it and take a look to make sure you are at the right spot.
The next step you are going to do is to type in the URL or address of your site or page that you want to check. You will type that in the box between where it says Yahoo Site Explorer and Explore URL. Now click explore URL. You will get a list of results that look like the screen shot to your left. In this case I used eHow as the site to be explored.Remember to put in the entire address if you are trying to look up a specific page and not the entire website.
The next step is to click on the inlinks button to the right of the pages button in the results area. Then to the right of that in the drop down box where it says 'From All Pages', change that to Except from this domain'. Click on the screen shot to the left if you don't understand.
Now look below in the results area and you will see all of the backlinks to that page from outside the website. The number of links is next to where it says inlinks. The actual links are all listed below.
In Feburary 2016 06,
Monday, 1 February 2016
How to Tell if MySQL Is 32In Feburary 2016 01,
In Feburary 2016 01,
Open a terminal or access the command line on the server your MySQL database is installed on.
Type 'which mysqld' to locate where the database is installed. The command line will return a path similar to '/bin/mysql.'
Type 'file ' into the command line and press 'Enter.' Replace '' with the installation path found in the previous step.
Examine the data returned by the system. If you have a 32-bit version of MySQL installed, the line will begin 'ELF 32-bit LSB executable.' If you have a 64-bit version of MySQL, the line will read 'ELF 64-bit LSB executable.'
Query the Database Version from Within MySQL
Run MySQL and use the MySQL query command line to determine the installation version.
Type 'SHOW GLOBAL VARIABLES LIKE 'version_compile_machine';' into the prompt and press 'Enter' to execute the query.
Examine the query results to determine the version of MySQL you are running. A 32-bit version will display 'i686' in the results next to 'version_compile_machine.' A 64-bit version will display 'x86_64' in the results next to 'version_compile_machine.'
In Feburary 2016 01,
Open a terminal or access the command line on the server your MySQL database is installed on.
Type 'which mysqld' to locate where the database is installed. The command line will return a path similar to '/bin/mysql.'
Type 'file ' into the command line and press 'Enter.' Replace '' with the installation path found in the previous step.
Examine the data returned by the system. If you have a 32-bit version of MySQL installed, the line will begin 'ELF 32-bit LSB executable.' If you have a 64-bit version of MySQL, the line will read 'ELF 64-bit LSB executable.'
Query the Database Version from Within MySQL
Run MySQL and use the MySQL query command line to determine the installation version.
Type 'SHOW GLOBAL VARIABLES LIKE 'version_compile_machine';' into the prompt and press 'Enter' to execute the query.
Examine the query results to determine the version of MySQL you are running. A 32-bit version will display 'i686' in the results next to 'version_compile_machine.' A 64-bit version will display 'x86_64' in the results next to 'version_compile_machine.'
In Feburary 2016 01,
Subscribe to:
Comments (Atom)