• [Problem] Storage Node connection issues after updating to FOG 1.6

    Unsolved
    5
    0 Votes
    5 Posts
    697 Views
    F

    @Tom-Elliott Thanks, going to switch back to 1.6 very soon.

  • rocky linux 9.6 quirks & php 8

    Unsolved
    4
    0 Votes
    4 Posts
    164 Views
    Tom ElliottT

    @mrowand The whole point of the checkAuthAndCSRF is to prevent unauthorized access. Based on the message I’m seeing, the 403 forbidden is happening because it’s crossing origin to get the data or the CSRF token isn’t passing correctly:

    Here’s the code that validates:

    // Optional defense-in-depth: Origin/Referer check for state-changing requests public static function checkOrigin(array $allowedOrigins): void { $method = strtoupper($_SERVER['REQUEST_METHOD'] ?? 'GET'); if (!in_array($method, ['POST','PUT','PATCH','DELETE'], true)) { return; } $origin = $_SERVER['HTTP_ORIGIN'] ?? null; $referer = $_SERVER['HTTP_REFERER'] ?? null; if ($origin) { foreach ($allowedOrigins as $allowed) { if (stripos($origin, $allowed) === 0) { return; } } http_response_code(403); echo _('Forbidden (disallowed Origin)'); exit; } elseif ($referer) { foreach ($allowedOrigins as $allowed) { if (stripos($referer, $allowed) === 0) { return; } } http_response_code(403); echo _('Forbidden (disallowed Referer)'); exit; } // If neither header is present, you can decide to be strict or lenient. // Often lenient to avoid breaking weird client setups. }

    I suspect your console has more information leading to the specific error that was hit.

    ultimately the code is working as expected and there’s something in your environment causing the issue. Now, to be fair, you said you installed Stable, and Dev-branch has a fix of which I admit I missed.

    If you’re willing/able to install the dev-branch I suspect you’ll see this is working much better.

  • Log Viewer not working after update

    Solved
    7
    0 Votes
    7 Posts
    2k Views
    C

    @Tom-Elliott Yes this did work. Thank you for your quick action.

  • FOG Dashboard not accurately showing Active and Available Storage Group Activity

    Unsolved
    2
    0 Votes
    2 Posts
    812 Views
    F

    I’m having the exact same behavior.
    Was working on the 27, 28 and 29.

    Stopped working start of this week (2 september)
    Added 3 storage nodes in between.
    1a07ba58-be68-4007-a60c-5532e6c42e41-image.png

  • 0 Votes
    17 Posts
    3k Views
    Tom ElliottT

    @Fog_Newb probaly just typoed it and i went with it too lol.

  • FOG 1.6.0-beta.2143 - Search no longer working with serial numbers

    Unsolved
    1
    0 Votes
    1 Posts
    217 Views
    No one has replied
  • Fog 1.6.0-beta.2141 remove folder with image

    Unsolved
    1
    0 Votes
    1 Posts
    242 Views
    No one has replied
  • FOG 1.6.0-beta.2134 - Host won't add automatically

    Solved
    8
    0 Votes
    8 Posts
    813 Views
    S

    @Tom-Elliott the device is showing in pending devices now, thank you!

  • Can’t deploy image under hyper-v ( windows11) kernel 6.6.44

    Unsolved
    3
    0 Votes
    3 Posts
    429 Views
    R

    It doesn’t work with 6.6.49 too and 6.6.34.

  • Fog 1.5.10.1604 Unable create new host

    Unsolved
    2
    0 Votes
    2 Posts
    339 Views
    S

    Update to fog 1.6 fixed problem

  • FOG 1.6.0-beta.2123 - Instant task PowerManagement error

    Unsolved
    1
    0 Votes
    1 Posts
    364 Views
    No one has replied
  • 1.6.0-alpha - Unable to change host location

    Solved
    5
    0 Votes
    5 Posts
    622 Views
    S

    @Tom-Elliott updated and working - thanks for fixing!

  • 1.6.0-alpha.1401 - Storage node not adding correctly

    Solved
    8
    0 Votes
    8 Posts
    802 Views
    S

    Great, thanks. Bug resolved!

  • 1.6.0-alpha.1377 not showing available images on host

    Unsolved
    20
    0 Votes
    20 Posts
    3k Views
    S

    @Tom-Elliott said in 1.6.0-alpha.1377 not showing available images on host:

    Now, we have heard occasionally people have UI loading slowdowns when they’re suing FOG Client in their environment and the number of machines and check in times are just too frequent for the FOG Server to keep up and respond to all of them.

    Sounds about right, I’ve turned it to 5 minutes but maybe I’ll try it at 30 and see what happens. We have about 1300 host entries (although they’re probably not all active now) but most should be off during the summer holidays. Thanks

  • Display problem client groups

    Unsolved
    13
    0 Votes
    13 Posts
    2k Views
    Tom ElliottT

    @oelked I’m not sure I understand.

    What is Persistent Groups plugin not doing that you’re hoping for?

    Don’t get me wrong, a plugin building is a good time, as it helps you learn how to hook and event things in the FOG UI as well as potential interactions with other elements as possible. Just I don’t understand the scope of the problem you’re having that Persistent Groups couldn’t address.

  • Error creating locations

    Unsolved
    4
    0 Votes
    4 Posts
    637 Views
    O

    Hello, no problem, I’ll try to describe it in more detail
    Steps to reproduce

    Create location

    Set location name

    -Storage Group
    Establish

    Storage Node
    Omit because Node is not yet created or exists

    Set Storage Node Protocol HTTP

    Use inits and kernels from this node True

    Add

    no error occurs

    Location is created.

    When you create another location using the same procedure, the previous one will be overwritten
    no new location will be created.

    This behavior only occurs if no storage node is stored.

    I noticed this behavior because I wanted to create my location structure in the master before I created all the storage nodes.

  • Scheduled Imaging - UTC Time

    Unsolved
    2
    0 Votes
    2 Posts
    520 Views
    Tom ElliottT

    @Outer2211 Why is this a bug?

    If the timezone isn’t defined (in the FOG Settings) it should default to the UTC time as it wouldn’t know what timezone your system is in.

  • "Image size: ON CLIENT" shows the total size of the captured disk

    Solved
    3
    0 Votes
    3 Posts
    2k Views
    S

    @Tauric From the pictures we see that FOG recognized the filesystem as NTFS and should be able to resize it. It’s still strange the size was larger. Good you got this fixed by reinstalling the master to capture from. No idea what could have been wrong with the other one.

  • [FOG 1.5.10] - Log Viewer displaying blank drop down menu

    Unsolved
    3
    0 Votes
    3 Posts
    838 Views
    D

    @Sebastian-Roth Thanks for the update! Again, this feature for us is more of a “nice to have” than an essential, so no immediate rush. I know all of y’all are busy!

  • Log Viewer Blank

    Moved Unsolved
    10
    0 Votes
    10 Posts
    2k Views
    S

    @mronh I had a bit of time today and started looking at it. This is a bigger issue, code security involved and I wasn’t able to fix this in the time given.

    I have got it on my list of things to fix when I find some more time.

143

Online

12.3k

Users

17.4k

Topics

155.8k

Posts