Posts mit dem Label code werden angezeigt. Alle Posts anzeigen
Posts mit dem Label code werden angezeigt. Alle Posts anzeigen

Samstag, 27. Februar 2016

How to Start a Video Game WebsiteIn Feburary 2016 27,

In Feburary 2016 27,
Select a web hosting service where you will build your website. Consider disk space and bandwidth available along with price when comparing web hosting services. Selecting a quality host is important to building a high-quality website.
Decide how you are going to design your website. The most basic option is to use a text editing program to write all of the code by hand; however, software is available which can make this easier for users unfamiliar with coding websites by hand. Commercial options like Adobe Dreamweaver can cost hundreds of dollars, while other programs like Mozilla Composer are available online for free.
Research video games and decide what kind of information you want to include on your website. Some options include previews of upcoming games, reviews of games that have been released or hints about how to play specific games. According to the Letters and Science Computing Resources at the University of Berkeley, 'content ultimately is the standard by which your website's usefulness will be judged.' Make sure the research you do will help you to create useful content.
Create the pages of your video game website using the text editor or other design tool you selected in Step 1. Write informative content based on the research from Step 3. Don't include too much information on a single page of the website, or you can overwhelm your visitors with too much text.
Upload the pages of your website to your web host. Most web hosts will have FTP services available, which will allow you to upload all of the pages of your website at once. Each web hosting service will have different procedures, so refer to your host's online help files if you need help with their specific requirements for uploading files.
In Feburary 2016 27,

Donnerstag, 18. Februar 2016

How to Use SSL With JoomlaIn Feburary 2016 18,

In Feburary 2016 18,
Purchase an SSL certificate from your Web hosting provider or another reseller. Have the provider enable the certificate for use on your domain.
Browse to the control panel for your Web hosting account. Use the 'File Manager' to locate the '.htaccess' file in your site's root directory. Download and save the file to your computer.
Open the '.htaccess' file with Notepad or another text editor. Add the following code to the text file:RewriteEngine onRewriteCond %{SERVER_PORT} !^443$RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [QSA,R=301,L]
Redirect permanent / https://www.yourdomainname.com
Delete the 'www.yourdomainname.com' reference and replace it with the domain name for your Joomla site. Save the file and exit the text editor program.
Open the 'File Manager' application in your website control panel. Browse to the directory on your computer where you saved the '.htaccess' file. Upload the file to the root directory of your website. Overwrite the current '.htaccess' file if prompted to do so.
Browse to the administrative page for your Joomla website and log in as an administrator.
Browse to the 'Global Configuration' link on the main control panel page in Joomla. Click the link to go to the main Joomla settings page.
Click on the 'Server' tab near the top of the 'Global Configuration' page.
Click the 'Force SSL' drop-down box and select the 'Entire Site' option. Click the 'Save' icon in the upper right corner of the 'Global Configuration' page.
Log in to the Joomla website as you normally would. Because you changed the '.htaccess' file, Joomla will now redirect normal 'http' requests to the more secure 'https' log-in page.
In Feburary 2016 18,

Mittwoch, 17. Februar 2016

How to Stream a WAVIn Feburary 2016 17,

In Feburary 2016 17,
Upload the WAV file to your own server. Although you might want to stream a file that already exists online somewhere, doing so could cause the person hosting the file to lose “bandwidth” (the amount of data the hosting provider allows him to use each month) every time someone plays it. Login to your 'File Manager' and upload the file. Double click on the name of your file within the 'File Manager' to open it in a new tab or window.
Add an 'embed' code to the HTML of the webpage on which you wish to stream your WAV file. Hold down the 'Ctrl' and 'C' keys at the same time and copy the following code onto your computer's clipboard by highlighting it.
hidden=true>
.
Paste the embed code into the HTML file for the page on which you plan to stream your wave. Double click on the file name—'index.html,' for example—in your 'File Manager' to open the HTML editor. Click your mouse wherever in the page—under the main 'Header' but before the 'Links' section, for example—and hold down the 'Ctrl' and 'V' keys at the same time to paste the embed code into the file.
Paste your WAV file's URL into the embed code. Navigate back to the tab where you opened your WAV file and click your mouse inside your browser's 'Address Bar.' Hold down the 'Ctrl' and 'C' keys at the same time to copy the file's URL and then tab back to your HTML file. Highlight the text file.wav and hold down the 'Ctrl' and 'V' keys at the same time to replace it with your file's URL.
Set whether or not you'd like your streaming WAV file to play automatically by adjusting the value after
'Autostart.' By default, the code you've inserted will begin playing the file as soon as someone visits your webpage. Replace 'true' with 'false' (all lowercase in any instance) to change this.
Save your HTML file and visit your webpage to listen to your streaming WAV file.
In Feburary 2016 17,

