SugarPro-11.0.0.zip installer: PHP Sessions Configuration Error

Hello Sugar Dev Community

When trying to install Sugar Professional v11.0.0 on my local machine (with docker-compose, php:7.3-apache image) i ran into the problem, that when trying to start the installation procedure in the browser, the following PHP Session Configuration error pops up:

Saving Sessions seemed to work perfectly as in session.save_path saved sessions were visible and new sessions got saved. Furthermore, running init_set() from a standalone php file was also successful.

After reading the stackoverflow topic linked below, I moved lines 17 to 19 in install.php to line 37 (after setPhpIniSettings()) and the installation worked.

https://stackoverflow.com/questions/32814895/message-ini-set-a-session-is-active-you-cannot-change-the-session-modules

Did any of you ran into the same issue? Is this a bug or is it really a configuration specific problem?

Any Input is much appreciated.

Thanks
Benjamin

Parents
  • this is permission on your box, check the user permission and also the group

    Fullscreen
    1
    2
    3
    4
    RUN chmod -R 777 /var/www /var/www/.* \
    && chown -R www-data:www-data /var/www /var/www/.* \
    && usermod -u 1000 www-data \
    && chsh -s /bin/bash www-data
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Rodrigo Manara

    Sr. Developer

  • Thanks and ! I tried resetting the permissions as suggested by but no effect on the appearance of the errormessage. The strange thing is that up until this version of the installer, everything worked fine with my docker-compose setup.

    I will try an installation directly on the host and the solution suggested by next, to further analyze the problem.

Reply Children
No Data