Ad Widget

Collapse

Setup keeps returning to Welcome screen

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • swatts
    Junior Member
    • Dec 2017
    • 2

    #1

    Setup keeps returning to Welcome screen

    Hi,

    I have just installed Zabbix 3.4 using packages on CentOS 7.1, using php7.1 and mysql5.6

    The setup process will not let me get past the pre-requisite check, even though all steps are passed.

    Steps Taken:
    Navigate to /zabbix in a browser. I get redirected to /zabbix/setup.php as expected.

    The setup script displays a welcome screen, and I click 'Next Step' for pre-requisite steps.

    All checks are passed, so I click 'Next Step'.

    Expected Result
    The browser displays the next step 'Configure DB connection'

    Actual Result
    The browser returns to the initial setup screen 'Welcome'

    Any help with this would be really appreciated. There are no errors displayed in the apache logs.

    Thanks in advance
    Simon
  • Atsushi
    Senior Member
    • Aug 2013
    • 2028

    #2
    What do you use for collaboration between Apache HTTP Server and PHP?

    It seems that you do not use the standard PHP package, so it is probable that the permission to PHP session information is insufficient and the screen transition session can not be used.

    Please check PHP settings and directory permissions for saving sessions.

    Comment


    • m!k3yn
      m!k3yn commented
      Editing a comment
      Hie, Am facing the same issue as swatts. How do I check for the PHP settings and permissions and what it is I'll be checking on editing?

      So there's this Default Language setting that's popping up that wasn't there before, could that be the issue?
      Last edited by m!k3yn; 03-03-2021, 11:23. Reason: Just adding some more info
  • swatts
    Junior Member
    • Dec 2017
    • 2

    #3
    Thanks for the reply Atsushi.

    If I understand correctly, you are asking how apache is configured for php. Here is the configuration:

    Code:
    <IfModule prefork.c>
      LoadModule php7_module modules/libphp7.so
    </IfModule>
    
    <IfModule !prefork.c>
      LoadModule php7_module modules/libphp7-zts.so
    </IfModule>

    Comment

    Working...