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_v4 [2013/05/17 10:54]
smayr
systems:joomla:audina_website_v4 [2014/05/06 15:52] (current)
smayr
Line 2: Line 2:
  
 == Configuration == == Configuration ==
 +  * Upgrade the Ubuntu Linux server (if using 13.10 or up): <code>sudo apt-get install apache2 php5-mysql libapache2-mod-php5 mysql-server php5-json phpmyadmin php5-curl unzip</code>
   * Unpack ZIP file to a folder under ''/var/www'' on the web server (such us ''en'' for English, or ''es'' for Spanish). Eg: <code bash>   * Unpack ZIP file to a folder under ''/var/www'' on the web server (such us ''en'' for English, or ''es'' for Spanish). Eg: <code bash>
 % mkdir /var/www/en % mkdir /var/www/en
Line 87: Line 88:
 ?> ?>
 </code> </code>
-  * Setup ''htaccess'' file with some basic security.  This how ''.htaccess'' in the root folder in Joomla should look like:<code bash> +  
-# Deny all PHP pages +
-<Files *.php> +
-deny from all +
-</Files> +
-# Allow only these PHP pages +
-<Files ~ "(^index.php|^index2.php|chrono_verification.php)$"> +
-allow from all +
-</Files> +
-</code>+
   * Point the browser to website URL, and test.   * Point the browser to website URL, and test.
 == Search Engine Optimization == == Search Engine Optimization ==
Line 112: Line 104:
     #AllowOverride None     #AllowOverride None
     AllowOverride All     AllowOverride All
-    Order allow,deny +    # Apache 2.2 
-    allow from all+    #Order allow,deny 
 +    #allow from all 
 +    # Apache 2.4 
 +    Require all granted
     # Uncomment this directive is you want to see apache2's     # Uncomment this directive is you want to see apache2's
     # default start page (in /apache2-default) when you go to /     # default start page (in /apache2-default) when you go to /
Line 224: Line 219:
 </html> </html>
 </code> </code>
 +
 += Contact Us Email =
 +
 +With Joomla 3.x install, the 'Contact Us' page does not send email in some instances.  To fix this, perform the following steps:
 +  * In Administration backend, go to System --> Global --> Contacts.
 +  * Select Form tab, and turn off the following:
 +    * Session Check
 +    * Session Reply
 +  * Save, and test 'Contact Us' form.
  
 = Content Editing = = Content Editing =
Line 230: Line 234:
  
 == Carousel Images ==  == Carousel Images == 
-   * Edit 'Home' article as HTML. Go to Joomla > Content > Article Manager Home.   +   * Edit 'Home' article as HTML. Go to Joomla > Content > Article > Featured Articles.  Each article should have a reference to an image (eg: ''slide-1.jpg'') in the introduction section. 
-   * Place slider images in ''images/stories/frontpage''. Eg: ''images/stories/frontpage/proslider7.jpg''+   * Place slider images in ''<//joomla_root//>/images/slider''. Eg: ''images/slider/slide-1.jpg''
  
 == News Articles == == News Articles ==
Line 246: Line 250:
      * 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 +== Forms (using ChronoForms) == 
-$urlBase  $this->baseurl; +   * Components Chrono Forms > Forms Manager. 
- +   * Update email addresses on forms:  
-$mainframe->redirect($urlBase.'/index.php?option=com_chronocontact&chronoformname=Registration'); +     * Select form under 'Wizard Edit' column. 
- +     * Select Actions tab (left). 
-// end wayne +     * Select under 'Eventstab (rightif available:  
-?> +       * OnSuccess Email - To User Configure (button right side) > Static (tab). 
-<script type="text/javascript"> +       * OnSuccess > Email - To SysAdmin > Configure (button right side) > Static (tab)
-. . +     * Select under 'Emails' tab (right) if available: 
-</code>+       * Edit To/From email addresses.
  
-== 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''