webtrees | webtrees is the web 's leading online collaborative | Data Visualization library
kandi X-RAY | webtrees Summary
kandi X-RAY | webtrees Summary
webtrees is the web's leading online collaborative genealogy application. webtrees allows you to view and edit your genealogy on your website. It has full editing capabilities, full privacy functions, and supports imedia such as photos and document images. As an online program, it fosters extended family participation and good ancestral recording habits, as it simplifies the process of collaborating with others working on your family lines. Your latest information is always on your web site and available for others to see, defined by viewing rules you set. For more information and to see working demos, visit webtrees.net. webtrees is Open Source software that has been produced by people from many countries freely donating their time and talents to the project. All service, support, and future development is dependent on the time developers are willing to donate to the project, often at the expense of work, recreation, and family. Beyond the few donations received from users, developers receive no compensation for the time they spend working on the project. There is also no outside source of revenue to support the project. Please consider these circumstances when making support requests and consider volunteering your own time and skills to make the project even stronger and better.
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
- Get all countries
- Finish current span .
- Print a fact
- Import a record into a tree .
- Get the census places .
- Get an array of events for a given year .
- Add a name
- Get custom tags
- Get the outline s width
- Generate a chart .
webtrees Key Features
webtrees Examples and Code Snippets
Forbidden
You don't have permission to access /data/config.ini.php on this server.
Community Discussions
Trending Discussions on webtrees
QUESTION
I'd like to test webtrees PHP docker. They suggest connecting to a mysql docker using --link mysql:db
, as follows:
ANSWER
Answered 2020-Jul-21 at 14:58Basically you need to have all the containers (mysql DB server, mysql client and application) in the same Docker network. By default they are not. Alternatively, --link
can be used to link them (as shown in webtrees run example), but it's considred as legacy feature and network should be used instead of that.
So what you need to do:
- Create custom Docker network:
docker network create user-network
- Run mysql server in that network. Name should be
db
, because webtrees relies on that hostname for DB:docker run --name db --network user-network -e MYSQL_ROOT_PASSWORD=my-secret-pw -e MYSQL_DATABASE=webtrees -e MYSQL_USER=my_user -e MYSQL_PASSWORD=my_pwd -d mysql:5.5
- Run mysql client in the same network:
docker run -it --network user-network --rm mysql mysql -hdb -umy_user -p
- Finally you can run an app in the same network:
docker run -d -p 80:80 --name webtrees --network user-network -v /webtrees/data:/var/www/html/data -v /webtrees/media:/var/www/html/media -e DISABLE_SSL=TRUE -e PORT=80 --restart always dtjs48jkt/webtrees
After that web app should be accessible from your browser under http://localhost/
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install webtrees
Download the .ZIP file for latest stable version from github.com.
Unzip the files and then upload them to an empty folder on your web server.
Open your web browser and type the URL for your webtrees site (for example, https://www.yourserver.com/webtrees into the address bar.
The webtrees setup wizard will start automatically.
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page