Search for Ghost

@giacomosilli:
I think what @asta meant was that GhostHunter can only search for words with the “Latin” format (ex: English, French, Italian etc.) but for the moment it doesn’t work with words with the “Arabic” or “Asian” format for example.

Personally I have tried with Sino-Japanese characters and it’s not able to perform the search.

2 Likes

On the other hand, Solr search (open source, mentioned above) supports a large number of languages, including Chinese, Japanese, Arabic, etc. Of course developing a Ghost-Solr integration would be also great for those international use cases.

2 Likes

Didn’t realise search wasn’t built into Ghost until recently.
Quite surprising considering how the other parts worked beautifully but there’s no basic functionality like a search till now.
Guess I have to try GhostHunter for now.
Hope search makes it into the top feature list.

I think part of the reason certain features don’t exist is there’s not enough expertise / an upstream requirement (for example, the original issue links to this upstream issue for the specific feature, coupled with the fact the core team is meticulous in implementing features that work well. Ghost is still quite young, so it will take time for it to have a lot of features. Also, from what I can tell, there’s a lot of thought in deciding what order to implement something, and there are lots of things to think about, like the tradeoff between adding features and maintaining performance

2 Likes

I am quite suprised that Ghost does not have a search button. It has an amazing subscribe process which is easy, but from the get-go, Ghost is supposed to make it easier to get blogging, yet many of the basic or necessary features one would expect on a blog is not there and needs to be added manually. I think most bloggers are not devs and thus Ghost does not make it easy to get the basic features going.

I would love a search function built in.

3 Likes

yes, it’s a minor inconvenience, but I think this plugin is pretty easy to add:

despite that, built in search is something that most CMS’s ‘forget’ to build in.
I’m still unsure how is this not a feature that every blog needs by default; aka
what’s the reasoning to go without it.

It’s nice to see it’s planned

1 Like

I agree. Thanks for the tip, will check it out.

The issue that I have is this: I have a team of young students who wants to help me start blogging and writing for students and teenagers. I am the only one that can get something installed and set up but I am by no means a developer. So struggled to get Ghost up and running, now that it is done, great stuff! But then someone asked me: how do people search for specific questions etc that we will cover one a blog page just full of posts and I was like “oh yeah good question”.

I know Ghost has come a long way, but if they want more users to switch over to Ghost and focus more on writing…it seems you spend more time trying to get everything up and going and developing that writing.

Yes Ghost Pro solves many of that, but Ghost Pro does not have search either and it is expensive.

So I am glad to see it is planned, but would have thought it is a core feature from earlier on.

2 Likes

ElasticSearch support would be dope in the future.

1 Like

just an idea.

use sqlite3 as database for your ghost.
then there will be a database file.
open the database file via sqlite3.

$sqlite3 content/data/ghost-dev.db
SQLite version 3.11.0 2016-02-15 17:29:24
Enter “.help” for usage hints.
sqlite> .tables
accesstokens migrations refreshtokens
api_keys migrations_lock roles
app_fields mobiledoc_revisions roles_users
app_settings permissions sessions
apps permissions_apps settings
brute permissions_roles subscribers
client_trusted_domains permissions_users tags
clients posts users
integrations posts_authors webhooks
invites posts_tags

As you can see, all posts definitely stored in the table named ‘posts’.

sqlite> select * from posts;
id|uuid|title|slug|mobiledoc|html|comment_id|plaintext|feature_image|featured|page|status|locale|visibility|meta_title|meta_description|author_id|created_at|created_by|updated_at|updated_by|published_at|published_by|custom_excerpt|codeinjection_head|codeinjection_foot|og_image|og_title|og_description|twitter_image|twitter_title|twitter_description|custom_template

Then we got the structure of the ‘posts’ table.
As I tested, ‘slug’ is the route path of a recorded post.

let’s search posts contains ‘welcome’ as an example.
sqlite> select slug from posts where html like ‘%welcome%’;
slug
apps-integrations
welcome

then we can check the real post in browser.
http://localhost:2368/welcome
http://localhost:2368/apps-integrations

see, search things goes well in a shell bash.
all we need to do write js codes to do above operations and display the result correctly in ghost core server module.

anyone who familiar with ghost developing work can have a try for that.
any suggestion please guide.
I would like to implement it at part time.
Hope I can finish it soon.

1 Like

i just realised that the Ghost already has the search built in into the admin console, why not just enable that feature in the main theme too.

image

6 Likes

Yes. I too agree. Basic post search should be provided by Ghost natively. Many themes from Ghost Marketplace like Voice support search functionality but nothing beats native support. I guess with Ghost Content API now public, providing a basic search functionality shouldn’t be a hard task for the people at GHOST. Please guys, we need it!

1 Like

Hi folks, I’m currently considering migrating from WP to Ghost, I publish a long running blog with 60,000+ articles and our readers use search a lot to discover our back catalogue. Is Algolia still experimental/unreliable?

docs.ghost.org is powered by Algolia so I assume it’s reliable to use.

1 Like

Hello,
I also use Algolia, and I feel really good, this is the address if you want to see it

Warning I use adsense NOT profiled.

4 Likes

Can you provide more info on how you integrated Algolia search with Ghost?

There is a way here, but it seems outdated:

I checked https://docs.ghost.org/integrations/, but I saw no integration (maybe Ghost team can help with this?).

2 Likes

I built search with Google Custom Search, but I used the API. I use React as a front end, and the Ghost Content API. I get search results for my domain from Google, and let React parse it. This way I can style the search results as I please. Check it out, https://www.theportlandpour.com/. I’ll post a case study on how I built it next week, but I’m pretty happy with the results.

3 Likes

I was planning to take the same approach for search on my new blog (Google custom search API). You did a great job with yours!

If you would be willing to share a case study or some quick tips that would great! The Google side is easy, but I haven’t explored yet how to get the additional info re. my posts. Are you using the API to get featured images, etc. for the posts / pages that Google returns?

If I can’t find a Search option on a Website, I still use the following within the URL line: “site http://example.tld searchword” (without the quotation marks of course) and after hitting Enter I mostly get what I want. :-)

I know it’s not an elegant Solution but it works. Maybe it would be possible to pack this “Function” into a little Script or behind a Link on the actual Website to make it work like a good Search Function?!

1 Like

I have built a solution which we use on our blog at ciserro.com/blog, which i have shared as a gist. since we don’t use the frontend of ghost in our webapp (written in React), integrating this with your ghost installation is up to you, but this is a solution anyone can use with self hosting.

It uses elastic-lunr.js and @tryghost/content-api to provide a search api for ghost. it also provides an Archive feature which allows you to browse posts by month/year. This module exports 3 functions start,search, and archive. search and archive should be setup as express routes, while start should be used to start the search index. you will need to add your ghost credentials in the file before starting it. license is MIT, free to all to use and modify, no attribution needed.

gist: Search + Archive Implementation for a Ghost Blog · GitHub

note: you will need to install the dependencies before using. they are elastic-lunr and @tryghost/content-api.

best of luck,
Garrett Morris

Thanks! I haven’t forgotten about this. I’m finishing the case study this week, but adding some detail. I’ll post the link here when it’s done, but, tldr: set up Google Custom Search, use the REST API to make the request, when you get the response, parse the links for slugs. With an array of slugs, request the content from the Ghost Content API, and display as you see fit. Also, don’t forget to update state with the search page number. IIRC, Google only returns 10 links per request.