• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space
  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

Got Error when do search

Status
Not open for further replies.

kopox

Chevereto Member
i got this error when using search function

Fatal error [400]: SQLSTATE[HY000]: General error: 1191 Can't find FULLTEXT index matching the column list
Triggered in /app/lib/classes/class.listing.php at line 219

Stack trace:
#0 /app/routes/route.user.php(236): CHV\Listing->exec()
#1 /lib/G/classes/class.handler.php(206): G\Handler->{closure}(G\Handler)
#2 /lib/G/classes/class.handler.php(110): G\Handler->processRequest()
#3 /app/loader.php(256): G\Handler->__construct(Array)
#4 /index.php(20): include_once('/app/loader.php')
 
Is just a small error in app/routes/route.user.php

Replace this:
PHP:
$where = $user["search"]["type"] == "images" ? "WHERE image_user_id=:user_id AND MATCH(image_name, image_description, image_original_filename) AGAINST(:q)" : "WHERE album_user_id=:user_id AND MATCH(album_name) AGAINST(:q)";

With this:
PHP:
$where = $user["search"]["type"] == "images" ? "WHERE image_user_id=:user_id AND MATCH(image_name, image_title, image_description, image_original_filename) AGAINST(:q)" : "WHERE album_user_id=:user_id AND MATCH(album_name) AGAINST(:q)";

This patch will be included in 3.5.12
 
Status
Not open for further replies.
Back
Top