Showing posts with label located. Show all posts
Showing posts with label located. Show all posts

Sunday, August 30, 2015

How to Change the Main Index Page on GoDaddy


Visit the GoDaddy and log into the 'Account Manager.' Enter your 'Login Name' and 'Password' into the relevant text fields and click on the 'Secure Login' button.
Click on the 'Web Hosting' option in the 'Products' section.
Click on the 'Launch' option in your Web hosting account.
Click on the 'File Manager' option, which is located in the Content section. This will automatically open the file manager in the root directory of the Web hosting account. Typically, this is the location in which your index file will be located.
Click on the 'Upload' option in the menu bar and then the 'Browse' option to select the index file to upload your index file. The file will be labelled 'index' and will have one of the following file extensions: htm, html, php, asp or aspx; for example, the file might be 'index.html.' Finally, click on the 'Upload' button to confirm the upload of this file.
VPS Hosting

Saturday, August 29, 2015

How to Map a Drive to a Web Site (8 Steps)


Open Windows Explorer by running 'explorer.exe' from the Run dialog box. You can bring up the Run dialog box by pressing the 'Windows' key and the letter 'R' at the same time. In the available text area, type 'explorer.exe' and press 'Enter.'
In Windows Explorer, click on the 'Tools' menu near the top, and select the 'Map Network Drive' option. This will open the Map Network Drive dialog box.
Click on the link that will allow you to connect to a network server or website, located beneath the drive letter and folder selection boxes. This may be listed as 'Sign up for online storage or connect to a network server' or 'Connect to a Web site that you can use to store your documents and pictures,' depending on your version of Microsoft Windows. This will open the 'Add Network Place Wizard.'
Click the 'Next' button on the Add Network Place Wizard. When prompted to choose where to create the network place, click 'Choose another (or custom) network location' and then click 'Next.'
In the Internet or network address text area, type your FTP address and click 'Next.' Typically this will be 'ftp://www.yourdomain.com' or 'ftp://ftp.yourdomain.com,' where 'yourdomain' is the name of the website you're attempting to access. Your FTP log-in information can be acquired by contacting your domain hosting service.
If your FTP allows anonymous login, make sure the 'Log on anonymously' box is checked. If your FTP requires a user name and password, uncheck the 'Log on anonymously' box and type your user name in the provided text area and click 'Next.'
Type a name to identify this network place, then click 'Next.'
Make sure the 'Open this network place when I click Finish' box is checked. The first time the network place is opened, you will be prompted for your FTP password. The network place can now be accessed from My Computer or from Windows Explorer.
VPS Hosting

Thursday, August 27, 2015

How Do I Redirect a Domain Name in Bluehost? (6 Steps)


Login to your BlueHost Web hosting account. Go to its website, and click 'Control Panel Login' on the top right of the main site. Alternatively, you can login using the following URL: 'https://www.bluehost.com/cgi-bin/cplogin." Once you login, the cPanel, also known as the 'Control Panel' displays.
Scroll down the cPanel. Find the section named 'Domains.' Click on 'Domain Manager.' This pulls up the 'Domain Manager' tab. Located on the top left is a panel called 'Shortcuts.'
Find 'Manage Domain Redirection' on the 'Shortcuts' panel and click on it. A new page appears, entitled 'Redirects.' Under 'Add Redirects,' provide the specific data for the redirect. Next to 'Type' is a drop-down box. The two options are 'Permanent' and 'Temporary.' Choose 'Permanent' if you have no plans to continue using the domain or subdomain that will be redirecting to another website. Choosing this will cause the website to be pulled from search engine indexes. This change is permanent. If you plan to use the pages on the website again, choose 'Temporary.' The search engines will continue to index the website when there are new updates.
Select the domain or subdomain name to which your plan on redirecting. It will be found in the drop-down menu next to 'http://(www.)?" If you are redirecting a subdirectory, type in the subdirectory name after the '/' slash. As an example, the subdirectory to be redirected: 'http://www.yourwebsite.com/directory" will appear in the text box as: 'http://(www.)?yourwebsite.com/directory." In the above example, 'directory' is the subdirectory. Input this after the '/' slash.
Enter the website URL you will be redirecting too. Input this next to the 'Redirects To?'' field. Next to the option titled 'www.redirection,' select the option that is titled 'Redirect With or Without www.'
Click the 'Add' button. This establishes the redirect. Open a Web browser. Type in the domain or subdomain URL that directs to another website. This provides verification that it works.
VPS Hosting

How to Upload an HTML Theme From ThemeForest


