• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. Polii123
    3. Topics
    • Profile
    • Following 0
    • Followers 0
    • Topics 21
    • Posts 135
    • Groups 1

    Topics

    • Polii123P

      Always have to enter Login Credentials twice when deleting host

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved FOG Problems
      6
      0 Votes
      6 Posts
      2k Views
      Tom ElliottT

      Moved into FOG Problems for now.

      Moved as this should be much more prevalent than being reported currently. As stated, I’m not saying this isn’t a problem. Just saying it’s one that I cannot seem to replicate and it isn’t breaking any normal functionality.

    • Polii123P

      Login reports white page

      Watching Ignoring Scheduled Pinned Locked Moved Solved Bug Reports
      18
      1 Votes
      18 Posts
      5k Views
      Polii123P

      @Tom-Elliott
      Works perfectly now! Thanks a lot!

    • Polii123P

      After Update to RC-12 extremly slow

      Watching Ignoring Scheduled Pinned Locked Moved Solved Bug Reports
      13
      0 Votes
      13 Posts
      3k Views
      Wayne WorkmanW

      @Tom-Elliott So will you start including those? I don’t understand.

    • Polii123P

      Host Registration Service deactivation has no effect

      Watching Ignoring Scheduled Pinned Locked Moved Solved Bug Reports
      12
      0 Votes
      12 Posts
      4k Views
      Tom ElliottT

      A very simple question, I suppose, but do the hosts that are registering have the new or legacy client?
      Can you provide the client log of one of the “adding” systems? (If you are using legacy client please post one for each of the clients – one legacy client fog.log and one new client)

    • Polii123P

      User Tracker not working

      Watching Ignoring Scheduled Pinned Locked Moved Solved FOG Problems
      11
      0 Votes
      11 Posts
      3k Views
      Wayne WorkmanW

      @Tom-Elliott This would have worked too: https://wiki.fogproject.org/wiki/index.php?title=Troubleshoot_MySQL#Repair_broken_database

    • Polii123P

      "No entries" in Active Direcotry

      Watching Ignoring Scheduled Pinned Locked Moved Solved Bug Reports
      3
      0 Votes
      3 Posts
      1k Views
      Tom ElliottT

      Found and fixed for RC-14.

    • Polii123P

      Host Management and Image Management tanking forever to load

      Watching Ignoring Scheduled Pinned Locked Moved Solved FOG Problems
      4
      0 Votes
      4 Posts
      1k Views
      Tom ElliottT

      @Polii123 That’s what I would suspect, yes.

    • Polii123P

      Can't delete Host from Group

      Watching Ignoring Scheduled Pinned Locked Moved Solved Bug Reports
      6
      0 Votes
      6 Posts
      3k Views
      cmlC

      This ran in mysql will remove the hosts from the group. All you have to do is swap in your host and group names (leave the quotes).

      I also advise always backing up before you make any mysql changes.

      DELETE FROM groupMembers WHERE gmHostID = (SELECT hostId FROM hosts WHERE hostName="HOSTNAME") AND gmGroupID = (SELECT groupID FROM groups WHERE groupName="GROUPNAME");
    • Polii123P

      Better OU Management

      Watching Ignoring Scheduled Pinned Locked Moved Solved Feature Request
      10
      0 Votes
      10 Posts
      4k Views
      Lee RowlettL

      you could also set variables at registration stage in autoregister in the sense of if you know which OU a machine should go in by it’s naming convention (or by location if using location plugin) you could set it there and it gets set during registration then you never need to think about it and if it doesn’t match criteria revert back to defaultOU field… this potentially could be bundled into a simple plugin to hand OU … the limit really is endless (and i’m sure this code could be cleaned up a lot (Tom’d) and it’s quick and dirty but just so it’s simpler to follow…
      for example:

      if($_REQUEST['doad'] == '1') { //Room/Location 1 Example Handler $r1chk = strpos($realhost, 'R1-'); if ($r1chk !== false) { $r1 = "1"; } //Room/Location 2 Example Handler $r2chk = strpos($realhost, 'R2-'); if ($r2chk !== false) { $r2 = "1"; } //Room/Location 3 Example Handler $r3chk = strpos($realhost, 'R3-'); if ($r3chk !== false) { $r3 = "1"; } //Room/Location 4 Example Handler etc...etc... $r4chk = strpos($realhost, 'R4-'); if ($r4chk !== false) { $r4 = "1"; } if ($reallocid == "10" && $r1 != "1" && $r2 != "1" && $r3 != "1" && $r4 != "1") { $OUs = "OU=Location10,OU=Workstations,OU=Domain,DC=com"; } else if if ($reallocid == "15" && $r1 != "1" && $r2 != "1" && $r3 != "1" && $r4 != "1") { $OUs = "OU=Location15,OU=Workstations,OU=Domain,DC=com"; } else if ($r1 == "1") { $OUs = "OU=Room1,OU=Workstations,OU=Domain,DC=com"; } else if ($r2 == "1") { $OUs = "OU=Room2,OU=Workstations,OU=Domain,DC=com"; } else if ($r3 == "1") { $OUs = "OU=Room3,OU=Workstations,OU=Domain,DC=com"; } else if ($r4 == "1") { $OUs = "OU=Room4,OU=Workstations,OU=Domain,DC=com"; } else { $OUs = explode('|',$FOGCore->getSetting('FOG_AD_DEFAULT_OU')); }
    • Polii123P

      Can't edit groups

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved FOG Problems
      13
      0 Votes
      13 Posts
      4k Views
      Tom ElliottT

      This should now be fixed.

      The editing of groups was likely a problem that I hope to have fixed.

      When you removed hosts en-mass, it didn’t clear other associative fields.

      I’ve added a cleaner to this, to hopefully make editing these items a bit better.

      The blank screen is because apparently I need to adjust the version of PHP. I’ve updated the source to hopefully install at least php 56 for most OS’s though I don’t know everything.

    • Polii123P

      [3639] php5-json failed

      Watching Ignoring Scheduled Pinned Locked Moved Solved FOG Problems
      10
      0 Votes
      10 Posts
      7k Views
      W

      Ran into this again with r3706–>r3711

      Debian GNU/Linux 7 \n \l

      needed:

      apt-get install libapache2-mod-php5

      Tom fixed this in r3712. Thanks again Tom.

    • Polii123P

      Use NAS as NFS share

      Watching Ignoring Scheduled Pinned Locked Moved Unsolved FOG Problems
      10
      0 Votes
      10 Posts
      4k Views
      ch3iC

      @Wayne-Workman It’s only working if the NAS isn’t the Master Node, I think…

    • Polii123P

      Database Schema Installer / Updater not working

      Watching Ignoring Scheduled Pinned Locked Moved Solved FOG Problems svn3427 update database
      22
      0 Votes
      22 Posts
      14k Views
      Tom ElliottT

      @Polii123 said:

      @ch3i said:

      @Polii123 said:

      But how did they come into my config.class.php file?

      Maybe a ghost lol

      F*****g ghots 😡 I think Tom has to code some ghostbusters, so things like that won’t happen again. 😂

      3430 should not allow the brackets at all. I don’t know why it did it to begin with, but worse things have happened I suppose?

    • Polii123P

      Image size on server

      Watching Ignoring Scheduled Pinned Locked Moved Solved FOG Problems
      33
      0 Votes
      33 Posts
      13k Views
      Tom ElliottT

      @Polii123 This is because document root is looking at /var/www/fog (so you can access by simply http://localhost/) and still see fog. However, the FOG_WEB_ROOT setting is not reflecting this. So essentially it’s looking for the link:

      http://localhost/fog/status/hw.php in: /var/www/fog/fog/status which I’m going to guess doesn’t exist.

    • Polii123P

      Starting FOG Multicast Management Server...Failed

      Watching Ignoring Scheduled Pinned Locked Moved Solved FOG Problems
      3
      0 Votes
      3 Posts
      3k Views
      Polii123P

      Ok, i will use Wheezy then. Thanks for the fast answer.

    • Polii123P

      Another Slow Upload and Download Speed Thread

      Watching Ignoring Scheduled Pinned Locked Moved FOG Problems
      39
      0 Votes
      39 Posts
      20k Views
      Tom ElliottT

      Also, don’t forget that most of the time the speed issues are either going to be hardware limits now or point at a problem with connectivity to the NFS server.

    • Polii123P

      All Snapin Task not working

      Watching Ignoring Scheduled Pinned Locked Moved Solved Bug Reports
      6
      0 Votes
      6 Posts
      2k Views
      Joseph HalesJ

      I believe its alphabetical what I did was prefix my snapins with a number to force an install order it also helped to put my commonly used snapins at the top of the list.

    • Polii123P

      New Client: Active Directory join not working and Host deletet

      Watching Ignoring Scheduled Pinned Locked Moved Solved Bug Reports
      8
      0 Votes
      8 Posts
      3k Views
      Tom ElliottT

      While old I figure it pertinent that this is fixed in current svn. Was fixed at some point int he 3300’s.

    • Polii123P

      New Client 0 Bytes

      Watching Ignoring Scheduled Pinned Locked Moved Solved Bug Reports
      25
      0 Votes
      25 Posts
      13k Views
      ch3iC

      Hi,

      Updated to latest version and I haven’t the msi in the client folder.

      Regards,
      Ch3i.

      Edit : Solved using that : [url]http://fogproject.org/forum/threads/latest-development-fog.10556/page-28#post-44440[/url]

    • Polii123P

      Host-Management and Multicast

      Watching Ignoring Scheduled Pinned Locked Moved Feature Request
      12
      0 Votes
      12 Posts
      4k Views
      ?

      I’d kill for something like this, although there are definitely workarounds that we use like the temporary group suggestion. It’s a pain in the ass, but I am guessing there is no way to do it without groups.

    • 1
    • 2
    • 1 / 2