Documentation

Features

This is an old revision of the document!


SEO Module

The SEO module is designed to change your standard urls into more friendly ones. Below is a list of common problems with this module.

I am getting a 404 error

If you are getting a 404 error then here are a few things to try.

  1. Make sure the .htaccess file is uploaded to the root of your site.
  2. Make sure your server supports mod_rewrite.
  3. If you are installing in a sub directory check the document below.

Subdirectories

If you are running 68 Classifieds in a sub directory then you will need to edit the .htaccess file and find RewriteEngine On. Below it add:

RewriteEngine On
RewriteBase /subdirectory

Where /subdirectory is the directory 68 Classifieds is located.

Foreign Characters

This is just for internal reference:

function convert_accented_characters($string) 
{
	$before=array(
	    "á","Á","ã","Ã",
	    "â","Â","à","À",
	    "é","É","ê","Ê",
	    "í","Í","ó","Ó",
	    "õ","Õ","ô","Ô",
	    "ú","Ú","ü","Ü",
	    "ç","Ç","ä","ö","ß");
	$after=array(
	    "a","A","a","A",
	    "a","A","a","A",
	    "e","E","e","E",
	    "i","I","o","O",
	    "o","O","o","O",
	    "u","U","ue","U",
	    "c","C","ae","oe","ss");
	return str_replace($before,$after,$string);
}

Have more questions? Visit our community forums.