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

Montag, 29. Februar 2016

How to Remove a Joomla Powered SiteIn Feburary 2016 29,

In Feburary 2016 29,
Uninstall all Joomla extensions before removing the actual back-end software. If you do not have any extensions, skip to Step 3. To uninstall extensions, login to Joomla. If you do not remember your Joomla login information, consult the confirmation email you received when installing the software. This email contains the personalized link that will allow you to sign-in to the Joomla service.
Click the drop-down menu in the left-hand side of your Joomla screen. Select 'Extensions' from the menu. Click the name of each extension that you have running. Joomla will then display the extension's settings page. Click the uninstall icon, which looks like a trash can. Joomla will alert you when the uninstall process is complete. Repeat for each extension.
Launch your FTP software (e.g., Cyberduck for Mac or Fetch for Windows PCs). Login to your web host server. Wait for the FTP software to load a list of all of the files and folders for the web site. Right-click the folder entitled 'Joomla' and select 'Delete' from the pop-up menu. This will delete all of the program files for the software.
Login to your web host account and access the MySQL database page. The location of this setting varies according to your web host provider. If you are unsure of where to find the settings for your databases, contact the customer service department at the hosting company.
Delete the database you used to operate Joomla. Joomla is now completely uninstalled.
In Feburary 2016 29,

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,