Dienstag, 16. Februar 2016

How to Add a Foreign Key to MySQLIn Feburary 2016 16,

In Feburary 2016 16,
Click the Windows 'Start' button and click 'All Programs.' Click 'MySQL' and then click 'MySQL Workbench' to open your main console.
Click 'Edit SQL Script' in the main console window. This opens a SQL editor where you create the foreign key.
Type the following code into your editor:alter table table_name add constraint key_name foreign keyreferences tbl_name primary_keyThe first line sets the foreign key. Replace 'table_name' with the name of your table. 'Key_name' is the name of the column in your table you want to set as the foreign key. The second line is the primary key information to link to the foreign key. Replace 'tbl_name' with the table that contains the primary key and 'primary_key' with the primary key column name.
Click 'Run' to run your SQL statement. The foreign key is created, and your tables are set up with the linked attributes.
In Feburary 2016 16,

Montag, 15. Februar 2016

How to Put a Song in the Background of a WebsiteIn Feburary 2016 15,

In Feburary 2016 15,
Log in to your web host by inputting your user name and password into the corresponding text boxes. Click on the 'Upload' button and select a song that you want to put in the background of your website. This will upload it to the root directory of your site. The root directory is the default where you are directed when you first sign into your web host.
Click on the HTML document in your web server in which you want to put the song into the background. Copy and paste the following HTML background music code into the place in your HTML code where you want the music player to appear: <embed name='Name of song'
src='URL to song'
loop='false'
hidden='false'
autostart='true'>
</embed>Replace the section that says “Name of Song” with the title of your song and the section that says “URL to Song” with the URL to your song.
Play the song more than once, when someone links to your page, by inputting the number of times that you want it to play into the loop value. Replace loop='false' with loop='1'or loop='2' as the proper HTML.
Hide the music player so that the user cannot stop the music. To do this, input “true” next to the hidden value. Replace hidden='false' with hidden='true' as the proper HTML.
Stop the music from playing automatically when someone opens your web page by inputting “false” next to the autostart value. Replace autostart='true' with autostart='false' as the proper HTML.
Save the web page file with the code in it.
In Feburary 2016 15,

Freitag, 12. Februar 2016

How to Find Where a Domain Is Hosted?In Feburary 2016 12,

In Feburary 2016 12,
Find the location of a domain using 2Privacy's free utility). Enter the domain's name or IP address into the utility's 'IP or Domain Name' field.
Type the captcha code into the 'Code' box -- the captcha code is located to the right of the Code box.
Click on the utility's 'Check Location' box to get the location registered to the domain. The Web page will refresh and then display the domain's physical address.
Seo Mastering
Locate a domain's location using Seo Mastering's 'IP Address - Domain name Location' utility. Enter the domain into the utility's 'Enter IP address or domain name' field.
Enter the code in the utility's captcha into the utility's 'Image Verification' field.
Click 'Continue' to look up the location of the domain. The utility will plot the location of the queried domain onto an embedded Google map.
IP Address Location
Use IP Address Location's 'IP Who Is Domain name or Whois IP Address' utility to find the location of a domain. Clear out the text in the utility's 'Domain Whois IP Lookup Address' field.
Type the domain you would like to query into the 'Domain Whois IP Lookup Address' field.
Click on the utility's 'Check IP WhoIS Address' button to find the location registered to the domain's server.
In Feburary 2016 12,

How to Install OmnitureIn Feburary 2016 12,

In Feburary 2016 12,
Access your Adobe Support Manager.
Highlight the Omniture HTML component link provided in the Adobe Support Manager. Right-click the HTML link and click “Copy.”
Log into the website's hosting server platform and open the webpage editor.
Locate the HTML view to see the raw HTML code for the page you intend to edit.
Right-click in the header or footer area of the site's HTML code. The header area is located directly above the beginning of the code, and the footer area is directly below the end of the code.
Click the “Paste” action to place the Omniture HTML embed code link with the site's HTML code.
Save the changes to your Web hosting server. This action installs Omniture to the site, and enables data collection for optimization and monitoring purposes.
In Feburary 2016 12,