@mgsmus config:cache ve optimize çektikten sonra
php artisan scout:import "App\Models\Product"
komutunu çalıştırdım. Söyle bir hata aldım
Algolia\AlgoliaSearch\Exceptions\BadRequestException
Not enough rights to update an object near line:1 column:130
at vendor/algolia/algoliasearch-client-php/src/RetryStrategy/ApiWrapper.php:219
215▕
216▕ if (404 == $statusCode) {
217▕ throw new NotFoundException($responseArray['message'], $statusCode);
218▕ } elseif ($statusCode >= 400) {
➜ 219▕ throw new BadRequestException($responseArray['message'], $statusCode);
220▕ } elseif (2 != (int) ($statusCode / 100)) {
221▕ throw new AlgoliaException($statusCode.': '.$body, $statusCode);
222▕ }
223▕
env dosyamda SCOUT_DRIVER=algolia olarak ayarlı
ALGOLIA_APP_ID=**********
ALGOLIA_SECRET=*****************
algolia tarafından id ve secret da var
Model dosyama eklediklerim
use Laravel\Scout\Searchable;
use Searchable;
public function toSearchableArray() {
return ['product_name'];
}
Soyle bir durumda var SCOUT_DRIVE=tntsearch olarak ayarladığımda
All [App\Models\Product] records have been imported.
mesajını alıyorum. Ancak algolia paneline veri gitmiyor.