Skip to content

PHP 7 compatibility fork of DoxBox DMS (formerly Owl Intranet Knowledgebase)

License

Notifications You must be signed in to change notification settings

andrewpthompson/doxbox-dms

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

doxbox-dms

This is a fork of DoxBox DMS (formerly Owl Intranet Knowledgebase) with modifications for PHP 7 compatibility. (Core only, I haven't attempted to fix the other scripts etc.)

Other tips

  • IPv6 addresses can't be stored in the owl_active_sessions table; the column is configured as char(16), which isn't long enough. Increase it to 45 characters. This avoids 'This session is already in use on another computer' when the user has an IPv6 address.
ALTER TABLE `active_sessions` CHANGE `ip` `ip` CHAR(45);
ALTER TABLE `owl_log` CHANGE `ip` `ip` VARCHAR(45);

About

PHP 7 compatibility fork of DoxBox DMS (formerly Owl Intranet Knowledgebase)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 54.2%
  • Hack 24.7%
  • HTML 7.9%
  • CSS 7.2%
  • JavaScript 4.5%
  • PLSQL 0.7%
  • Other 0.8%