Questions tagged [strapi]

Strapi is an open-source Node.js headless CMS built on top of Koa. It's frontend-agnostic and claims to not be an MVC framework. It auto-generate RESTful endpoints and has support for GraphQL and WebSockets.

2734 questions
0
votes
0 answers

error Command failed with signal "SIGSEGV" with strapi 4.10

I'm trying to test an auth endpoint in strapi, And in my strapi app I'm running migrations but everytime I run the migrations with this line await strapi.plugin('migrations').service('migrations').migrations(); It always fail with this error error…
0
votes
0 answers

Strapi filters - square bracket encoding

Per the strapi documentation, the way to filter a collection is to use a square bracket syntax in the request query, eg GET /api/users?filters[username][$eq]=John In the first instance when implementing this in my PHP application, I reached for the…
Nate
  • 511
  • 4
  • 14
0
votes
0 answers

Building strapi docker image behind HTTP proxy takes ages (~50min)

I created a strapi V4 project according to the Quick Start Guide. Next I built it as described in the docs Running Strapi in a Docker container using this Dockerfile: FROM node:16-alpine # Installing libvips-dev for sharp Compatibility RUN apk…
Marc0
  • 1
  • 1
0
votes
0 answers

Strapi locales API got 502 on reverse proxy domain Nginx

I’m configuring strapi using Nginx on CentOS7, I’ve successful on config reverse proxy and my domains work. However, when I get in strapi dashboard, my locales API(/i18n/locales) got 502 and it break the application, I’ve tried again with my IP…
Dave
  • 1
0
votes
0 answers

Strapi Cannot read properties of undefined (reading 'toISOString') while trying to delete dateTime picker

I have a problem with the datetime picker. In my Strapi dashboard, I have a field where users can specify a date and time. When I try to remove the date and time completely and make the input field empty, it throws the following error in the…
Nightcrawler
  • 943
  • 1
  • 11
  • 32
0
votes
0 answers

Strapi Default Admin User Login via post request or api url

Currently i'm using strapi v 4.10.2 community version and trying to login as default admin user in browser through post request / api url trigger, of course the input is identifier and password, so rather than typing at login form i just prepare…
mazdacx3
  • 1
  • 2
0
votes
0 answers

Strapi Homepage request with array of items and their details

I am trying to set up a Strapi deployment to provide an API for my website. I am attempting to display a list of brands and their logos on the home page. I have tried two routes: Create a brand collection type, then a single collection "homepage"…
Nick Dart
  • 37
  • 4
0
votes
1 answer

How to Retrieve All Trips in Strapi API Based on a Many-to-Many Relationship with the Sport Collection?

I am working with Strapi (my API, while the app is built using React), and I have two collections: Sport and Trip. The Sport collection has a single attribute named "Name" and one of the Trip attributes is a relation named sports. These two…
Samuel
  • 1
0
votes
0 answers

Creating Strapi Repeatable Components

I find creating repeatable components in Strapi strange and confusing. To add a new component on Strapi, I use the following steps: 1. Click on Content-Type Builder 2. Under Components sub-section, click on Create new component 3. On the create new…
0
votes
1 answer

Strapi Navigation Internationalization: can’t save Chinese characters

I enabled internationalization in Strapi and in the Navigation Plugin. Everything works fine, until when I change “Home” to Chinese characters and click the Save button, nothing happens, but when I add an English letter or a number in front of the…
0
votes
0 answers

Strapi fails to stratup on AWS ECS

I have a strapi image and a postgres image and I deploy both of the to AWS ECS what happens is Postgres runs and is healthy Strapi tries to startup Strapi fails to startup because it tries to delete a column not existing on a relation Strapi is…
Ali Osman
  • 53
  • 7
0
votes
2 answers

Stripe webhook doesn't execute callback. Or am I missing something?

I have a project in Next.js with Strapi & Stripe. There is a webhook that is executed after successful payment and after that, it should run markProductAsSold callback, and it does but only at localhost. Also if I run only a callback (idk. on button…
0
votes
0 answers

How to add strapi images to next.js public folder

I'm building website with Next.js and strapi. I'm using build + export in next.js I need all images used in project to be put in next public folder so i don't have to host strapi dashboard. How to achieve this so: every image from strapi used in…
0
votes
1 answer

Why is my dynamic Vue 3 page not reloading its content on page change?

I have the following vue3 template file that fetches data from Strapi. It works on my local machine but when I run it online the content only loads on first page load and doesn't change when I change the page (It's all set up with one dynamic page).…
Lisa
  • 115
  • 11
0
votes
1 answer

How to interact with Strapi Menus plugin?

I've installed strapi-plugin-menus after restart the server I can't see anything on the admin sidebar. But the documentation shows there should be a Menus page link after Media Library.
Hasibur Rahman
  • 641
  • 2
  • 7
  • 18
1 2 3
99
100