Lines Matching +full:runs +full:- +full:on
5 …e.webtrees.net/widgets/webtrees/-/webtrees-22/svg-badge.svg)](https://weblate.iet.open.ac.uk/proje…
6 … Code Quality](https://scrutinizer-ci.com/g/fisharebest/webtrees/badges/quality-score.png?b=main)]…
9 # webtrees - online collaborative genealogy
14 * [Coding styles and standards](#coding-styles-and-standards)
16 * [System requirements](#system-requirements)
17 * [Internet browser compatibility](#browser-compatibility)
20 * [Building and developing](#building-and-developing)
21 * [Gedcom (family tree) files](#gedcom-family-tree-files)
24 * [Restore from Backup](#restore-from-backup)
46 webtrees follows the [PHP Standards Recommendations](https://www.php-fig.org/psr).
48 * [PSR-1](https://www.php-fig.org/psr/psr-1) - Basic Coding Standard
49 * [PSR-2](https://www.php-fig.org/psr/psr-2) - Coding Style Guide
50 * [PSR-4](https://www.php-fig.org/psr/psr-4) - Autoloading Standard
51 * [PSR-6](https://www.php-fig.org/psr/psr-6) - Cache
52 * [PSR-7](https://www.php-fig.org/psr/psr-7) - HTTP Message Interface
53 * [PSR-11](https://www.php-fig.org/psr/psr-11) - Container Interface
54 * [PSR-12](https://www.php-fig.org/psr/psr-12) - Extended Coding Style Guide
55 * [PSR-15](https://www.php-fig.org/psr/psr-15) - HTTP Handlers
56 * [PSR-17](https://www.php-fig.org/psr/psr-17) - HTTP Factories
58 We do not currently use [PSR-3 (logging)](https://www.php-fig.org/psr/psr-3) - but we plan to do so…
69 third-party tools, design techniques and open standards.
71 **webtrees** allows you to view and edit your genealogy on your website. It has
75 of collaborating with others working on your family lines. Your latest information
76 is always on your web site and available for others to see, defined by viewing
82 support, and future development is dependent on the time developers are willing
85 for the time they spend working on the project. There is also no outside source
95 …se. MySQL is recommended, although PostgreSQL, SQL-Server and SQLite can be used. Some features re…
98 * PHP 7.1 - 7.4. Servers with PHP 5.3 - 7.0 can use **webtrees** 1.7.
107 **webtrees** is tested on recent versions of popular browsers such as Edge, Firefox,
108 Chrome, and Safari. Support for other browsers and older versions is on a case-by-case basis.
113 2. Unzip the files and then upload them to an empty folder on your web server.
124 privacy settings first. Don't worry too much about all the other options - the
151 “site unavailable - come back later” message.
158 replaces them. (**Merge** is standard behavior on Windows and Linux.) If you use
175 You will need [npm](https://www.npmjs.com/get-npm) to install the Javascript dependencies.
181 You will need to re-run the second of these any time you modify the file `webtrees.js`.
195 * Go to ``Control panel`` -> ``Manage family trees`` On the line relating to this particular family…
198 in **webtrees**, and have edited your data off-line using software that
203 to a 'chunk' table within your database. Depending on the coding of your file,
226 You don't have permission to access /data/config.ini.php on this server.
232 then that protection is not working on your site and you should take some further
235 If your server runs PHP in CGI mode, then change the permission of the **/data**
252 Then change the **Data folder** setting on the ``Control panel`` ->
253 ``Website`` -> ``Website preferences`` page from the default **data/** to the new
258 * [path to webtrees]/data - just needs to contain config.ini.php
259 * /home/username/private/data - contains everything else
272 …`mysqldump --host=[localhost] -u [username] -p[password] --databases [databasename] > dump_file.sq…
274 Note that '*-p[password]*' goes together with no space in between.
281 To restore a backup on a new server:
287 3. Restore your mysql database using phpmyadmin or running the following command line on your datab…
289 `mysql -u [username] -p[password] [database_name] < [dump_file.sql]`