Hello there. I just did a fresh install of Fuel CMS 1.3.2 and added the search and cron job modules. In the back-end, if I try to access /fuel/tools/search or /fuel/tools/cronjobs, I get redirected to the 404 page. If I try to use the search function on the front-end, I get:
A PHP Error was encountered
Severity: Notice
Message: Undefined variable: count
Filename: views/search.php
Line Number: 6
A PHP Error was encountered
Severity: Notice
Message: Undefined variable: count
Filename: views/search.php
Line Number: 6
Results for “
A PHP Error was encountered
Severity: Notice
Message: Undefined variable: q
Filename: views/search.php
Line Number: 6
”
I haven't used Fuel for a couple years, so I'm probably just forgetting a step. But I reviewed the docs and can't figure out what I'm missing.
Comments
On the front-end, "q" should be the name of the search field on the html form
// specifies which modules are allowed to be used in the fuel admin $config['modules_allowed'] = array( 'user_guide', 'search', 'cronjobs', ); <input type="text" id="q" class="q" name="q" value="" placeholder="Search...">