Toon posts:

IPB v2.0 hide hack geen button

Pagina: 1
Acties:
  • 94 views sinds 30-01-2008

Verwijderd

Topicstarter
Ik heb op mijn forum een hide hack geinstalleerd, het enigste probleem is dat ik geen button krijg te zien. Heb al verschillende dingen geprobeerd en gevraagd, maar kom er niet uit.

Hier onder volgt de code:

code:
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
                         ''~``
                        ( o o )
+------------------.oooO--(_)--Oooo.------------------+
|                Unreal Hide Hack 1.1.1               |
|                    .oooO                            |
|                    (   )   Oooo.                    |
+---------------------\ (----(   )--------------------+
                       \_)    ) /
                             (_/


           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
           |The Logo Looks Best in Courier New|
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

                          ---====---
          Unreal Hide Hack 1.1.1 for IBF v2.0 PF2
                          By Cricket

Orginal By joshdw1 (joshdw1@ibhacks.com) and Maverick(mav@Ibhacks.com)

Print page & Quote & Last 10 Posts hide by SpooN110 (spoon110@uni.de)

Ported over to IPB 2.0 by Cricket (http://www.rom-source.com/)

Description: 
This hack enables the posted to hide a certain block of text from viewers until 
they have posted in the thread. Once they post, the text between the [hide] tags is revealed.

------------------------
Open sources/topics.php
------------------------

-----
Find:
-----



        if ( $row['queued'] or ($this->topic['topic_firstpost'] == $row['pid'] and $this->topic['approved'] != 1) )
        {
            $row['post_css'] = $this->post_count % 2 ? 'post1shaded' : 'post2shaded';
            $row['altrow']   = 'row4shaded';
        }
        else
        {
            $row['post_css'] = $this->post_count % 2 ? 'post1' : 'post2';
            $row['altrow']   = 'row4';
        }
 

----------
Add Below:
----------

        // Start Unreal Hide Hack

        if(preg_match("#\\[hide\](.+?)\\[/hide\]#is", $row['post']))
        {
            $DB->query("SELECT author_id FROM ibf_posts WHERE topic_id='".$this->topic['tid']."'");

            while($info = $DB->fetch_row())
            {
                $allposters[] = $info['author_id'];
            }

            if(in_array($ibforums->member['id'], $allposters))
            {
                $row['post'] = preg_replace( "#\\[hide\](.+?)\\[/hide\]#is", "<b><font color='blue'>Hidden Part:</font></b><br> \\1", $row['post'] );
                }
                else
                {
                    $row['post'] = preg_replace( "#\\[hide\](.+?)\\[/hide\]#is", "<b><font color='blue'>[ Hidden Part, you can see after reply ]</font></b>", $row['post'] );
                }
        }

        // End Unreal Hide Hack


----------------------------------
Save and upload sources/topics.php
----------------------------------

---------------------------------
Open sources/misc/print_page.php
---------------------------------

-----
Find:
-----

        while ( $i = $DB->fetch_row() )
        {

----------
Add Below:
----------

            // Start Unreal Hide Hack

            $allposters[] = $i['author_name'];

            // End Unreal Hide Hack


-----
Find:
-----

            $row['post'] = preg_replace( "/<!--EDIT\|(.+?)\|(.+?)-->/", "", $row['post'] );

----------
Add Below:
----------

            // Start Unreal Hide Hack

            if(preg_match("#\\[hide\](.+?)\\[/hide\]#is", $row['post']))
            {
                 if(in_array($ibforums->member['name'], $allposters))
                    {
                        $row['post'] = preg_replace( "#\\[hide\](.+?)\\[/hide\]#is", "<b>Hidden Part:</b><br> \\1", $row['post'] );
                    }
                    else
                    {
                        $row['post'] = preg_replace( "#\\[hide\](.+?)\\[/hide\]#is", "<b>[ Hidden Part, you can see after reply ]</b>", $row['post'] );
                    }
            }

            // End Unreal Hide Hack


-------------------------------------------
Save and upload sources/misc/print_page.php
-------------------------------------------

---------------------
Open sources/post.php
---------------------

-----
Find:
-----

        while ( $row = $DB->fetch_row($post_query) )
        {


----------
Add Below:
----------

            // Start Unreal Hide Hack

            if(preg_match("#\\[hide\](.+?)\\[/hide\]#is", $row['post']))
            {
                $DB->query("SELECT author_id FROM ibf_posts WHERE topic_id='".$topic_id."'");

                while($info = $DB->fetch_row())
                {
                    $allposters[] = $info['author_id'];
                }

                if(in_array($ibforums->member['id'], $allposters))
                {
                    $row['post'] = preg_replace( "#\\[hide\](.+?)\\[/hide\]#is", "<b><font color='blue'>Hidden Part:</font></b><br> \\1", $row['post'] );
                    }
                    else
                    {
                        $row['post'] = preg_replace( "#\\[hide\](.+?)\\[/hide\]#is", "<b><font color='blue'>[ Hidden Part, you can see after reply ]</font></b>", $row['post'] );
                    }
            }

            // End Unreal Hide Hack

--------------------------------
Save and upload sources/post.php
--------------------------------

------------------------
Open sources/search.php
------------------------

-----
Find:
-----

                $row['post_date'] = $std->get_date( $row['post_date'],'LONG' );

----------
Add Below:
----------

                // Start Unreal Hide Hack

                if(preg_match("#\\[hide\](.+?)\\[/hide\]#is", $row['post']))
                {
                    $DB->query("SELECT author_id FROM ibf_posts topic_id='".$row['topic_id']."'");

                    while($info = $DB->fetch_row())
                    {
                        $allposters[] = $info['author_id'];
                    }

                    if(in_array($ibforums->member['id'], $allposters))
                    {
                        $row['post'] = preg_replace( "#\\[hide\](.+?)\\[/hide\]#is", "<b><font color='blue'>Hidden Part:</font></b><br> \\1", $row['post'] );
                        }
                        else
                        {
                            $row['post'] = preg_replace( "#\\[hide\](.+?)\\[/hide\]#is", "<b><font color='blue'>[ Hidden Part, you can see after reply ]</font></b>", $row['post'] );
                        }
                }

                // End Unreal Hide Hack

----------------------------------
Save and upload sources/search.php
----------------------------------

---------------------------------------
Open sources/lib/search_mysql_ftext.php
---------------------------------------

-----
Find:
-----

                $row['post'] = $this->topics->parser->convert( array(
                                                                      'TEXT'    => $row['post'],
                                                                      'CODE'    => $forums->forum_by_id[$row['forum_id']]['use_ibc'],
                                                                      'SMILIES' => 1,
                                                                      'HTML'    => 0
                                                             )      );

----------
Add Below:
----------

                // Start Unreal Hide Hack

                if(preg_match("#\\[hide\](.+?)\\[/hide\]#is", $row['post']))
                {
                    $DB->query("SELECT author_id FROM ibf_posts WHERE topic_id='".$row['tid']."'");

                    $allposters = null;

                    while($info = $DB->fetch_row())
                    {
                        $allposters[] = $info['author_id'];
                    }

                    if(in_array($ibforums->member['id'], $allposters))
                    {
                        $row['post'] = preg_replace( "#\\[hide\](.+?)\\[/hide\]#is", "<b><font color='blue'>Hidden Part:</font></b><br> \\1", $row['post'] );
                        }
                        else
                        {
                            $row['post'] = preg_replace( "#\\[hide\](.+?)\\[/hide\]#is", "<b><font color='blue'>[ Hidden Part, you can see after reply ]</font></b>", $row['post'] );
                        }
                }

                // End Unreal Hide Hack

--------------------------------------------------
Save and upload sources/lib/search_mysql_ftext.php
--------------------------------------------------

---------------------------
Open jscripts/ipb_bbcode.js
---------------------------

-----
Find:
-----

var HTML_open = 0;

----------
Add Below:
----------

// Start Unreal Hide Hack

var HIDE_open = 0;

// End Unreal Hide Hack

--------------------------------------
Save and upload jscripts/ipb_bbcode.js
--------------------------------------

--------------------------
Open lang/en/lang_post.php
--------------------------

-----
Find:
-----

'hb_under'   => "Insert Underlined Text (alt + u)",

----------
Add Below:
----------

// Start Unreal Hide Hack

'hb_hide'    => "Insert Hide Tag (alt + d)",

// End Unreal Hide Hack

-------------------------------------
Save and upload lang/en/lang_post.php
-------------------------------------

---------------------------------------
Open skin_cache/cacheid_#/skin_post.php
---------------------------------------

-----
Find:
-----

var help_under          = "{$ibforums->lang['hb_under']}";

----------
Add Below:
----------

// Start Unreal Hide Hack

var help_hide           = "{$ibforums->lang['hb_hide']}";

// End Unreal Hide Hack

-----
Find:
-----

       <input type='button' accesskey='u' value=' U '       onclick='simpletag("U")' class='codebuttons' name='U' style="text-decoration:underline" onmouseover="hstat('under')" />

----------
Add Below:
----------

// Start Unreal Hide Hack

       <input type='button' accesskey='d' value=' HIDE '    onClick='simpletag("HIDE")' class='codebuttons' name="HIDE" onmouseover="hstat('hide')" />

// End Unreal Hide Hack

--------------------------------------------------
Save and upload skin_cache/cacheid_#/skin_post.php
--------------------------------------------------



-----------------------------------

Wie o wie kan mij helpen !!!!

  • w0w
  • Registratie: Mei 2003
  • Laatst online: 19:53

w0w

Wie o wie kan mij helpen !!!!
De maker van het script lijkt me zo :Y)

  • Jimbolino
  • Registratie: Januari 2001
  • Laatst online: 22-05 00:16

Jimbolino

troep.com

waarschijnlijk gaat het fout bij de laatste regel, weet je zeker dat je die in de goede file hebt gezet?

let op als je verschillende skins gebruikt, moet je het in verschillende mappen/files doen...

edit: misschien is het beter om een link naar het script te geven, en stap voor stap te vertellen wat je wel en niet gedaan hebt, GoT is geen scriptdump. En een probleem kun je nooit in 2 regels omschrijven/uitleggen, wij zijn niet helderziend !

[ Voor 39% gewijzigd door Jimbolino op 18-09-2004 15:20 ]

The two basic principles of Windows system administration:
For minor problems, reboot
For major problems, reinstall


  • dusty
  • Registratie: Mei 2000
  • Laatst online: 21-02 00:06

dusty

Celebrate Life!

move W&G -> P&W

Back In Black!
"Je moet haar alleen aan de ketting leggen" - MueR


  • gorgi_19
  • Registratie: Mei 2002
  • Laatst online: 19:24

gorgi_19

Kruimeltjes zijn weer op :9

Serverside PHP topics horen in Programming & Webscripting thuis en niet in Webdesign & Graphics :) Echter, ook hier gaat hij dicht. In zowel Programming & Webscripting als Webdesign & Graphics geven we geen support op andermans scripts. Neem hiervoor contact op met de maker van het script; het is zijn verantwoordelijkheid.
We gaan hier namelijk niet tig regels code doorploeteren om te kijken wat iemand anders destijds bedacht heeft aan code.

Wil hij geen antwoord geven, of reageert hij niet, dan is het pech hebben, om het bot te zeggen. :)

Zie P&W FAQ - De "quickstart" voor wat we verwachten van een topic :)

Deze gaat in ieder geval dicht. :)

Digitaal onderwijsmateriaal, leermateriaal voor hbo


Dit topic is gesloten.