No records being created when crawling site #36
Unanswered
roberthallatt
asked this question in
Q&A
Replies: 1 comment
-
Any ideas on why this is happening? The index is created but no pages are indexed. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have Meilisearch installed in a Docker container (on my staging server running Ubuntu) and can populate an index using CURL from the command line. But when I try index the site using laravel-site-search, everything looks like it worked fine in the terminal but when I check the index, no documents have been created. Have you had any other reports of this? Is there something I need to do with my docker set-up that I am not aware of? The funny thing is, it works fine locally on my Mac.
I am running Laravel 10 and PHP 8.1
After running the crawl command, If I run this:
curl -X GET http://172.19.0.22:7700/indexes/test-ATgwEZrpYOdOIYTd/documents
It results in this:
{"results":[],"offset":0,"limit":20,"total":0}
If I run
curl -X GET http://172.19.0.22:7700/indexes/movies/documents
I get
{"results":[{"id":287947,"title":"Shazam ⚡️","genres":"comedy"},{"id":287949,"title":"Thor ⚡️","genres":"action"},{"id":287948,"title":"Thor2 ⚡️","genres":"action"},{"id":2879455,"title":"Thor copy ⚡️","genres":"action"}],"offset":0,"limit":20,"total":4}
Beta Was this translation helpful? Give feedback.
All reactions