Download your theme or template from your ThemeForest downloads page. Click on your account name in the upper-right of their Web page. Unzip the file to an easy-to-find location on your hard drive.
Open the theme folder. In most cases, the files you need to edit and upload to your Web space are located in a sub-folder under the theme's name. Locate the 'index.html' file and open it in Notepad or an HTML editor. HTML editors are preferable, as they allow you to view the design of the theme and make changes without knowing HTML. The main value you want to find and change is the page title, and possibly the copyright text. The title is located near the top of the document, between '
' tags. The copyright text is likely located at the very bottom.
Access your Web space using your host's Web control panel, or an FTP program. If your Web space does not put you in the root of your domain by default, you may need to open the 'htdocs' or 'www' folder to access your site root. Refer to your host's documentation for how to find your website folder if needed.
Upload the edited contents of your theme's Web files folder to your website folder by dragging the files from one window to the other, or selecting them in your control panel and clicking 'Upload.' The HTML files must be in the main website folder and not in a sub-folder. For example, your website structure may have an index.html and contact.html in the root folder, and an 'images' sub-folder.
Type your URL into your Web browser to test your webpage. If the files were uploaded to the correct place, you should see your main page, or index.html file. Continue to make changes to the files using your text editor, then upload them to view the updated pages.
VPS Hosting

Wednesday, August 26, 2015

How to Create an HTML Input Box and Output to Another Page


Open the HTML source code page into which you desire to place the form containing a 'textarea' input box. In this example, you will be using 'sometext.html' as the HTML source page. The separate page with PHP code will be called 'displaysometext.php.' Both pages will be stored on the Web hosting server where your website is located.
Create the form section within the HTML source code, and tell the form that the data entered by the user will be submitted to the external PHP-enabled page. In the case of this example, the user data will be submitted to displaysometext.php. Enter the following line between the
and the
tags of the HTML page.Save the document to your computer as sometext.html and upload it to your Web hosting server.
Open a new page in your text editor and enter the following six lines of text.
Display Some Text PHP Script Page
?>
Save the page as displaysometext.php
Enter the following lines between the '
' lines that tells PHP to accept the text from the input box of the origination page. Remember that the name of the submit operation was 'comment.' When the user submits the form, that label will be submitted as the identifier for the text the user entered. The lines to accept this information should appear as follows.if(isset($_POST['submit'])){
$usercomments = $_POST['comment'];'
Have your PHP script do something with the text the user entered. This can be something as simple as printing to the Web browser what the user entered on the original page. In this example, type the following three lines.echo 'The information you entered was as follows:';
echo $usercomments;
}
Save the 'displaysometext.php' page code to your computer, then upload it into the same directory of the Web hosting server that contains HTML page containing the input box.
Point your browser to the HTML page that accepts the user input. That page, in this example, would be 'sometext.html'. Enter some text into the input box, then click the 'Submit Comments' button below it. Note that the small PHP code snippet in the 'displaysometext.php' page processes and displays everything you entered on a new Web page.
VPS Hosting

Tuesday, August 25, 2015

How to Convert WordPress to MediaWiki (8 Steps)


Go to your site's WordPress administration panel and sign into your account. For example, if your website's domain was 'yourdomain.com,' then the administration area is normally located at 'yourdomain.com/wp-admin/.'
Scroll down to the bottom left side of the administration dashboard, go to the 'Tools' section and click the 'Export' link.
Click the radio button for 'Posts' and click the 'Download Export File' button. WordPress creates a XML file that you can import to MediaWiki. It should automatically download to your computer wherever the browser normally saves downloaded files.
VPS Hosting

Saturday, August 22, 2015

How to Add Sound to eBay Items (8 Steps)


Upload the sound files to an online host. Many Internet service providers give their users a small amount of web space for free with their Internet accounts. If yours does not, look for a service like http://www.DataZap.net that specializes in hosting files specifically for auctions. Many image hosts will also host photographs.
Copy the address where your files are located. This is the address the host provides to your files and should start with 'http://www."
Go to http://www.eBay.com and click 'sell.' If prompted, enter your login information.
Choose a category for your auction and give it a title and price.
Click the HTML option from the box towards the middle of the page entitled 'Describe the item you're selling.'
Type:
<EMBED SRC=http://www.host.com/mysong.mp3
HIDDEN=false HEIGHT=100 WIDTH=195
AUTOSTART=false LOOP=true>
</EMBED>
Replace the line in Step 6 that says, 'http://www.host.com/mysong.mp3" with the address you copied in Step 2.
Finish posting your auction. Your sound file will play within the auction in the auction viewer's default music player. Viewers have the option to play or pause the file.
VPS Hosting

Thursday, August 20, 2015

How to Add Video to Craigslist


Go to a video hosting website like YouTube. Go to a page with the video to add to Craigslist. If the video is local to your computer, create an account and upload the video to the service. Take note of the URL where the video is located.
Go to Craigslist. Choose the city, country or region appropriate to the posting. On the top left corner of the page, click on the link to 'Post to classifieds.' Choose the type of posting and location for the classified.
Create a classified ad. Copy the URL from the video hosting website and past it into the body of the ad. Fill out the rest of the classified, including contact information, and inform readers about the video.
Publish the classified ad. If it was created using a registered Craigslist account, the task is complete. If it was created without an account, an email will be sent with a link to confirm the ad before publishing.
VPS Hosting