Subversion Repositories svnkaklik

Rev

Go to most recent revision | Details | Last modification | View Log

Rev Author Line No. Line
6 kaklik 1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2
<?xml version="1.0" encoding="iso-8859-1"?>
3
<HTML xmlns="http://www.w3.org/1999/xhtml">
4
<HEAD>
5
<TITLE>MyPHPTag README</TITLE>
6
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
7
<META http-equiv=Content-Language content=en>
8
<META content="2004, triphp.tk" name=Copyright>
9
<META content="Ramil Alcibar" name=AUTHOR>
10
<META content="MyPHPTag - a simple tagboard" name=Description>
11
<STYLE type=text/css>
12
BODY 
13
{
14
	FONT-SIZE: 11px; 
15
	FONT-FAMILY: Verdana;
16
}
17
A 
18
{
19
	FONT-WEIGHT: bold; 
20
	COLOR: #6388ff; 
21
	FONT-FAMILY: Verdana, Geneva, Arial, Helvetica, sans-serif; 
22
	TEXT-DECORATION: none
23
}
24
A:hover 
25
{
26
	FONT-WEIGHT: bolder; 
27
	COLOR: #000099; 
28
	BACKGROUND-COLOR: #99ccff
29
}
30
.PPcode 
31
{
32
 
33
	FONT-FAMILY: Verdana;
34
	FONT-SIZE: 10px;
35
	PADDING-RIGHT: 0px; 
36
	PADDING-LEFT: 0px; 
37
	MARGIN-LEFT: 15pt; 
38
	PADDING-TOP: 0px; 
39
	BACKGROUND-COLOR: #66CCFF; 
40
	TEXT-ALIGN: left
41
}
42
.warning 
43
{
44
	COLOR: red
45
}
46
</STYLE>
47
</HEAD>
48
<BODY text=#000000 bgColor="#ffffff">
49
<hr align="center" width="100%" size="1" color="#0066FF">
50
<p align="center">
51
	MyPHPTag README
52
</p>
53
Script name: MyPHPTag<br>
54
Author: Ramil Alcibar<br>
55
Author URL: <a href="http://www.triphp.com" title="TriPHP - Quality Web Hosting, PHP/MySQL Tutorials, PHP Scripts, Code Snippets" target="_blank">http://www.triphp.com</a><br>
56
Conatct: ralcibar@fastmail.fm<br>
57
Release Date: 14th November 2004<br>
58
Current Version: 1.0<br>
59
Price: GPL
60
<hr align="center" width="100%" size="1" color="#0066FF">
61
<UL>
62
	<LI>
63
		<a href="readme.html#description">Description</A> 
64
	<LI>
65
		<a href="readme.html#requirements">Requirements</A>
66
  	<LI>
67
		<A href="readme.html#install">Installation</A> 
68
  	<LI>
69
		<A href="license.html" target="_parent">License</A> 
70
	</LI>
71
</UL>
72
<hr align="center" width="100%" size="1" color="#0066FF">
73
<a name="description"></a>
74
<strong>DESCRIPTION</strong>
75
<p align="justify">
76
Another tagboard script that can be integrated into your existing website. It uses MySQL 
77
database and has many features including smileys support, bad word filter, filter message 
78
length abuse, and many more.
79
<img src="smileys/smile.gif" align="absbottom"> 
80
<img src="smileys/biggrin.gif" align="absbottom"> 
81
<img src="smileys/cool.gif" align="absbottom">
82
</p>
83
<hr align="center" width="100%" size="1" color="#0066FF">
84
<a name="requirements"></a>
85
<strong>REQUIREMENTS</strong><br><br>
86
<li type="circle">Apache (built-in on Mac OS X)</li>
87
<li type="circle">PHP 4</li>
88
<li type="circle">MySQL</li><br><br>
89
<hr align="center" width="100%" size="1" color="#0066FF">
90
<a name="install"></a>
91
<strong>INSTALLATION</strong><br><br>
92
<li>Unpack the distribution and copy the files under a directory where the web server may accesses them.</li>
93
<li>Create a database.</li>
94
<li>Run myphptag.sql file under the created database. I recommend phpMyAdmin or MySQL-Front when executing the SQL file mentioned.</li>
95
<li>Open config.php and change the following lines according to your own configuration:</li>
96
	<pre class="PPcode">
97
	$MySqlHostname = "localhost";
98
	$MySqlUsername = "root";
99
	$MySqlPassword = "";
100
	$MySqlDatabase = "triphp";
101
	</pre>
102
<li>Point your browser to http://yourserver/myphptag/</li>
103
<br><br>
104
<strong>UNINSTALL</strong><br>
105
If for any reason, you want to remove MyPHPGuest from your system, you must delete the MySQL database and all the files that was unpack from the distribution file.<br><br> 
106
<hr align="center" width="100%" size="1" color="#0066FF">
107
</BODY>
108
</HTML>