浏览代码

added plugins directory (without archives)

Luke Ehresman 24 年之前
父节点
当前提交
e2ef4027d1
共有 2 个文件被更改,包括 41 次插入0 次删除
  1. 27 0
      plugins/README.plugins
  2. 14 0
      plugins/index.php

+ 27 - 0
plugins/README.plugins

@@ -0,0 +1,27 @@
+Plugins
+=======
+
+To understand more about plugins, read doc/plugin.txt
+
+For the impatient, here is an extremely brief overview of how to
+install plugins.
+
+  1.  Change to the plugins directory.
+
+        $ cd plugins/
+
+  2.  Unarchive the plugin.
+
+        $ tar -zxvf /home/me/myplugin.tar.gz
+
+  3.  Note the directory that the plugin was created into.  For this
+      example, we will assume it was put in the directory: myplugin/.
+
+  4.  Go to the config directory and run conf.pl
+
+        $ cd ../../config/
+        $ ./conf.pl
+
+  5.  Choose option 8 and proceed to add the new plugin following
+      the instructions there.  Save and exit, and your plugin should
+      be in place.

+ 14 - 0
plugins/index.php

@@ -0,0 +1,14 @@
+<?php
+/**
+ ** index.php
+ **
+ ** This file simply takes any attempt to view source files
+ ** and sends those people to the login screen. At this
+ ** point no attempt is made to see if the person is logged
+ ** or not.
+ **/
+
+header("Location:../index.php");
+
+/** pretty impressive huh? **/
+?>