Skip to main content

Posts

Showing posts from May, 2012

install os in virtual box from ISO

-- i copy paste from https://forums.virtualbox.org/viewtopic.php?f=7&t=24426-- Just worked through this (ver 4.0.0) as a tool for testing VistaPE boot disks. I found it was pretty simple once you find the Menus you need. What worked for me was: Use Settings -> Storage -> IDE Controller to setup the Virtual DVD (i.e. ISO DVD Image) Then use the green + sign to add a new device. When prompted to, during the add, browse to the bootable ISO file that is to be used as the Virtual DVD (DVD image) to install. Then make sure the ISO is assigned as the Primary Master for the Virtual DVD. The Storage Form, right panel has the drop-down box to configure devices. You can setup several ISO files and the Host CD drive as primary and secondary virtual devices. By configuring the Primary and Secondary Drive assignments, you can boot from any image or from a physical Host drive. Hope this saves someone some time and results in less wasted DVD blanks.
 hi there. easy auto logout PHP page. 1) insert the following code in the scripts that you want. $inactive = 5; // Set timeout period in seconds if (isset($_SESSION['timeout'])) { $session_life = time() - $_SESSION['timeout']; if ($session_life > $inactive) { session_destroy(); LATER please add the following javascript....using echo "" i cant write it out.else it will effect my blog T_T also please put header refresh function to refresh your page alert('YOUhavebeenloggedout') window.location = "" } } $_SESSION['timeout'] = time();