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

Sonntag, 14. Februar 2016

How to Access cPanel on GoDaddyIn Feburary 2016 14,

In Feburary 2016 14,
Open your browser and type in the following address into the address bar: 'https://[[ipaddress]]:2087/." Replace 'ipaddress' with the actual IP address of your server. You can find your IP address in the email that GoDaddy sent you upon registration.
Type in your username and password. The username is 'root,' while the password is your GoDaddy account password. You can also find it in your GoDaddy registration email.
Click on 'OK' to access your cPanel.
In Feburary 2016 14,

Montag, 1. Februar 2016

How to Find the Absolute Path in a WebsiteIn Feburary 2016 01,

In Feburary 2016 01,
Click on any link on a Web page using a relative path. Provided the link is properly coded, the page opens. Highlight the URL in the address bar of your Web browser and copy it by pressing 'Ctrl-C' to copy the link's absolute path. If the link doesn't work, you may still be able to get the absolute path.
Examine the URL in the address bar and fix any obvious typos, like a double 'http,' a 'wwww' instead of 'www' or two slashes instead of one. If the link automatically redirected you to an error page, open a text editor and paste the code there to examine it. Once a typo is fixed, the link should work, giving you the absolute path.
Copy the URL in the address bar of the source page. Paste this in a new line in your text editor. If it ends in 'html,' delete everything after the last '/.' If it ends in 'com' or '.org' or any other domain extension, type a '/' at the end and then type the rest of the relative path. For example, if the main URL was 'http://.example.com/page.html," and the relative path was '/folder/page.html,' you should now have 'http://example.com/folder/page.html." Copy and paste this into your Web browser address bar to see if it works. If it does, you've found the link's absolute path.
Click on other links in the source Web page and examine the URLs in the address bar. Websites, like the files on your computer, are usually stored in folders and sub-folders. Every folder begins and ends with a '/.' If a developer has mistyped a folder name, correct it and try the link again. If the developer has moved a page, you may be able to determine in which folder the page you are looking for belongs. For example, if the bad link includes an '/images/' folder, while and the other images are in an '/image/' folder, you can simply delete the 's' to get the correct path.
Searching and Absolute Paths
Right-click the clickable link in any search result. Select 'Copy Link Address' from the drop-down menu. Paste this into any text editor or word processor. In some cases, this may be an absolute path already, such as 'http://www.example.com." Other times, including links that result in direct download rather than in opening a Web page, the absolute path is embedded in confusing HTML code such as this: 'https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=13&cad=rja&uact=8&ved=0CFjACOAo&url=https%3A%2F%2Fexample.com%2Ffoldera%2Ffolderb%2Ffolderc%2Fpage.html&ei=8Sr1U4mKMIHnoASo2oGYBw&usg=AFQjCNGBK_IZOD0O82_VAYqiuSVJXMM-7w&sig2=9PGvoSSlvcEtSiPgHLlNPw."
Highlight and copy the HTML code that displays beneath the clickable link in the search engine. Paste this in a separate line in your text editor. Often, the path is short enough that it is displayed in its entirety, such as 'http://example.com/page.html." In this case, your work is done. However, if the path is too long, only the beginning is displayed, with the last part of the path cut off, such as 'http://example.com/foldera/folderb/fold."
Highlight everything in the clickable link code up to the last word that corresponds to the absolute path, and press 'Ctrl-V' to replace it with the clean code of the absolute path you copied. In this example, this includes everything up to 'fold,' leaving you with 'http://example.com/foldera/folderb/folderc%2Fpage.html&ei=8Sr1U4mKMIHnoASo2oGYBw&usg=AFQjCNGBK_IZOD0O82_VAYqiuSVJXMM-7w&sig2=9PGvoSSlvcEtSiPgHLlNPw."
Delete everything after the 'html.' This leaves you with 'http://example.com/foldera/folderb/folderc%2Fpage.html."
Highlight every '%2F' and press '/' on your keyboard. This is just HTML code for a slash. You now have the absolute path for the link: 'http://example.com/foldera/folderb/folderc/page.html."
In Feburary 2016 01,