Name | Modified | Size | Downloads / Week |
---|---|---|---|
vims-12.07 | 2017-01-31 | ||
vims-12.06 | 2017-01-25 | ||
vims-12.06-UPDATE.1.0 | 2017-01-24 | ||
README.md | 2017-01-21 | 4.7 kB | |
Totals: 4 Items | 4.7 kB | 5 |
For installation and setup instructions, see INSTALL.md located in the _install directory
Everything You Need to Print Professional-Quality Cards
Set up your card printing system and begin producing photo IDs in minutes with this Solution—no software expertise necessary. It includes everything you need to quickly and cost-effectively make professional-quality identification, security and commerce-related cards.
Easy and Complete Solution This easy-to-use, end-to-end solution makes it simple for any size organization to produce high-quality professional ID badges.
Ideal for These Applications:
Retail & Hospitality: Loyalty, gift and membership cards; hotel, cruise or other hospitality cards Identification & Access:
Employee ID cards, access control cards, visitor badges, business cards, ID cards for inventory or goods
Government & Education: Student ID cards, library cards, recreational facilities and member-use ID cards,
ID cards, Access control cards Loyalty cards, Club and association cards School and library cards Visitor Badges
Features Edit Responsive Layout Barcode Support Email Notification of Visitor Arrival Fully Audited System To Database And Auditor Email Account User Security Levels Self Serve Employee Registeration Print Visitor ID Badges compatible with Lanyards Forgot Password Reset Module Multi-Language Compatible Designed With The Zebra® ZXP Series Card Printers Compatible with any Card Printer Or Desktop Print System Supports IE, Firefox, Chrome, Safari Browsers Compatible With Mobile Devices Advanced Search Features Visitor Self Check-In Module ** In Development Support For Various ID Card Sizes ** In Development Export To Word,Excel, PDF GEO Security - Restrict Login From Specific Countries, Regions And Cities 2 Tier Security Login
Installation Notes:
Download the VIMS application and copy the files to a directory under your web server home.
extract the VIMS files into the vims directory"
change ownership of the files: chown -R wwwrun:www /srv/www/htdocs/vims
rename the ewcfg12-DIST.php to ewcfg12.php
Database Setup:
create the database by executing the vims.sql script, located in the install folder. Use either a SQL IDE or command line. mysql -uroot -p < vims.sql
The script creates the default tables and sample data. the default Database user is also created with basic rights. You may want to change the user password. If you do change it, you must also update the ewfg12.php configuration file.
Config Setup:
The ewcfg12.php file is the primary location for all system settings.
You must change the following parameters to suit your environment.
VIMS has a built-in non-database access account, YOU SHOULD CHANGE THE PASSWORD/USERNAME IMMEDIATELY.
define("EW_ADMIN_USER_NAME", "administrat0r", TRUE); // Administrator user name
define("EW_ADMIN_PASSWORD", "PASSWORD!", TRUE); // Administrator password
If you do not wish to use this account, delete or remark out the 2 lines above. (Make sure you have created a database user account before hand with full privileges first.)
Database Connection:
$EW_CONN["DB"] = array("conn" => NULL, "id" => "DB", "type" => "MYSQL", "host" => "localhost", "port" => 3306, "user" => "myportal", "pass" => "PASSWORD", "db" => "mytccportal", "qs" => "", "qe" => ""); These setting must match the settings of your DB Server.
Email Notifications:
In Order to send notifications, the following parameters need to be setup according to your email server environment. VIMS has been tested with Gmail's smtp settings, and should work fine,if you do not have a corporate email infrastructure.
define("EW_SMTP_SERVER", "myemailserver.com", TRUE); // SMTP server
define("EW_SMTP_SERVER_PORT", 587, TRUE); // SMTP server port
define("EW_SMTP_SECURE_OPTION", "tls", TRUE); // TLS or SSL
define("EW_SMTP_SERVER_USERNAME", "MYEMAILACCT@SOMEWHERE.COM", TRUE); // SMTP server user name
define("EW_SMTP_SERVER_PASSWORD", "PASSWORD!", TRUE); // SMTP server password
define("EW_SENDER_EMAIL", " FROM_SENDER@SOMEWHERE.COM", TRUE); // Sender email address
define("EW_RECIPIENT_EMAIL", "AUDIT_RECIPIENT@SOMEWHERE.COM", TRUE); // Recipient email address (account that receives all system notifications, auditing messges.)
Changing your timezone:
To change your default timezone, change the lines below in the following files.
in userfn12.php: date_default_timezone_set("America/New_York");
In phplang/english.xml: <phrase id="time_zone" value="**America/New_York**"/>