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

After FOG update, "imaging log" directs to blank page.

Scheduled Pinned Locked Moved Solved
FOG Problems
3
9
734
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.
  • S
    salted_cashews
    last edited by Mar 1, 2018, 5:02 PM

    Title says it all, recently completed our update and everything was working fine up until we went to check our imaging log. Where would I look to start troubleshooting?

    1 Reply Last reply Reply Quote 0
    • T
      Tom Elliott @salted_cashews
      last edited by Mar 2, 2018, 4:28 PM

      @salted_cashews /etc/php/7.0/apache2/php.ini

      Look for memory_limit

      Change to 256M restart apache.

      This isn’t going to fix the memory issue though as fog uses a db set value for it. Please see: http://fogserver/fog/management/index.php?node=about&sub=settings to edit the memory limit option. It should be under the general settings block. Change fogserver accordingly.

      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

      S 1 Reply Last reply Mar 2, 2018, 6:22 PM Reply Quote 0
      • S
        Sebastian Roth Moderator
        last edited by Mar 1, 2018, 5:54 PM

        @salted_cashews Apache logs, see my signature.

        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 1
        • S
          salted_cashews
          last edited by Mar 2, 2018, 2:09 PM

          Ok so I checked the logs and it pointed me in 2 directions. These are the results of the error log and the lines following in the respective files:

          PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 20480 bytes) in /var/www/html/fog/lib/fog/fogbase.class.php on line 2320
          line 2320 reads: foreach ((array)$other as $key => &$oth) {

          PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 20480 bytes) in /var/www/html/fog/lib/fog/fogcontroller.class.php on line 125
          line 125 reads: $this->databaseFields = array_unique($this->databaseFields);

          PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 20480 bytes) in /var/www/html/fog/lib/fog/fogcontroller.class.php on line 860
          line 860 reads: $methodCall = sprintf(‘load%s’, ucfirst($key));

          Is there more to this than I’m seeing? It sounds like we need to be able to allocate more memory than is being allowed?

          1 Reply Last reply Reply Quote 0
          • S
            Sebastian Roth Moderator
            last edited by Mar 2, 2018, 2:20 PM

            @salted_cashews There is a PHP option memory_limit you wanna increase. If you need help finding the right config file we need to know which Linux OS/version you use.

            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

            S 1 Reply Last reply Mar 2, 2018, 2:29 PM Reply Quote 0
            • S
              salted_cashews @Sebastian Roth
              last edited by Mar 2, 2018, 2:29 PM

              @sebastian-roth Ah of course, Ubuntu Server 16. Thanks.

              T 1 Reply Last reply Mar 2, 2018, 4:28 PM Reply Quote 0
              • T
                Tom Elliott @salted_cashews
                last edited by Mar 2, 2018, 4:28 PM

                @salted_cashews /etc/php/7.0/apache2/php.ini

                Look for memory_limit

                Change to 256M restart apache.

                This isn’t going to fix the memory issue though as fog uses a db set value for it. Please see: http://fogserver/fog/management/index.php?node=about&sub=settings to edit the memory limit option. It should be under the general settings block. Change fogserver accordingly.

                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

                S 1 Reply Last reply Mar 2, 2018, 6:22 PM Reply Quote 0
                • S
                  salted_cashews @Tom Elliott
                  last edited by Mar 2, 2018, 6:22 PM

                  @tom-elliott Thank you sir, I just changed it through the fog management webpage. Do I need to change it within php.ini as well or does this overwrite that file?

                  T 1 Reply Last reply Mar 2, 2018, 6:25 PM Reply Quote 0
                  • T
                    Tom Elliott @salted_cashews
                    last edited by Mar 2, 2018, 6:25 PM

                    @salted_cashews This doesn’t touch the file. However, it “overrides” it if that makes more sense.

                    You could’ve set php.ini to 1024M, if the fog settings wasn’t set to the same, you’d still be seeing the exact same memory problem.

                    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

                    S 1 Reply Last reply Mar 2, 2018, 6:28 PM Reply Quote 0
                    • S
                      salted_cashews @Tom Elliott
                      last edited by Mar 2, 2018, 6:28 PM

                      @tom-elliott It does, this was incredibly helpful thank you.

                      1 Reply Last reply Reply Quote 0
                      • 1 / 1
                      1 / 1
                      • First post
                        1/9
                        Last post

                      166

                      Online

                      12.0k

                      Users

                      17.3k

                      Topics

                      155.2k

                      Posts
                      Copyright © 2012-2024 FOG Project