Subversion Repositories oidplus

Rev

Rev 1348 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1321 daniel-mar 1
<!doctype html>
2
<html lang="en">
3
  <head>
4
    <meta charset="utf-8">
5
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
6
    <meta name="description" content="">
7
    <meta name="author" content="">
1348 daniel-mar 8
    <link rel="icon" type="image/x-icon" href="favicon.png">
1321 daniel-mar 9
 
10
    <title>OIDplus - Download and Install</title>
11
 
12
    <!-- Bootstrap core CSS -->
13
    <link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
14
 
15
    <!-- Custom styles for this template -->
16
    <link href="style.css" rel="stylesheet">
17
  </head>
18
 
19
  <body>
20
 
21
    <header>
22
      <nav class="site-header sticky-top py-1">
23
        <div class="container d-flex flex-column flex-md-row justify-content-between">
24
          <!--<a class="py-2" href="#">
25
            <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="d-block mx-auto"><circle cx="12" cy="12" r="10"></circle><line x1="14.31" y1="8" x2="20.05" y2="17.94"></line><line x1="9.69" y1="8" x2="21.17" y2="8"></line><line x1="7.38" y1="12" x2="13.12" y2="2.06"></line><line x1="9.69" y1="16" x2="3.95" y2="6.06"></line><line x1="14.31" y1="16" x2="2.83" y2="16"></line><line x1="16.62" y1="12" x2="10.88" y2="21.94"></line></svg>
26
          </a>-->
27
          <!-- DM 19.11.2020 : d-none auskommentiert, da sonst die Links verschwinden wenn das Fenster zu schmal wird -->
28
          <a class="py-2 d-md-inline-block" href="features.html">Features</a>
29
          <a class="py-2 d-md-inline-block" href="examples.html">Examples</a>
30
          <a class="py-2 d-md-inline-block menuactive" href="download.html">Download and Install</a>
31
          <a class="py-2 d-md-inline-block" href="support.html">Support</a>
32
          <a class="py-2 d-md-inline-block" target="_blank" href="https://www.github.com/danielmarschall/oidplus/">Source code at GitHub</a>
33
          <a class="py-2 d-md-inline-block" target="_blank" href="https://www.viathinksoft.com/">Other products by ViaThinkSoft</a>
34
        </div>
35
      </nav>
36
    </header>
37
 
38
    <!-- Begin page content -->
39
    <main role="main" class="container">
40
                <h1 class="mt-5">Install OIDplus on your server</h1>
41
 
42
                <p>We are grateful for every person that wants to install OIDplus on their systems,
43
                as we love to see our product spreading and receive feedback about the user experience.
44
                Therefore, if we can help you with installing OIDplus and migrating your data into OIDplus,
45
                <a href="https://www.viathinksoft.de/contact/daniel-marschall" target="_blank">please let us know</a>.
46
                We will support you with this, free of charge!</p>
47
 
48
                <h2>Installation method A: Download using SVN</h2>
49
 
50
                <p>Downloading and updating OIDplus via a Subversion (SVN) client.
51
                In Windows, you can use the tool <b>TortoiseSVN</b> to check out the repository.
52
                On Linux systems, you can use the <b>svn</b> command to download the contents.</p>
53
 
54
                <code>sudo apt-get update<br>
55
                sudo apt-get install svn<br>
56
                svn co https://svn.viathinksoft.com/svn/oidplus/trunk/</code></p>
57
 
58
                <p>After that, you can regularly run <code>svn update</code> to keep OIDplus up-to-date. This command can also be executed in the "Software Update" menu item in the administrator login area.</p>
59
 
60
                <h2>Installation method B: Download using Git</h2>
61
 
62
                <p>Downloading and updating OIDplus via GitHub is an alternative method.
63
                <!--In Windows, you can use the tool <b>???</b> to check out the repository.-->
64
                On Linux systems, you can use the <b>git</b> command to download the contents.</p>
