In Feburary 2016 21,
Secure server space to host your website and collect content you would like to be posted on your site. Now you are ready to transfer your files from your computer to the Web server space via FTP. Download Filezilla from the Web. Filezilla is a free FTP program which is downloaded onto your computer for use in connecting your computer files to your chosen server or Web host. The FTP upload of files to your website is often referred to as the 'back end' of Web design, as you are working 'behind the scenes', so to speak.
Once you have downloaded the Filezilla program, open it on your computer. Enter the required information for the transfer, including your website host's Web address, the port being used for the transfer, the server type, your Web address for the new site, and your account information -- including your password -- for the server. You may need to refer to your own records and/or make contact with your server for some of this information. Once you have entered this information into Filezilla, hit Enter, and it will connect you to the server which will host your site.
Fotolia.com'>
You will need the password for your server account when uploading files via FTP.
Once connected to your server's site via Filezilla, you will see your computer's files on the left side of the screen and the website files on the right side. Right-click a cursor over the file on the left you want to transfer, and then drag it over to the right side area of the screen where the server files are, then take your finger off the cursor. Name the file/page by entering the file or page name into the box that appears. Hit enter, and you now have a page visible to the public posted onto your website.
Fotolia.com'>
FTP transfers are done by dragging files with a mouse or cursor.
Name each page or file that you transfer via FTP with name patterns, lest you lose track of what is where within your Web directory shell. Too many files without organization makes an unmanageable site. I name all photo files in my website's directory with the prefix of 'photo' so I know it is a photo file. For instance, I would use photobeach.jpg instead of beach.jpg. Eventually, this will give you neat sections of your web directory with groupings such as photos, banners, videos and documents.
Fotolia.com'>
Photos are more managable in a website directory if labeled with a 'photo' prefix.
In Feburary 2016 21,
Showing posts with label speak. Show all posts
Showing posts with label speak. Show all posts
Sunday, 21 February 2016
Thursday, 11 February 2016
WebIn Feburary 2016 11,
In Feburary 2016 11,
Customer support agents working for Web-hosting companies help clients with a variety of concerns, including setup issues such as website migration, software settings and any other initial problems getting started. Support staff continue to help clients after setup, troubleshooting issues such as connectivity problems, data storage and security. Web-hosting support and sales staff speak with clients to provide solutions over the phone and when needed they communicate through virtual private servers that allow customer support agents to control the customer's computer. Web-hosting jobs that revolve around sales require the same expertise. Sales agents identify the needs of potential customers while linking them to services offered by a Web-hosting company.
Job Requirements
Web-hosting jobs require in-depth knowledge of different types of software and computer systems that host websites. In addition to knowledge of Web-hosting platforms, workers need to be familiar with common website databases, programming languages, content-management systems and popular Web-based software such as WordPress and Joomla. Since the majority of work involves connecting with customers, Web-hosting workers must be comfortable communicating with clients and be able to relate to client needs. The ability to reach an understanding about technical issues with people who aren't technically adept is a crucial part of providing sales and service.
In Feburary 2016 11,
Customer support agents working for Web-hosting companies help clients with a variety of concerns, including setup issues such as website migration, software settings and any other initial problems getting started. Support staff continue to help clients after setup, troubleshooting issues such as connectivity problems, data storage and security. Web-hosting support and sales staff speak with clients to provide solutions over the phone and when needed they communicate through virtual private servers that allow customer support agents to control the customer's computer. Web-hosting jobs that revolve around sales require the same expertise. Sales agents identify the needs of potential customers while linking them to services offered by a Web-hosting company.
Job Requirements
Web-hosting jobs require in-depth knowledge of different types of software and computer systems that host websites. In addition to knowledge of Web-hosting platforms, workers need to be familiar with common website databases, programming languages, content-management systems and popular Web-based software such as WordPress and Joomla. Since the majority of work involves connecting with customers, Web-hosting workers must be comfortable communicating with clients and be able to relate to client needs. The ability to reach an understanding about technical issues with people who aren't technically adept is a crucial part of providing sales and service.
In Feburary 2016 11,
Labels:
communicate,
connectivity,
data,
needed,
phone,
provide,
sales,
solutions,
speak,
storage
Tuesday, 9 February 2016
How to Insert HTML Values Into an Oracle DatabaseIn Feburary 2016 09,
In Feburary 2016 09,
Create the web page in HTML. Make sure the page includes two text input fields named 'user' and 'password.' Set the form action to call 'input.cgi' from the cgi-bin on your server. Save the HTML as 'info.html.'
Create the server side script. For PERL to speak to a database, you must use the DBI module. The following script shows how to connect to the database:!/usr/bin/perl -wuse CGI;
use DBI;
print 'Content-type: text/html\n\n';
$cgi = CGI->new();
$user = $cgi->param('user');
$password = $cgi->param('password');
$dbh = DBI->connect( 'dbi:Oracle:your_Database_name', 'your_username', 'your_password' )
or die 'Can't connect to Oracle database: $DBI::errstr\n';
You must get the values for 'your_Database_name,' 'your_username,' and 'your_password' from your server administrator. For this tutorial, it is assumed you already have this information.
Write the SQL. To do this, you must have a table set up in Oracle that can receive the two fields. Call the table 'user_auth' and make sure it has a column called 'user' and another one called 'pwd.' The following SQL statement will insert the data into the table:
$sqlstatement='INSERT INTO user_auth VALUES ('$user','$password')';
$sth=$dbh->prepare($sqlstatement);
$sth->execute || print $sqlstatement;
Confirm the data have been entered by including a print command. To do this, add the following line of code to the end of the program:
print 'Information accepted';
If this does not print out, then you can be sure the information was not sent. You must go back and check the database settings. Save the script as 'input.cgi.'
Upload the HTML and CGI files to the server. The HTML must go in docs area, and the CGI must be uploaded to the cgi-bin.
Execute the program. Do this by opening the HTML document in a browser and entering some mock information. Once you submit it, you should see the confirmation printout. If you see the printout, the information has been sent to the database.
In Feburary 2016 09,
Create the web page in HTML. Make sure the page includes two text input fields named 'user' and 'password.' Set the form action to call 'input.cgi' from the cgi-bin on your server. Save the HTML as 'info.html.'
Create the server side script. For PERL to speak to a database, you must use the DBI module. The following script shows how to connect to the database:!/usr/bin/perl -wuse CGI;
use DBI;
print 'Content-type: text/html\n\n';
$cgi = CGI->new();
$user = $cgi->param('user');
$password = $cgi->param('password');
$dbh = DBI->connect( 'dbi:Oracle:your_Database_name', 'your_username', 'your_password' )
or die 'Can't connect to Oracle database: $DBI::errstr\n';
You must get the values for 'your_Database_name,' 'your_username,' and 'your_password' from your server administrator. For this tutorial, it is assumed you already have this information.
Write the SQL. To do this, you must have a table set up in Oracle that can receive the two fields. Call the table 'user_auth' and make sure it has a column called 'user' and another one called 'pwd.' The following SQL statement will insert the data into the table:
$sqlstatement='INSERT INTO user_auth VALUES ('$user','$password')';
$sth=$dbh->prepare($sqlstatement);
$sth->execute || print $sqlstatement;
Confirm the data have been entered by including a print command. To do this, add the following line of code to the end of the program:
print 'Information accepted';
If this does not print out, then you can be sure the information was not sent. You must go back and check the database settings. Save the script as 'input.cgi.'
Upload the HTML and CGI files to the server. The HTML must go in docs area, and the CGI must be uploaded to the cgi-bin.
Execute the program. Do this by opening the HTML document in a browser and entering some mock information. Once you submit it, you should see the confirmation printout. If you see the printout, the information has been sent to the database.
In Feburary 2016 09,
Monday, 8 February 2016
How to Roast a CoworkerIn Feburary 2016 08,
In Feburary 2016 08,
Structure your roast speech around a particular event that the coworker is tied to; instruct the others participating in your roast to do the same. Use the coworker's birthday, anniversary, retirement or promotion for humor fodder (e.g., a retirement roast is perfect for jokes about aging; a promotion roast would call for jokes about poor workmanship).
Keep speech length at around 5 minutes, so all who wish to speak can do so without boring the audience. Avoid engaging in jokes and put-downs that are too harsh or are not directly related to the occasion at hand.
Include characteristics, traits and idiosyncrasies of the honoree, such as the honoree's style of dress, habits, personality quirks and communication style. Avoid subjects pertaining to family dysfunction, physical or emotional handicaps or romantic/sexual relationships.
Set up for the festivities. Arrange the podium and seating in a U formation, with all the seating facing the podium, which is at the center. Provide a microphone at the podium.
In Feburary 2016 08,
Structure your roast speech around a particular event that the coworker is tied to; instruct the others participating in your roast to do the same. Use the coworker's birthday, anniversary, retirement or promotion for humor fodder (e.g., a retirement roast is perfect for jokes about aging; a promotion roast would call for jokes about poor workmanship).
Keep speech length at around 5 minutes, so all who wish to speak can do so without boring the audience. Avoid engaging in jokes and put-downs that are too harsh or are not directly related to the occasion at hand.
Include characteristics, traits and idiosyncrasies of the honoree, such as the honoree's style of dress, habits, personality quirks and communication style. Avoid subjects pertaining to family dysfunction, physical or emotional handicaps or romantic/sexual relationships.
Set up for the festivities. Arrange the podium and seating in a U formation, with all the seating facing the podium, which is at the center. Provide a microphone at the podium.
In Feburary 2016 08,
Subscribe to:
Posts (Atom)