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

Bugs in FOG 0.33

Scheduled Pinned Locked Moved Solved
Bug Reports
49
308
377.8k
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.
  • T
    Tom Elliott
    last edited by Mar 4, 2014, 10:34 PM

    It’s not a bug, persay, I just have to figure out why it’s storing the escaped sequence as the database value.

    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
    • B
      BigMan99211
      last edited by Mar 4, 2014, 10:39 PM

      😞

      … but what about the double “\” part? It get’s the domain and username part right, it just adds an extra \

      "Failure is not an option. It come pre-installed on Windows…" - Anonymous

      "Life is hard; It's harder if you're stupid" - John Wayne

      1 Reply Last reply Reply Quote 0
      • T
        Tom Elliott
        last edited by Mar 4, 2014, 10:43 PM

        Yep, that’s kind of a bug, but not really.

        If you look at your database, what does it show?

        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
        • B
          BigMan99211
          last edited by Mar 4, 2014, 10:55 PM

          I couldn’t tell you… I don’t mess with the database stuff.
          I’m like a bull in the proverbial “China Shop”. Next thing I know, the database gets deleted…

          …Not really, but I’m feeling froggy today! o_O

          Here’s a lesson kids… Don’t drink and image!

          BTW Tom, you have a quick tutorial on how to “examine” my database?

          "Failure is not an option. It come pre-installed on Windows…" - Anonymous

          "Life is hard; It's harder if you're stupid" - John Wayne

          1 Reply Last reply Reply Quote 0
          • T
            Tom Elliott
            last edited by Mar 4, 2014, 10:57 PM

            lol.

            I see the issue and it is a …confirmed bug. Looking into as we speak. In the midst of this, I found another bug, so I’ve also released r1280 to correct that bug.

            Thank you,

            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
            • B
              BigMan99211
              last edited by Mar 4, 2014, 11:07 PM

              WOOT! 😄

              "Failure is not an option. It come pre-installed on Windows…" - Anonymous

              "Life is hard; It's harder if you're stupid" - John Wayne

              1 Reply Last reply Reply Quote 0
              • L
                Lee Rowlett Developer
                last edited by Mar 6, 2014, 11:15 PM

                latest svn version typo under image management image path shows /images/images just need to remove the second images from path
                [IMG]http://s12.postimg.org/84riji5nx/typo.jpg[/IMG]

                1 Reply Last reply Reply Quote 0
                • T
                  Tom Elliott
                  last edited by Mar 6, 2014, 11:24 PM

                  That should be a bug persay. It pulls the data from the StorageNode Path.

                  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
                  • J
                    Junkhacker Developer
                    last edited by Mar 17, 2014, 8:24 PM

                    advanced menu stopped working. looks like it happened when code was moved from base.inc.php to BootMenuClass.php
                    changing advanced.php code from
                    [CODE]<?php
                    header(“Content-type: text/plain”);
                    require_once(‘…/…/commons/base.inc.php’);
                    print “#!ipxe\n”;
                    print $advanced;
                    ?>
                    [/CODE] to
                    [CODE]<?php
                    header(“Content-type: text/plain”);
                    require_once(‘…/…/commons/base.inc.php’);
                    $advanced = $FOGCore->getSetting(‘FOG_PXE_ADVANCED’);
                    print “#!ipxe\n”;
                    print $advanced;
                    ?>
                    [/CODE] makes it work again

                    signature:
                    Junkhacker
                    We are here to help you. If you are unresponsive to our questions, don't expect us to be responsive to yours.

                    1 Reply Last reply Reply Quote 0
                    • T
                      Tom Elliott
                      last edited by Mar 17, 2014, 11:08 PM

                      I’m going to push this fix, but with one minor mod.

                      Instead of assigning the advanced variable, why not just print the variable setting itself?

                      e.g. instead of:
                      [code]$advanced = $FOGCore->getSetting(‘FOG_PXE_ADVANCED’);
                      print “#!ipxe\n”;
                      print $advanced;[/code]

                      have this:
                      [code]print “#!ipxe\n”
                      print $FOGCore->getSetting(‘FOG_PXE_ADVANCED’);[/code]

                      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
                      • J
                        Junkhacker Developer
                        last edited by Mar 18, 2014, 3:47 AM

                        makes sense to me. thanks

                        signature:
                        Junkhacker
                        We are here to help you. If you are unresponsive to our questions, don't expect us to be responsive to yours.

                        1 Reply Last reply Reply Quote 0
                        • J
                          Junkhacker Developer
                          last edited by Apr 23, 2014, 3:19 PM

                          link added to footer directs to wrong location
                          [url]http://209.114.127.122/fog/management/index.php/fog/client[/url]
                          instead of
                          [url]http://209.114.127.122/fog/client[/url]

                          signature:
                          Junkhacker
                          We are here to help you. If you are unresponsive to our questions, don't expect us to be responsive to yours.

                          1 Reply Last reply Reply Quote 0
                          • J
                            Junkhacker Developer
                            last edited by Apr 23, 2014, 3:33 PM

                            error when trying to run report “FOG User Login History Summary”
                            [CODE]Failed to load Class file: Class: Functions, Error: Could not find file: File: Functions.class.php, Paths: /var/www/fog//lib/fog, /var/www/fog//lib/db, /var/www/fog//lib/pages[/CODE]

                            signature:
                            Junkhacker
                            We are here to help you. If you are unresponsive to our questions, don't expect us to be responsive to yours.

                            1 Reply Last reply Reply Quote 0
                            • T
                              Tom Elliott
                              last edited by Apr 23, 2014, 11:15 PM

                              [quote=“Junkhacker, post: 25903, member: 21583”]error when trying to run report “FOG User Login History Summary”
                              [CODE]Failed to load Class file: Class: Functions, Error: Could not find file: File: Functions.class.php, Paths: /var/www/fog//lib/fog, /var/www/fog//lib/db, /var/www/fog//lib/pages[/CODE][/quote]

                              Functions.class.php does not exist anymore. My guess is your server still contains the management/reports/* files.

                              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
                              • P
                                pmonstad
                                last edited by Apr 29, 2014, 10:08 AM

                                Image is set to use PartImage but still used Partclone when uploading an image.

                                1 Reply Last reply Reply Quote 0
                                • T
                                  Tom Elliott
                                  last edited by Apr 29, 2014, 10:33 AM

                                  That’s expected[quote=“pmonstad, post: 26268, member: 17422”]Image is set to use PartImage but still used Partclone when uploading an image.[/quote]

                                  The “PartImage/PartClone” selector is ONLY for Download tasks. The upload task will set the image to use partclone as that’s the method 0.33 is using now.

                                  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
                                  • P
                                    pmonstad
                                    last edited by Apr 29, 2014, 11:10 AM

                                    [quote=“Tom Elliott, post: 26269, member: 7271”]That’s expected

                                    The “PartImage/PartClone” selector is ONLY for Download tasks. The upload task will set the image to use partclone as that’s the method 0.33 is using now.[/quote]

                                    OK!

                                    1 Reply Last reply Reply Quote 0
                                    • P
                                      pmonstad
                                      last edited by Apr 29, 2014, 11:13 AM

                                      I get an error when deploying. Unable to locate image store. The client then restarts. I have successfully uploaded an image and the hosts are configured to use the correct image. The image is Win 7 Multiple partitions - single disk.

                                      1 Reply Last reply Reply Quote 0
                                      • P
                                        pmonstad
                                        last edited by Apr 29, 2014, 11:14 AM

                                        This post is deleted!
                                        1 Reply Last reply Reply Quote 0
                                        • P
                                          pmonstad
                                          last edited by Apr 29, 2014, 12:54 PM

                                          [quote=“pmonstad, post: 26279, member: 17422”]I get an error when deploying. Unable to locate image store. The client then restarts. I have successfully uploaded an image and the hosts are configured to use the correct image. The image is Win 7 Multiple partitions - single disk.[/quote]

                                          It seems to be a problem with the upload? in /images I olny find one file: t61, while my guess is this should be a folder containing two files, one for each partition? (win 7).

                                          How can I trouble shoot this one? No errors during the upload (as I am aware of).

                                          1 Reply Last reply Reply Quote 0
                                          • 1
                                          • 2
                                          • 12
                                          • 13
                                          • 14
                                          • 15
                                          • 16
                                          • 15 / 16
                                          • First post
                                            Last post

                                          220

                                          Online

                                          12.0k

                                          Users

                                          17.3k

                                          Topics

                                          155.2k

                                          Posts
                                          Copyright © 2012-2024 FOG Project