65
 
66
                <code>sudo apt-get update<br>
67
                sudo apt-get install git<br>
68
                git clone https://github.com/danielmarschall/oidplus.git</code></p>
69
 
70
                <p>There are various other GIT clients; for example, Plesk has a GIT plugin that lets you manage a GIT repository without a command line.</p>
71
 
72
                <p>After that, you can regularly run <code>git pull</code> to keep OIDplus up-to-date. This command can also be executed in the "Software Update" menu item in the administrator login area.</p>
73
 
74
                <h2>Installation method C: Download SVN snapshot</h2>
75
 
76
                <p>Alternatively, you can download an SVN snapshot in the TAR.GZ format.
77
                Just extract the contents of the TAR.GZ files after downloading.</p>
78
 
79
                <p><a class="btn btn-lg btn-primary" href="https://www.viathinksoft.com/download/235/oidplus2_svn.tar.gz" role="button">Download TAR.GZ</a></p>
80
 
81
                <p>Updates can be installed through the "Software Update" menu item in the administrator login area.</p>
82
 
83
                <h2>System requirements</h2>
84
 
85
                <ul>
86
                        <li>PHP compatible web-server (tested with Apache 2, nginx, and Microsoft IIS)</li>
87
                        <li>PHP 7.0 or higher (tested till PHP version 8.2 inclusive)<ul>
88
                                <!--<li>with extension GMP or BCMath (usually part of every PHP installation)</li>
89
                                <li>with extension MBString or iconv (usually part of every PHP installation)</li>-->
90
                                <li>with extension MySQLi, PostgreSQL, SQLite3, PDO, OCI8, or ODBC, depending on your database</li>
91
                        </ul></li>
92
                        <li>Supported databases:<ul>
93
                                <li>MySQL/MariaDB</li>
94
                                <li>PostgreSQL</li>
95
                                <li>SQLite3</li>
96
                                <li>Microsoft SQL Server</li>
97
                                <li>Oracle</li>
98
                                <li>Microsoft Access</li>
99
                                <li>Firebird</li>
100
                        </ul></li>
101
                        <li>Independent of operating systems (tested with Windows, Linux, and macOS X)</li>
102
                </ul>
103
 
104
                <h2>Prefer hosting?</h2>
105
 
106
                <p>If it is too inconvenient for you to set up an individual OIDplus instance, or if you have no server,
107
                then we can host a copy of OIDplus for you.<!-- The organizations <a href="https://hickelsoft.de/">HickelSOFT Huth GmbH</a>, <a href="https://www.webfan.de/">Webfan</a>, or <a href="https://viathinksoft.com/contact/daniel-marschall">ViaThinkSoft</a>
108
                can set up a hosting plan for you.--></p>
109
    </main>
110
 
111
    <footer class="footer">
112
      <div class="container">
113
        <p class="float-right">
114
          <a href="#">Back to top</a>
115
        </p>
1437 daniel-mar 116
        <p>&copy; 2019-2023 ViaThinkSoft
1321 daniel-mar 117
        &middot; <a href="https://www.viathinksoft.com/imprint/" target="_blank">Imprint</a>
118
        &middot; <a href="https://www.viathinksoft.com/privacy/" target="_blank">Privacy</a>
119
        &middot; <a href="https://www.viathinksoft.com/disclaimer/" target="_blank">Disclaimer</a></p>
120
      </div>
121
    </footer>
122
 
123
    <!-- Bootstrap core JavaScript
124
    ================================================== -->
125
    <!-- Placed at the end of the document so the pages load faster -->
126
    <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
127
    <!--<script>window.jQuery || document.write('<script src="bootstrap/assets/js/vendor/jquery-slim.min.js"><\/script>')</script>
128
    <script src="bootstrap/assets/js/vendor/popper.min.js"></script>-->
129
    <script src="bootstrap/js/bootstrap.min.js"></script>
130
  </body>
131
</html>