A easy to use and super quick way to organize your inventory, storage and storage areas.
There is a new website at https://sqstorage.net where you can actively support the development by renting paid hosting and support. This offer is for private and business users equally. Also, you can get a subdomain at yourname.sqstorage.net and password protected access in addition to the optional user system of sqStorage. If you do not feel like renting hosting and support, you always can make a donation using PayPal.me at https://paypal.me/dwroxnet .
Right now sqStorage is available in German, English and Polish. Feel free to add your own translation. See LANGUAGE.md for details on how to do so.
mysqli, gettext, intl,gdTo install sqStorage perform the following steps:
Download the files using git: git clone --recurse-submodules https://github.com/jrie/sqstorage
If not done before, update the meekrodb git submodule: git submodule init and git submodule update
Place the files in the target directory (accessible for the web-server)
Set the required folder permission
smartyfiles/ ,languages/locale/ and support/chown -R www-data smartyfiles/, chown -R www-data languages/locale/ and chown -R www-data support/ should work in most cases. Alternatively you can chmod +x setfolderpermssions.sh and execute using ./setfolderpermssions.sh if you are using bash.Visit sqStorage with your browser and you will be redirected to the install page
Your sgStorage installation is completed.
git submodule init and git submodule updateThe Installer install.php is only enabled if a file named allow_install exists within the support/ directory.
This file is installed by default.
If sqStorage is accessible from outside your home network, you should delete this file either
settings.php (login feature enabled)
To later update your installation, simple create the file manuallyAll this settings can be configured in support/dba.php
Default database: tlv
Default username: tlvUser
Default password: tlvUser
Default server: localhost
Default port: 3306
Default useRegistration: false
Default usePrettyURLs: true
Please note the user registration and login/logout can be enabled by setting the variable $useRegistration to true, otherwise the default disables this feature by setting this to false.
If you are planning to use $usePrettyURLs on Raspberry OS please ensure that the apache2 site configuration allows the usage of .htaccess.
This can be achieved by adding
<Directory /var/www/html>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
to the /etc/apache2/sites-enabled/000-default.conf site configuration (don't forget to restart apache afterwards systemctl restart apache2)
Alternatively $usePrettyURLs can be set to false in order to disable pretty urls. This might resolve some errors on Raspberry OS.
The directories smartyfiles/ , support/ and languages/locale/ need to be writeable for the webserver.
chown -R www-data smartyfolders/
chgrp -R www-data smartyfolders/
chown -R www-data support/
chgrp -R www-data support/
chown -R www-data languages/locale/
chgrp -R www-data languages/locale/
should work in most cases.
index.php to open sqStorageusers table in order to prompt for admin account registration again.If you are upgrading of an earlier version of sqStorage,
the custom fields code might have changed. This fields had been implemented earlier but where of no practical use.
the option to upload images was added
Still possible so, you might have to update your database by visiting the install.php script and updating your database in order to make use of the latest features.
sqStorage provides a REST-API for data access and manipuluation. See REST_API.md for details on how to use it.
Fatal error: Uncaught Error: Class 'Locale' not found If this error message is shown, the php package intl is not activated. If you're using Windows and XAMPP to run this app, you can enable it by editing the php.ini file in your XAMPP-php directory (Standard-installation: C:xamppphpphp.ini).
Remove the semicolon in front of
;extension=php_intl.dll
and restart the Apache webserver.
If you're running a Windows XAMPP development system, you need to start xampp-control by command line. Start the command line [WIN+R -> cmd.exe] and enter the command set LANG=en_GB (or de_DE, or ... you know) and start xampp-control c:xamppxampp-control.exe
The whole idea behind sqStorage or "Thom's Inventarverwaltung" can be found at the german bulletin board NGB.to over https://ngb.to/threads/39122-Webbasierte-Mini-Lagerverwaltung
Have fun using sqStorage.