Bugs in FOG 0.33
-
That should be a bug persay. It pulls the data from the StorageNode Path.
-
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 -
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] -
makes sense to me. thanks
-
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] -
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=“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.
-
Image is set to use PartImage but still used Partclone when uploading an image.
-
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.
-
[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!
-
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.
-
This post is deleted! -
[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).
-
[quote=“pmonstad, post: 26298, member: 17422”]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).[/quote]
I am having this same issue. Single Partition, NTFS Only, Resizable
Latest Fog .33 SVN, Ubuntu 13.10 -
I have done some more tests. I have now installed the latest svn release. Uploading and downloading (deploy) a Win XP (Single disk, single partition) works OK.
Doing an upload from Win 7 (single disk, multi partitions) seems to work as there are no errors on the client. In the /image folder on server no files exists and FOG gui says the image is 0.00 GB on server and 68.8 on client.
In the /image folder there is a folder named as the MAC adress on the client. It contains d1.mbr, d1p1.img and d1p2.img
Running CentOS 5.10
-
This post is deleted! -
I search for a hosts in Host Management. A host is displayed several times. Identical info except different start time. There are no active tasks.
If I hit on the Download icon nothing happens.
-
[quote=“pmonstad, post: 26345, member: 17422”]I have done some more tests. I have now installed the latest svn release. Uploading and downloading (deploy) a Win XP (Single disk, single partition) works OK.
Doing an upload from Win 7 (single disk, multi partitions) seems to work as there are no errors on the client. In the /image folder on server no files exists and FOG gui says the image is 0.00 GB on server and 68.8 on client.
In the /image folder there is a folder named as the MAC adress on the client. It contains d1.mbr, d1p1.img and d1p2.img
Running CentOS 5.10[/quote]
The image type for the Windows XP is Multi-part, single disk? Granted there’s only one partition on XP, but the TYPE for the image is what I need.
Are both the Windows XP and Windows 7 of the same Imaging Type (Multi-partition, Single Disk?)
-
[quote=“pmonstad, post: 26347, member: 17422”]I search for a hosts in Host Management. A host is displayed several times. Identical info except different start time. There are no active tasks.
If I hit on the Download icon nothing happens.[/quote]
Sounds to me, more, like you were NOT searching in Host Management, but rather searching in Task Management.
-
[quote=“Tom Elliott, post: 26350, member: 7271”]The image type for the Windows XP is Multi-part, single disk? Granted there’s only one partition on XP, but the TYPE for the image is what I need.
Are both the Windows XP and Windows 7 of the same Imaging Type (Multi-partition, Single Disk?)[/quote]
The Win XP is Single Partition (NTFS Only, Resizable) and Win 7 is Multiple Partition Image - Single Disk (Not Resizable)