Hello,
I am new to Gibbon and have installed the latest version ( as of this writing, V31). I don’t know the effects of this error on the system, and what to do to fix it too.
module: user
error: Module error due to incorrect manifest file or folder name.
I am using Docker in my installation using a Dockerfile by cloning the repository
FROM php:8.2
WORKDIR /var/www/html
RUN apt-get update && apt-get install -y \
libpng-dev \
libzip-dev \
unzip \
git \
curl \
libicu-dev \
libgettextpo-dev \
&& docker-php-ext-install \
pdo_mysql \
mysqli \
zip \
gd \
int \
bcmath \
opcache \
gettext
RUN a2enmod rewrite
RUN curl -sS https://getcomposer.org/installer | php \
&& mv composer.phar /usr/local/bin/composer \
&& chmod +x /usr/local/bin/composer
# clones the latest version
RUN git clone https://github.com/GibbonEdu/core.git
RUN git config --global --add safe.directory /var/www/html
RUN composer install --no-dev --optimize-autoloader
RUN chown -R www-data:www-data /var/www/html
EXPOSE 80
CMD ["apache2-foreground"]
I wanted to use a more stable tag, but I have no clue how to do it.
