Windows
Step 1: Install this XAMPP from https://www.apachefriends.org/download.html
Step 2: Copy/extract Open Enventory files into C://XAMPP/htdocs/ . Write down the folder name because this will be the web address. In this case the folder is named ‘enventory’
Step 3: Start XAMPP and start Apache and MySQL
![](https://open-enventory.gitbook.io/~gitbook/image?url=https%3A%2F%2F1203731670-files.gitbook.io%2F%7E%2Ffiles%2Fv0%2Fb%2Fgitbook-legacy-files%2Fo%2Fassets%252Fuser-guides%252F-LrirhSRb_XkNoGqVYHh%252F-LrirwNstMqkn3CAR0R6%252F0.png%3Fgeneration%3D1571670706341509%26alt%3Dmedia&width=768&dpr=4&quality=100&sign=de08abb9&sv=2)
Step 4: setting up root password for MySQL. This changes with XAMPP version so consult this FAQ for specific details.
Step 5: Change php.ini content by clicking on Config button on the same row with Apache on XAMPP panel to match the following:
error_reporting = E_ALL & ~E_WARNING & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
(otherwise some warnings being displayed will break the functionality)safe_mode=Off
magic_quotes_gpc=Off
upload_max_filesize=64M # (or higher)
post_max_size=64M # (or higher)
If still warnings appear in the generated HTML code (breaking open enventory), you should set:
display_errors=Off # (especially on PHP 7+)
Step 6: Change my.cnf (or my.ini) content by clicking on Config button on the same row with MySQL on XAMPP panel to match the following under [mysqld]
section:
Step 7: Restart both Apache and MySQL service by clicking on Stop and then Start for each service.
Step 8: Open this link in your web browser: http://localhost/enventory/ and log in with the following info:
"Database": <database-name> "database-name" can be whatever you choose but should not have blank space and unique; I suggest short name is better as well.
"Username": root (It has to be the exact word "root" for this set up first)
"Password": the root password that we set in the step above
Then click on "Inventory".
![](https://open-enventory.gitbook.io/~gitbook/image?url=https%3A%2F%2F1203731670-files.gitbook.io%2F%7E%2Ffiles%2Fv0%2Fb%2Fgitbook-legacy-files%2Fo%2Fassets%252Fuser-guides%252F-LrirhSRb_XkNoGqVYHh%252F-LrirwNweuW_c6it1Qoi%252F4.png%3Fgeneration%3D1571670706321717%26alt%3Dmedia&width=768&dpr=4&quality=100&sign=8ce0dfc4&sv=2)
Step 9: If successful, it will bring up something similar to this page:
![](https://open-enventory.gitbook.io/~gitbook/image?url=https%3A%2F%2F1203731670-files.gitbook.io%2F%7E%2Ffiles%2Fv0%2Fb%2Fgitbook-legacy-files%2Fo%2Fassets%252F-LriQ0HJOhOOr26B9YAt%252F-M4RAkRaEL15Ql303kfg%252F-M4RBBHlyc0MdNC6TVMn%252Fimage.png%3Falt%3Dmedia%26token%3Da2db5465-b878-4b12-9ef1-952fbf391146&width=768&dpr=4&quality=100&sign=890d5d4a&sv=2)
If you are locked from login due to incorrect entries of username and password (for 30 min), find the file named “openenv.log” which you can find in a similar path given below:
C:\Users\sr\AppData\Local\Temp\ openenv.log
Open the file with any text editor program (Notepad), delete the content, save and restart XAMP and then try to access Open Enventory again (http://localhost/enventory/)
Last updated
Was this helpful?