Showing posts with label yoursite. Show all posts
Showing posts with label yoursite. Show all posts

Friday, August 28, 2015

How to Create a Joomla Web Site (12 Steps)


Log in to your website's administrative panel and locate the Fantastico icon, which is usually a smiley face. Click this icon to begin the Joomla installation process.
From the main Fantastico Web page, locate and click on the Joomla 1.5 hot link and select the new Joomla installation option.
By default, a new installation will assume that you will be installing Joomla into the root directory of your website (www.yoursite.com), which is usually the case. If your requirements dictate a different directory, the process does allow you to do so easily.
Assign an administrator user name and password. These credentials will be used to log in to the back end of the website, where most of the work will take place (www.yoursite.com/administrator).
Assign the administrator email address, administrator full name and the name of your website. This information can all be changed later if needed.
Lastly, you are presented an option to install sample data. If you lack Joomla experience, the sample data will be invaluable to help you learn where everything is, what it does, and how it was configured. Then, click the Install button.
VPS Hosting

Wednesday, August 26, 2015

How to Reindex a Site in Drupal


Run a manual cron job. Cron is a task that is set up on the server-side to tell your server to refresh its database and other core aspects and functions of your Website. The easiest way of running a cron task through Drupal is by typing in this URL: http://www.yoursite.com/cron.php. Hit enter and let the cron job run manually.
Set up the cron interval. Most cron jobs need to be triggered in intervals. For example, a Website with a lot of user-updated content may need to re-index the content search by running cron jobs once a day. The best way to do this is though the server's crontab function on your hosting control panel.
Type the following into your hosting panel's cron section: 0



wget -O - -q -t 1 http://www.example.com/cron.php0 represents the top of the hour, and the other asterisks refer to the day, month and day of the week. This example runs cron once an hour.
Use the Poormanscron module as an alternate option for re-indexing the website. This module can be found at: http://drupal.org/project/poormanscron. At this time of this writing, Poormanscron is now part of the latest installation of Drupal, which is Drupal 7, and therefore the module does not need to be installed. For Drupal 6 and below, this module must be set up and configured for the desired cron job intervals.
VPS Hosting