https://github.com/palewire/wordpress-memento-plugin
A plugin for Wordpress web sites to enable the Memento framework for time-based access
https://github.com/palewire/wordpress-memento-plugin
archiving memento php wordpress
Last synced: 3 months ago
JSON representation
A plugin for Wordpress web sites to enable the Memento framework for time-based access
- Host: GitHub
- URL: https://github.com/palewire/wordpress-memento-plugin
- Owner: palewire
- License: mit
- Archived: true
- Created: 2015-08-03T00:12:21.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-08-04T21:16:28.000Z (over 8 years ago)
- Last Synced: 2024-05-18T17:49:31.948Z (over 1 year ago)
- Topics: archiving, memento, php, wordpress
- Language: Perl
- Homepage: http://pastpages.github.io/wordpress-memento-plugin/
- Size: 357 KB
- Stars: 9
- Watchers: 4
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-memento - src - Add Memento support to [WordPress](https://wordpress.com/) sites. (Software / Server-side Enablers)
README
# wordpress-memento-plugin
A plugin for Wordpress web sites to enable the Memento framework for time-based access
This is a work in progress and should not be expected to work.
[](https://travis-ci.org/pastpages/wordpress-memento-plugin)
* Testing: [travis-ci.org/pastpages/wordpress-memento-plugin](https://travis-ci.org/pastpages/wordpress-memento-plugin)
## Installation from source code
Install the system requirements.
```bash
$ sudo apt-get install php5 php5-dev php-pear phpunit
```
Install Wordpress and its dependencies, however you might like. Here's [one guide](https://www.digitalocean.com/community/tutorials/how-to-install-wordpress-on-ubuntu-14-04).
Clone this repository on your computer.
```bash
$ git clone https://github.com/pastpages/wordpress-memento-plugin.git
```
Jump into the directory.
```bash
$ cd wordpress-memento-plugin
```
Create a symbolic link between the source code and the plugin directory in
your local Wordpress installation.
```bash
$ ln -s `pwd`/memento/ /path-to-your-wordpress/wp-content/plugins/memento
```
Open up the administration panel of your local Wordpress installation and you
should see Memento among the installed plugins.
## Running tests
Unittests are written for ``phpunit`` and executed like so:
```bash
$ make test
```