Search Feature
Permalink
I already have a site built and running Concrete5. My problem is our search results. I am getting them in multiples of 3 for everything I search for and each link is taking me to the same exact page. I have attached screen shots. The index search code is here:
<?php defined('C5_EXECUTE') or die(_("Access Denied.")); class IndexSearch extends Job { public $jNotUninstallable=1; public function getJobName() { return t("Index Search Engine"); } public function getJobDescription() { return t("Index the site to allow searching to work quickly and accurately."); } public function run() { Loader::model('attribute/categories/collection'); Loader::model('attribute/categories/file'); Loader::model('attribute/categories/user'); Cache::disableLocalCache();
Viewing 15 lines of 30 lines. View entire code block.