remove unused files

This commit is contained in:
Andreas Zweili 2021-11-15 11:34:54 +01:00
parent 405d05ed7e
commit fc2140233e
2 changed files with 0 additions and 154 deletions

View File

@ -1,42 +0,0 @@
---
title: Home
body_classes: title-center title-h1h2
---
# Say Hello to Grav!
## installation successful...
Congratulations! You have installed the **Base Grav Package** that provides a **simple page** and the default **Quark** theme to get you started.
!! If you see a **404 Error** when you click `Typography` in the menu, please refer to the [troubleshooting guide](http://learn.getgrav.org/troubleshooting/page-not-found).
### Find out all about Grav
* Learn about **Grav** by checking out our dedicated [Learn Grav](http://learn.getgrav.org) site.
* Download **plugins**, **themes**, as well as other Grav **skeleton** packages from the [Grav Downloads](http://getgrav.org/downloads) page.
* Check out our [Grav Development Blog](http://getgrav.org/blog) to find out the latest goings on in the Grav-verse.
!!! If you want a more **full-featured** base install, you should check out [**Skeleton** packages available in the downloads](http://getgrav.org/downloads).
### Edit this Page
To edit this page, simply navigate to the folder you installed **Grav** into, and then browse to the `user/pages/01.home` folder and open the `default.md` file in your [editor of choice](http://learn.getgrav.org/basics/requirements). You will see the content of this page in [Markdown format](http://learn.getgrav.org/content/markdown).
### Create a New Page
Creating a new page is a simple affair in **Grav**. Simply follow these simple steps:
1. Navigate to your pages folder: `user/pages/` and create a new folder. In this example, we will use [explicit default ordering](http://learn.getgrav.org/content/content-pages) and call the folder `03.mypage`.
2. Launch your text editor and paste in the following sample code:
---
title: My New Page
---
# My New Page!
This is the body of **my new page** and I can easily use _Markdown_ syntax here.
3. Save this file in the `user/pages/03.mypage/` folder as `default.md`. This will tell **Grav** to render the page using the **default** template.
4. That is it! Reload your browser to see your new page in the menu.
! NOTE: The page will automatically show up in the Menu after the "Typography" menu item. If you wish to change the name that shows up in the Menu, simple add: `menu: My Page` between the dashes in the page content. This is called the YAML front matter, and it is where you configure page-specific options.

View File

@ -1,112 +0,0 @@
- meta:
- topics: [[DMS]] [[selfhosted]] [[published posts]]
***
# SeedDMS
This is a tutorial on how to install SeedDMS 4.3 on [[Debian]] Jessie with
an external MySQL server.
First we have to install all the depencies:
```bash
sudo apt-get install apache2 php5 php5-mysql php5-gd php-pear imagemagick poppler-utils catdoc
```
Second we have to install the required pear packages:
```bash
sudo pear install Log
sudo pear channel-discover pear.dotkernel.com/zf1/svn
sudo pear install zend/zend
```
To have it fully working we need to enable the rewrite module for
[[Apache]]:
```bash
sudo a2enmod rewrite
```
In addition we need change the [[Apache]] config. There should be a part in
the /etc/apache2/apache2.conf which looks like this:
```bash
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
```
We need to change it to this:
```bash
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
```
Now we can download the SeedDMS files from here:
https://sourceforge.net/projects/seeddms/files
For this installation I went with seeddms-quickstart-4.3.28.tar.gz. I've
downloaded it to _var/www_ and extracted the archive. Inside the now
generated folder there are 4 folders however one of them is only a
symlink:
- data
- pear
- seeddms-4.3.28
- www (symlink to seeddms-4.3.28)
For my installation I've moved the data folder to _var_ so that it isn't
directly reachable by the webserver. Then I moved the seeddms-4.3.28
folder to _var/www_ and renamed it to html
```bash
sudo mv /var/www/seeddms43x/seeddms-4.3.28 /var/www/html
```
Now I moved the pear folder into the html folder and copied the SeedDMS
folder inside the pear folder into the html folder. This is required
because it was complaining that it couldn't find the path otherwise.
```bash
sudo mv /var/www/seeddms43x/pear/ /var/www/html/
```
```bash
sudo cp /var/www/html/pear/SeedDMS /var/www/html/
```
Don't forget to give all the folders read/write permissions for the user
www-data.
As a last step we have to change the configuration file
(/var/www/html/conf/settings.xml) to reflect our changes. It would be a
bit much to cover all the changes necessary. Just make sure that all the
paths we've changed are correct. The config file itself is very well
commented so it shouldn't be a big problem to find all the places
requiring a correction. I'll paste however the lines how they look on my
system:
```bash
<server rootDir="/var/www/html/" httpRoot="/" contentDir="/var/data/" stagingDir="/var/data/staging/" luceneDir="/var/data/lucene/" logFileEnable="true" logFileRotation="d" enableLargeFileUpload="false" partitionSize="2000000" cacheDir="/var/data/cache/" dropFolderDir="">
</server>
```
```bash
<database dbDriver="mysql" dbHostname="mariadb.2li.local" dbDatabase="seeddmsdb" dbUser="seeddms" dbPass="Password" doNotCheckVersion="false">
</database>
```
Now restart the [[Apache]] service and you should be able to access the
installation on http://dms-ip
## Resources
- https://myanwyn.blogspot.ch/2014/12/how-to-install-seeddms-on-ubuntu.html