-
Notifications
You must be signed in to change notification settings - Fork 26
/
about.php
84 lines (61 loc) · 2.44 KB
/
about.php
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
<?php
require_once('includes/config.php');
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="icon" type="image/png" href="images/favicon.png">
<title>About</title>
<link rel="stylesheet" type="text/css" href="css/main.css"/>
<link rel="stylesheet" type="text/css" href="css/jquery-ui.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script src="js/search.js"></script>
</head>
<body>
<div id="container">
<div id="about">
<p align="center"><a href="index"><img src="images/logo.png"/></a></p>
<br/><br/>
<b>ABOUT</b><br/><br/>
RIVR is a torrents search engine.<br/>
RIVR does not host any torrents or files.<br/>
RIVR respects copyrights and acts in compliance with EUCD and DMCA.<br/>
RIVR is Google for torrents.<br/><br/>
<br/><br/>
<b>TECHNOLOGY</b><br/><br/>
1. PHP<br/>
2. MySQL<br/>
3. Sphinx<br/>
4. Apache<br/>
5. CentOS<br/>
6. magic
<br/><br/>
<span id="terms"></span><br/><br/>
<b>USAGE POLICY</b><br/><br/>
RIVR is free of charge for personal usage. Web scraping of the search results is not allowed. If you want search results for your application you must contact the website owners first.<br/><br/>
RIVR is run privately and we do not guarantee 100% uptime.<br/><br/>
Users violating this policy will be blocked. Oranizations will be also charged $3000 + bandwidth and other costs that may arise due to the violation.<br/><br/>
RIVR reserves the rights to publish any information regarding violations.<br/><br/>
This policy may change at any time without any further notice.<br/><br/>
Using RIVR search engine means that you accept this policy agreement.
<span id="privacy"></span><br/><br/>
<br/><br/>
<b>PRIVACY POLICY</b><br/><br/>
RIVR respects your privacy.<br/>
RIVR does not use any cookies neither logs your IP address.<br/>
RIVR only keeps count of search queries without any related personal information.<br/>
For better privacy use <a href="https://www.torproject.org/" target="blank">TOR</a>.<br/><br/>
<br/><br/>
<b>CONTENT REMOVAL</b><br/><br/>
Send your takedown requests from your business email to <a href="mailto:abuse@rivr.eu">abuse@rivr.eu</a> including the hashes of the torrents.<br/>
<br/><br/><br/>
<b>CONTACT</b><br/><br/>
Send your ideas to: <a href="mailto:admin@rivr.eu">admin@rivr.eu</a>. New developers are welcome too.
<br/><br/><br/><br/><br/><br/>
</div>
<?php include("includes/footer.php"); ?>
</div>
</body>
</html>