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

    Latest FOG 0.33b

    Scheduled Pinned Locked Moved
    General
    77
    1.6k
    6.3m
    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.
    • E
      Ed Blom
      last edited by

      exported from .32 using phpmyadmin.
      What was important for us was the host name, mac address and hardware info.
      So we exported to .csv format the hosts from the old .32 install.
      Finessed the data in excel, we had to add four columns. then imported the .csv in the new install.
      same with printers and images.
      The easiest one was inventory -which holds all your hardware info, this was a straight SQL export.

      So you need to csv export:

      • hosts

      • images

      • printers -if you use printers-

      • inventory (SQL table export)

      Then use phpmyadmin on .33 and import into the sql.

      I can be more specific, but that’ll be Monday when I’m back at work.

      1 Reply Last reply Reply Quote 0
      • Tom ElliottT
        Tom Elliott
        last edited by

        Thank you ed.

        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
        • Tom ElliottT
          Tom Elliott
          last edited by

          r981 out.

          Added ID searching fields to the Group and Host searching elements.

          Still working towards reintegrating Internationalization bits, but almost there!.

          Moved inventory display to Inventory Class.

          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
          • E
            Ed Blom
            last edited by

            Hmm I’ve imported all my stuff and search does not work 😞

            1 Reply Last reply Reply Quote 0
            • Tom ElliottT
              Tom Elliott
              last edited by

              You may have to ensure the hostid matches the inventory hostid

              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
              • Tom ElliottT
                Tom Elliott
                last edited by

                Also,

                Have you upgraded to the latest revision? I’m guess you have, but that would only leave the thought from above. When you imported the hosts, did you import as CSV? If you did with CSV, it recreates the hostID’s so the Inventory table’s iHostID would be incorrect.

                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
                • E
                  Ed Blom
                  last edited by

                  Yes I’m on R982, I’ve imported the hostid’s from CSV into a testserver then exported the SQL to my NEW testserver… I’ll double check, I can click on hardware for a host and get the correct info

                  BTW a search for a dell[FONT=sans-serif][COLOR=#000000] service tag, results in fog showing me all my hosts[/COLOR][/FONT]

                  1 Reply Last reply Reply Quote 0
                  • Tom ElliottT
                    Tom Elliott
                    last edited by

                    What element of the search are you looking for?

                    Here are all the options that are searched for:

                    [php] public $searchQuery = ‘SELECT hosts.* FROM hosts
                    LEFT OUTER JOIN
                    (SELECT * FROM hostMAC WHERE hmMAC LIKE “%${keyword}%”) hostMAC
                    ON (hmHostID=hostID)
                    LEFT OUTER JOIN
                    inventory
                    ON (iHostID=hostID)
                    LEFT OUTER JOIN
                    (SELECT * FROM groups INNER JOIN groupMembers ON (gmGroupID=groupID) WHERE groupName LIKE “%${keyword}%” OR groupDesc LIKE “%${keyword}%”) groupMembers
                    ON (gmHostID=hostID)
                    WHERE
                    hostID LIKE “%${keyword}%” OR
                    hostName LIKE “%${keyword}%” OR
                    hostDesc LIKE “%${keyword}%” OR
                    hostIP LIKE “%${keyword}%” OR
                    hostMAC LIKE “%${keyword}%” OR
                    groupID LIKE “%${keyword}%” OR
                    groupName LIKE “%${keyword}%” OR
                    groupDesc LIKE “%${keyword}%” OR
                    iSysserial LIKE “%${keyword}%” OR
                    iCaseserial LIKE “%${keyword}%” OR
                    iMbserial LIKE “%${keyword}%” OR
                    iPrimaryUser LIKE “%${keyword}%” OR
                    iOtherTag LIKE “%${keyword}%” OR
                    iOtherTag1 LIKE “%${keyword}%” OR
                    iSysman LIKE “%${keyword}%” OR
                    iSysproduct LIKE “%${keyword}%”
                    GROUP BY
                    hostID DESC’;[/php]

                    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
                    • E
                      Ed Blom
                      last edited by

                      [FONT=Ubuntu][COLOR=#555555]If I do a search for [/COLOR][/FONT][FONT=monospace][COLOR=#dd0000]iSysserial[/COLOR][/FONT]

                      [FONT=Ubuntu][COLOR=#555555]HDYZDK1 or a host [/COLOR][/FONT][FONT=Ubuntu][COLOR=#555555]name like 2014-spare-01 or part of a name[/COLOR][/FONT]
                      [FONT=Ubuntu][COLOR=#555555]Fog will show ALL my hosts.[/COLOR][/FONT]

                      [FONT=Ubuntu][COLOR=#555555]Also doublechecked my hostID and inventory iHostID they match.If I seach for something I know is not there I get an error searching message.[/COLOR][/FONT]

                      1 Reply Last reply Reply Quote 0
                      • Tom ElliottT
                        Tom Elliott
                        last edited by

                        When you look at inventory, are all the hosts sitting with the same information?

                        I have one of my systems, (while I’ve been testing) set with serial iSysserial as abcd1234, and another set to antidisestab (again, just to test) and when I search for serial, it gives me the proper host. If I search for something as simple as “abc” I have a few hosts which show up because their mac address contains that as well.

                        I’ve not been getting all my hosts though which makes me wonder what your individual host information is set as.

                        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
                        • E
                          Ed Blom
                          last edited by

                          [S]I have 820 hosts… a mix of various Optiplexes and Lenovos. my naming convention is location,room,machine number[/S]
                          [S]so es-45-01 etc[/S]

                          [S]Went back into the sql database to make triple sure my ID’s matched up.[/S]
                          [S]I’m now in the process of creating a VM of a .33 with “new” hosts, to check if my imports messed it up[/S]

                          [COLOR=#ff0000][B]Scratch all of that, changed over to Firefox and it works ( I was using chrome with a ton of add-ons)[/B][/COLOR]

                          1 Reply Last reply Reply Quote 0
                          • Tom ElliottT
                            Tom Elliott
                            last edited by

                            Yeah,

                            I use Chrome for most of my stuff, but try to test across all types, (IE, Firefox, Chrome, Safari, Mobile platforms) but I have no add-ons except ad-blocker for me!

                            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
                            • Tom ElliottT
                              Tom Elliott
                              last edited by

                              r984 release.

                              Contains fixes for capone.php in looking for imageDD which always returns 0. It should have been looking for case [1-4] not [0-3] and should be looking for imageTypeID Field.

                              I fixed this, but did it on direct source. The next time I copied changes over, it got overwritten with the old data.

                              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
                              • Tom ElliottT
                                Tom Elliott
                                last edited by

                                r985 is out,

                                User Tracking works properly. As far as I can tell, Printers seem to work as well. It seems to give the interactive desktop service if you’ve installed the printer, and then removed it. After a period of time it tries to readd that printer which seems to cause the popup of the IDS thing. Other than that, it seems to install in either case, and I’ve tested printing and it actually sends the job properly. I haven’t tested local or iprint, but I’m sure it will work in much the same fashion.

                                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
                                • E
                                  Ed Blom
                                  last edited by

                                  My capone is stuck on finding DMI… never does anything

                                  1 Reply Last reply Reply Quote 0
                                  • Tom ElliottT
                                    Tom Elliott
                                    last edited by

                                    I’m not really an expert with the plugins’, but doesn’t the DMI field have to equal that of an existing field for inventory?

                                    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
                                    • E
                                      Ed Blom
                                      last edited by

                                      yes… well you can set that up in capone to use certain dmi fields… but mine gets stuck reading dmi it seems like

                                      1 Reply Last reply Reply Quote 0
                                      • Tom ElliottT
                                        Tom Elliott
                                        last edited by

                                        We have a person who seems to have this working.

                                        I’ve never used plugins but it seems that if your DMI field is set to Bios-version, and you type 1.0 in the DMI Field, all systems that match that would be assigned with the appropriate information such as: imageID, join domain, or what have you.

                                        Again, I don’t really know how this all works so I could be talking out my *** here. Maybe somebody with knowledge/understanding of how this works can chime in?

                                        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
                                        • E
                                          Ed Blom
                                          last edited by

                                          +1 for the *** reference! On 32 Capone works BUT I did had to modify something, cannot remember what, but I was using system product, like optiplex620 assigned to a optiplex image, it works great.

                                          1 Reply Last reply Reply Quote 0
                                          • Tom ElliottT
                                            Tom Elliott
                                            last edited by

                                            r987 out. Its only a minor change but user tracking seems to work properly now in that you can change the date.

                                            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
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 6
                                            • 7
                                            • 8
                                            • 77
                                            • 78
                                            • 6 / 78
                                            • First post
                                              Last post

                                            207

                                            Online

                                            12.0k

                                            Users

                                            17.3k

                                            Topics

                                            155.2k

                                            Posts
                                            Copyright © 2012-2024 FOG Project