@george1421 I’m getting the same error however mine is telling me that the login is incorrect for fogproject This is a new install as my old server died. Whats the default password suppose to be for fogproject?
Posts made by darkxeno
-
RE: Cannot Capture Image - Could Not Create File
-
How do you install 1.5.0 rc?
I havent updated in very long time
how do i upgrade to the lasten trunk of 1.5.0 ? i used the old
git clone https://github.com/FOGProject/fogproject.git /opt/fog_1.3.17
cd /opt/fog_1.5.0
git pull
cd bin
./installfog.shhowever that just took me to 1.4.4 can someone give me the updated codes for the lastest svn?
-
RE: FOG 1.5.0 RC 11
@tom-elliott ITs been so long since I updated my fog server I forgot how to get the leastest DEV Verison
-
RE: why is fog 1.3 asking for a username and password to get to the fog menu? i cant find a setting at all to turn this off
@Tom-Elliott could be it said you been inactive for 4 months lol
do you have any other ideas what i can do to fix this? -
RE: why is fog 1.3 asking for a username and password to get to the fog menu? i cant find a setting at all to turn this off
tom i sent you a messge on google talk
-
RE: why is fog 1.3 asking for a username and password to get to the fog menu? i cant find a setting at all to turn this off
@darkxeno <?php
/**- Boot page for pxe/iPXE
- PHP version 5
- @category Boot
- @package FOGProject
- @author Tom Elliott tommygunsster@gmail.com
- @license http://opensource.org/licenses/gpl-3.0 GPLv3
- @link https://fogproject.org
/
/* - Boot page for pxe/iPXE
- @category Boot
- @package FOGProject
- @author Tom Elliott tommygunsster@gmail.com
- @license http://opensource.org/licenses/gpl-3.0 GPLv3
- @link https://fogproject.org
*/
require ‘…/…/commons/base.inc.php’;
header(“Content-type: text/plain”);
$mac = array_merge(
explode(‘|’, $_REQUEST[‘mac’]),
explode(‘|’, $_REQUEST[‘mac0’]),
explode(‘|’, $_REQUEST[‘mac1’]),
explode(‘|’, $_REQUEST[‘mac2’])
);
$mac = array_filter($mac);
$mac = array_unique($mac);
$mac = array_values($mac);
$_REQUEST[‘mac’] = implode(‘|’, (array)$mac);
$Host = $FOGCore->getHostItem(false, false, true);
FOGCore::getClass(‘BootMenu’, $Host);
this the boot.php file
-
RE: why is fog 1.3 asking for a username and password to get to the fog menu? i cant find a setting at all to turn this off
#!ipxe
set fog-ip 10.0.0.22
set fog-webroot fog
set boot-url http://${fog-ip}/${fog-webroot}
cpuid --ext 29 && set arch x86_64 || set arch i386
iseq ${platform} efi && set key 0x1b || set key 0x1b
iseq ${platform} efi && set keyName ESC || set keyName Escape
prompt --key ${key} --timeout 0 Booting… (Press ${keyName} to access the menu) && goto menuAccess || sanboot --no-describe --drive 0x80
:menuAccess
login
params
param mac0 ${net0/mac}
param arch ${arch}
param platform ${platform}
param username ${username}
param password ${password}
param menuaccess 1
param debug 1
isset ${net1/mac} && param mac1 ${net1/mac} || goto bootme
isset ${net2/mac} && param mac2 ${net2/mac} || goto bootme
:bootme
chain -ar http://10.0.0.22/fog/service/ipxe/boot.php##params -
RE: why is fog 1.3 asking for a username and password to get to the fog menu? i cant find a setting at all to turn this off
@darkxeno on the ipxe if i put a user name and password on the boot menu it goes to the menu but on the web browser it says it can be found
-
RE: why is fog 1.3 asking for a username and password to get to the fog menu? i cant find a setting at all to turn this off
@Tom-Elliott yesterday after the upgrade and it was an upgrade
-
RE: why is fog 1.3 asking for a username and password to get to the fog menu? i cant find a setting at all to turn this off
Wed Dec 21, 2016 14:23 pm
Running Version 1.3.0-RC-37
SVN Revision: 6049i updated yesterday