• Recent
  • Unsolved
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Register
  • Login
  • Recent
  • Unsolved
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Register
  • Login

Updated To FOG 1.4.0 - Getting Blank White Page

Scheduled Pinned Locked Moved
FOG Problems
4
12
3.2k
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • N
    noelpd
    last edited by May 16, 2017, 4:43 PM

    Recently updated to the latest stable version of 1.4.0. After going through the following process

    1. Yum Update
    2. Git Pull
    3. Run 1.4.0 Installer/Upgrade

    I get a blank white page when trying to type the IP of the FOG Server Directly. However, When I type the full address it works fine getting to the GUI Login.

    I double checked my /var/www/html/index.php file and everything looks good and appears to be pointing to the correct location. Any ideas?

    1 Reply Last reply Reply Quote 0
    • G
      george1421 Moderator
      last edited by george1421 May 16, 2017, 10:46 AM May 16, 2017, 4:45 PM

      Are you referring to full address being http://<FOG_Server_IP>/fog ??

      Were you using some kind of rewriting rules in apache to redirect the user to the proper url? I remember during the 1.4.0RC releases people that had the redirection in place, it stopped redirecting them after an update.

      Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!

      N 1 Reply Last reply May 16, 2017, 4:53 PM Reply Quote 0
      • T
        Tom Elliott
        last edited by May 16, 2017, 4:51 PM

        What, exactly, does your /var/www/html/index.php file look like?

        Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG! Get in contact with me (chat bubble in the top right corner) if you want to join in.

        Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

        Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

        N 1 Reply Last reply May 16, 2017, 5:48 PM Reply Quote 0
        • N
          noelpd @george1421
          last edited by May 16, 2017, 4:53 PM

          @george1421 Yes, I had a redirect setup. See the contents of my file below…

          <?php
          header(‘Location: http://10.205.1.2/fog/management/index.php’);
          die();
          ?>

          1 Reply Last reply Reply Quote 0
          • N
            noelpd @Tom Elliott
            last edited by May 16, 2017, 5:48 PM

            @Tom-Elliott

            <?php
            header(‘Location: http://10.205.1.2/fog/management/index.php’);
            die();
            ?>

            T 1 Reply Last reply May 16, 2017, 5:55 PM Reply Quote 0
            • T
              Tom Elliott @noelpd
              last edited by May 16, 2017, 5:55 PM

              @noelpd In your apache configuration ( I don’t know if you’re using redhat based or debian based OS) you likely need to add: default index.php index.html index.htm;

              I provide this in the virtual host file for the “fog” system, but this would only impact fog folder access as it’s requested.

              For Redhat, the default httpd/apache config is located under:
              /etc/httpd/conf/httpd.conf (I think)
              For Debian, the default httpd/apache config is located under:
              /etc/apache2/sites-available/default.conf (or very close, sorry I can’t check exact values at the moment).

              Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG! Get in contact with me (chat bubble in the top right corner) if you want to join in.

              Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

              Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

              1 Reply Last reply Reply Quote 0
              • W
                wanderson
                last edited by wanderson May 16, 2017, 12:41 PM May 16, 2017, 6:40 PM

                Solution:

                1. Open file: /etc/httpd/conf.d/fog.conf
                2. Edit line DocumentRoot /var/ww/html/fog/
                3. Restart service httpd or apache
                4. Now test
                T N 3 Replies Last reply May 16, 2017, 6:45 PM Reply Quote 0
                • T
                  Tom Elliott @wanderson
                  last edited by May 16, 2017, 6:45 PM

                  @wanderson only if you don’t want the page to go through /fog/

                  Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG! Get in contact with me (chat bubble in the top right corner) if you want to join in.

                  Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                  Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                  1 Reply Last reply Reply Quote 0
                  • T
                    Tom Elliott @wanderson
                    last edited by Tom Elliott May 16, 2017, 8:12 PM May 16, 2017, 6:47 PM

                    @wanderson for Debian based file is /etc/apache2/sites-available/001-fog.conf

                    Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG! Get in contact with me (chat bubble in the top right corner) if you want to join in.

                    Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                    Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                    N 1 Reply Last reply May 16, 2017, 8:12 PM Reply Quote 0
                    • N
                      noelpd @Tom Elliott
                      last edited by May 16, 2017, 8:12 PM

                      @Tom-Elliott

                      The apache2 folder location does not exist on my server.

                      1 Reply Last reply Reply Quote 0
                      • N
                        noelpd @wanderson
                        last edited by May 16, 2017, 8:22 PM

                        @wanderson This worked for me. Thank you. Had to edit the line below document root since i had my php file in html and not fog.

                        W 1 Reply Last reply May 16, 2017, 8:37 PM Reply Quote 0
                        • W
                          wanderson @noelpd
                          last edited by May 16, 2017, 8:37 PM

                          @noelpd Thanks!!!

                          1 Reply Last reply Reply Quote 0
                          • 1 / 1
                          1 / 1
                          • First post
                            10/12
                            Last post

                          158

                          Online

                          12.1k

                          Users

                          17.3k

                          Topics

                          155.3k

                          Posts
                          Copyright © 2012-2024 FOG Project