Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
systems:joomla:audina_website_v3 [2012/11/15 12:28]
smayr [Apache mod_rewrite Setup]
systems:joomla:audina_website_v3 [2013/02/27 15:25] (current)
smayr [User Registration (Component)]
Line 92: Line 92:
   * Description Metatag should have relevant site summary for Google to display it.   * Description Metatag should have relevant site summary for Google to display it.
   * Images in Home page should have descriptive ''alt'' descriptions.   * Images in Home page should have descriptive ''alt'' descriptions.
-  * Switch on Search Engine Friendly URLs. +  * Switch on Search Engine Friendly URLs (Global Configuration)
-  * Switch on Apache mod_rewrite. +  * Switch on Apache mod_rewrite (Global Configuration).
 === Apache mod_rewrite Setup === === Apache mod_rewrite Setup ===
   * Install mod_rewrite support for apache.   * Install mod_rewrite support for apache.
-    * Install it: <code bash>%</code> 
     * Enable it: <code bash>% sudo a2enmod rewrite</code> or <code bash>% cd /etc/apache2/mods-enabled     * Enable it: <code bash>% sudo a2enmod rewrite</code> or <code bash>% cd /etc/apache2/mods-enabled
 % ln -s ../mods-available/rewrite.load rewrite.load</code> % ln -s ../mods-available/rewrite.load rewrite.load</code>
 +    * Enable AllowOverride for apache: Edit file ''/etc/apache2/sites-available/default'' (or whatever the virtual site is using) and set it to ''AllowOverride All''. Eg:<code bash><Directory /var/www/>
 +    Options Indexes FollowSymLinks MultiViews
 +    #AllowOverride None
 +    AllowOverride All
 +    Order allow,deny
 +    allow from all
 +    # Uncomment this directive is you want to see apache2's
 +    # default start page (in /apache2-default) when you go to /
 +    #RedirectMatch ^/$ /apache2-default/
 +</Directory></code>
     * Restart apache: <code bash>% /etc/init.d/apache2 restart</code>     * Restart apache: <code bash>% /etc/init.d/apache2 restart</code>
   * Create test script. Sample test ''.htaccess'' file:<code bash>   * Create test script. Sample test ''.htaccess'' file:<code bash>
Line 225: Line 233:
      * Go to Joomla > Components > CP Event Calendar.      * Go to Joomla > Components > CP Event Calendar.
      * For calendar 'Events', click on 'Admin Data' to edit calendar and to add/delete events.      * For calendar 'Events', click on 'Admin Data' to edit calendar and to add/delete events.
 +== User Registration (Component) ==
 +  * Edit file ''<//joomla_root>///components/com_user/views/register/default.php'' to include this at the top:<code php>
 +<?php // no direct access
 +defined('_JEXEC') or die('Restricted access');
 +
 +// coastline wayne code added for forms url
 +$urlBase =  $this->baseurl;
 +
 +$mainframe->redirect($urlBase.'/index.php?option=com_chronocontact&chronoformname=Registration');
 +
 +// end wayne
 +?>
 +<script type="text/javascript">
 +. . .
 +</code>
  
 +== ChronoContact (Component) ==
 +  * Look for revised ''if'' statement on this plugin called ''$wayneFix'' that cuts off the e-mail from being sent.  See file ''<//joomla_root//>/components/com_chronocontact/plugins/cf_joomla_registration.php''.
 = Backup Files = = Backup Files =
   * A copy of the webserver files can be found in ''/data/backup/www''   * A copy of the webserver files can be found in ''/data/backup/www''