Hi Everyone,<br><br>I have implemented authorisation menu from this example "<a href="http://etherboot.org/wiki/appnotes/authmenus">http://etherboot.org/wiki/appnotes/authmenus</a>".<br><br>To make it fully running i had to fill it with some lack of code:<br>
<br><pre class="code"> <?php //missing part on website in menu.php file giving blank screen
title ( "Secure Network <span class="search_hit">Boot</span>" );
if ( ! authenticated() ) {
retry();
} else {
if ( $username == "mcb30" ) {
sanboot ( "MS-DOS 6.22",
"iscsi:chipmunk.tuntap::::iqn.2007-07.chipmunk:msdos622" );
sanboot ( "Windows 2k3",
"iscsi:chipmunk.tuntap::::iqn.2007-07.chipmunk:win2k3" );
}
uriboot ( "Linux rescue shell",
"<a href="http://chipmunk.tuntap/images/uniboot/uniboot.php">http://chipmunk.tuntap/images/uniboot/uniboot.php</a>", "" );
}
?></pre><br><br>All running fine but only over http. If im trying to load it over https and it says "Invalid argument (0x1c00e002)"<br><br>I was trying other project (iPXE) and there is no problem over https but i prefer gPXE because of better AoE compatibility.<br>
Is there any way to fix this issue?<br><br>Regards,<br>Slawek<br>