Go to file
2026-04-21 14:04:33 +02:00
conf Merge branch 'seeddms-5.1.x' into seeddms-6.0.x 2026-04-16 16:20:12 +02:00
controllers disable login for an increasing amount of time if credentials are wrong 2026-04-21 14:03:17 +02:00
develop make it work again with new language dirs 2015-05-13 17:32:44 +02:00
doc add commands to convert man page to pdf 2026-03-20 12:36:46 +01:00
inc disable login for an increasing amount of time if credentials are wrong 2026-04-21 14:03:17 +02:00
install remove duplicate statements 2026-04-21 14:04:33 +02:00
languages added new phrases 2026-04-15 07:50:00 +02:00
op check for $_POST['logininfo'/'action'] 2026-04-21 14:04:33 +02:00
out remove code for creating download links. It is now an extension 2026-04-21 14:03:17 +02:00
restapi Merge branch 'seeddms-5.1.x' into seeddms-6.0.x 2026-01-31 16:11:17 +01:00
styles remove old jquery 2024-06-17 19:17:07 +02:00
utils Merge branch 'seeddms-5.1.x' into seeddms-6.0.x 2026-03-16 22:02:11 +01:00
views add printAttribute() 2026-04-21 14:04:33 +02:00
webdav Merge branch 'seeddms-5.1.x' into seeddms-6.0.x 2025-10-29 07:47:10 +01:00
www Merge branch 'seeddms-5.1.x' into seeddms-6.0.x 2026-01-22 15:25:43 +01:00
.editorconfig -trim_trailing_whitespaces must be -trim_trailing_whitespace 2023-08-25 21:05:27 +02:00
.gitignore ignore more files 2025-09-23 18:12:58 +02:00
build.xml run 'composer dump -o' 2025-11-16 17:21:27 +01:00
CHANGELOG Merge branch 'seeddms-5.1.x' into seeddms-6.0.x 2026-04-20 16:23:19 +02:00
composer-dist.json Merge branch 'seeddms-5.1.x' into seeddms-6.0.x 2026-03-13 11:52:57 +01:00
composer.json Merge branch 'seeddms-5.1.x' into seeddms-6.0.x 2026-03-13 11:52:57 +01:00
Gruntfile.js install tablesort 2025-11-25 15:35:30 +01:00
LICENSE - move all sources into trunk 2010-10-29 13:19:51 +00:00
Makefile Merge branch 'seeddms-5.1.x' into seeddms-6.0.x 2025-09-26 19:33:15 +02:00
package.json Merge branch 'seeddms-5.1.x' into seeddms-6.0.x 2025-12-01 16:50:09 +01:00
phpcs.xml add config for phpcs 2025-11-13 13:40:38 +01:00
README.md fix typos 2025-09-24 16:50:08 +02:00
TODO add warning, that this file is outdated 2025-09-20 19:36:32 +02:00

SeedDMS is a PHP based Document Management System. For more information check the web site at https://www.seeddms.org

There are detailed installation instructions from a preconfigured distribution at [doc/README.Install.md]

If you prefer to install from git, you will need to:

  1. Create a directory, e.g. seeddms

    mkdir seeddms

  2. Change into that directory

    cd seeddms

  3. Clone the various SeedDMS repositories

      git clone https://codeberg.org/SeedDMS/preview.git
    git clone https://codeberg.org/SeedDMS/lucene.git
    git clone https://codeberg.org/SeedDMS/ѕqlitefts.git
    git clone https://codeberg.org/SeedDMS/http_webdav_server.git
    
  4. For SeedDMS 5.1.x

      git clone -b seeddms-5.1.x https://codeberg.org/SeedDMS/seeddms.git
    git clone -b seeddms-5.1.x https://codeberg.org/SeedDMS/core.git
    

    For SeedDMS 6.0.x

      git clone -b seeddms-6.0.x https://codeberg.org/SeedDMS/seeddms.git
    git clone -b seeddms-6.0.x https://codeberg.org/SeedDMS/core.git
    
  5. Run composer

    composer update

  6. Create an installable distribution

    vendor/bin/phing -Dversion=$(php -r 'include "inc/inc.Version.php"; echo (new SeedDMS_Version())->version();') package

    or create an installable distribution with softlinks

    vendor/bin/phing -Dversion=$(php -r 'include "inc/inc.Version.php"; echo (new SeedDMS_Version())->version();') -Dmode=development package

    This archive does not contain any sources but only links to the previously cloned repositories.

The archive created in step 6. can be installed like the official releases of SeedDMS.