Subversion Repositories svnkaklik

Rev

Details | Last modification | View Log

Rev Author Line No. Line
36 kaklik 1
<?php
2
 
3
/*************************************************************
4
*  TorrentFlux - PHP Torrent Manager
5
*  www.torrentflux.com
6
**************************************************************/
7
/*
8
    This file is part of TorrentFlux.
9
 
10
    TorrentFlux is free software; you can redistribute it and/or modify
11
    it under the terms of the GNU General Public License as published by
12
    the Free Software Foundation; either version 2 of the License, or
13
    (at your option) any later version.
14
 
15
    TorrentFlux is distributed in the hope that it will be useful,
16
    but WITHOUT ANY WARRANTY; without even the implied warranty of
17
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
    GNU General Public License for more details.
19
 
20
    You should have received a copy of the GNU General Public License
21
    along with TorrentFlux; if not, write to the Free Software
22
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
23
*/
24
 
25
include_once("config.php");
26
include_once("functions.php");
27
 
28
DisplayHead("Cookie Help", false);
29
?>
30
<script language="JavaScript">
31
    function closeme()
32
    {
33
        self.close();
34
    }
35
</script>
36
<BR />
37
<div align="center">[ <a href="#" onClick="closeme();">close</a> ]</div>
38
<BR />
39
<div align="left" id="BodyLayer" name="BodyLayer" style="border: thin solid <?php echo $cfg["main_bgcolor"] ?>; position:relative; width:580; padding-left: 5px; padding-right: 5px; z-index:1; visibility: visible">
40
<strong>How to get Cookie information....</strong>
41
<br>
42
<hr>
43
<br>
44
<strong>FireFox</strong>
45
<ul>
46
    <li>Tools => Options</li>
47
    <li>Cookies => View Cookies</li>
48
    <li>Locate the site you want to get cookie information from.</li>
49
    <li>Get the UID and PASS content fields</li>
50
</ul>
51
 
52
<hr>
53
<br>
54
<strong>Internet Explorer</strong>
55
<ul>
56
    <li>Tools => Internet Options</li>
57
    <li>General => Settings => View Files</li>
58
    <li>Locate cookie file for site (eg: Cookie:user@www.host.com/)</li>
59
    <li>Open the file in a text editor</li>
60
    <li>Grab the values below UID and PASS</li>
61
</ul>
62
The file will look something like this:
63
<pre>
64
------
65
 
66
userZone
67
-660
68
www.host.com/
69
1600
70
2148152320
71
29840330
72
125611120
73
29766905
74
*
75
uid
76
123456 <----------------------------
77
www.host.com/
78
1536
79
3567643008
80
32111902
81
4197448416
82
29766904
83
*
84
pass
85
0j9i8h7g6f5e4d3c2b1a <--------------
86
www.host.com/
87
1536
88
3567643008
89
32111902
90
4197448416
91
29766904
92
*
93
 
94
--------
95
</pre>
96
<BR />
97
<div align="center">[ <a href="#" onClick="closeme();">close</a> ]</div>
98
<BR />
99
</div>
100
<?php
101
DisplayFoot(false);
102
?>