Prevents the image id being saved to the database during the host file upload process
-
found this in the below guide and thought i should add it here in case this hasn’t been picked up on
[url]http://wiki.rscwmsystems.org.uk/images/4/47/Using_Fog.pdf[/url]There appears to be a bug on Fog v0.32 which prevents the image id being saved to the
database during the host file upload process. I was able to correct this by editing
[CODE]/var/www/fog/management /includes/hosts.upload.include.php, and inserting:$host->setImage($img);[/CODE]
before
[CODE]if ( $core->getHostManager()->addHost( $host, $currentUser ) )[/CODE]
which is near line 55 -
Not relevant anymore. Code was rewritten in 0.33.
-
Is all working properly I’m assuming. Just trying to gain closure on the bugs if at all possible.