-
Notifications
You must be signed in to change notification settings - Fork 5
/
README
131 lines (87 loc) · 3.74 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
------
README
------
WIREUS 0.1.1 "Infinite Dreams"
09 April 2011
This is the README file for Wireus, the Open Source Social Networking
platform.
License
=======
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public
License along with this program, in the file "COPYING". If not, see
<http://www.gnu.org/licenses/>.
IMPORTANT NOTE: The GNU Affero General Public License (AGPL) has
*different requirements* from the "regular" GPL. In particular, if
you make modifications to the WIREUS source code on your server,
you *MUST MAKE AVAILABLE* the modified version of the source code
to your users under the same license.
Testing
======
The project is currently hosted in
http://athena.nitc.ac.in/~b090084cs/
About
=====
This is the first official release of WIREUS (0.1.1), an open source
social networking platform with basic social networking features.
+ Features
* Connect with various people
* Share your status message.
* Send Open and Private messages to your friends
* Share photos
* Create open or moderated groups
* Send group messages
+Technical
* Multiple database support
Prerequisites
=============
The following software packages are *required* for this software to
run correctly.
- PHP 5.2.3+. It may be possible to run this software on earlier
versions of PHP, but many of the functions used are only available
in PHP 5.2 or above. 5.2.6 or later. PHP 5.3.x should work correctly in this
release.
- MySQL 5.x. or PostgreSQL 8.4+.
Your PHP installation must include the following PHP extensions:
- GD (php5-gd). For image thumbnailing
Installation
============
1. Unpack the tarball you downloaded on your Web server. e.g.
tar zxf wireus-0.1.1.tar.gz
...which will make a wireus-0.1.1 subdirectory in your current
directory. (If you don't have shell access on your Web server, you
may have to unpack the tarball on your local computer and FTP the
files to the server.)
2. Move the tarball to a directory of your choosing in your Web root
directory. e.g.
mv wireus-0.1.1 /var/www/wireus
This will make your Wireus instance available in the your server, like "http://sample.com/wireus".
3. Make your target directory writeable by the Web server.
e.g. chmod 777 /var/www/wireus/
On some systems, this will probably work:
chgrp www-data /var/www/wireus/
chmod g+w /var/www/wireus/
4. Create a database in pgsql or mysql.
Note that WIREUS must have its own database; you can't share the
database with another program. You can name it whatever you want,
though.
5. Create a new database account that Wireus will use to access the
database. Grant all permissions for the database user account,
(users are called ROLES in postgreSQL)
6. Create the tables as specified in the file named "SQLSETUPs" in the
wireus folder.
7. Rename rename.connectionfile.php (in the lib/ directory) to connectionfile.php, and specify the names of all the variables as
mentioned in the file
For further queries, contact
Authors
=======
Shamil CM <[email protected]>
Sreeraj <[email protected]>
--------------------------------------------------------