Verzeichnisstruktur phpBB-1.0.0


Veröffentlicht
15.12.2000

So funktioniert es


Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück

Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

faq.php

Zuletzt modifiziert: 09.10.2024, 12:50 - Dateigröße: 21.43 KiB


001  <?php
002  /***************************************************************************
003                            faq.php  -  description
004                               -------------------
005      begin                : Fri November 3, 2000
006      copyright            : (C) 2000 James Atkinson
007      email                : james@totalgeek.org
008   
009      $Id: faq.php,v 1.5 2000/11/15 04:57:15 thefinn Exp $
010   
011   ***************************************************************************/
012   
013  /***************************************************************************
014   *                                                                                         
015   *   This program is free software; you can redistribute it and/or modify      
016   *   it under the terms of the GNU General Public License as published by  
017   *   the Free Software Foundation; either version 2 of the License, or            
018   *   (at your option) any later version.
019   *
020   ***************************************************************************/
021  /***************************************************************************
022   * Created by: Steven Cunningham (defender@webinfractions.com) for phpBB
023   * *************************************************************************/
024  include('extention.inc');
025  include('functions.'.$phpEx);
026  include('config.'.$phpEx);
027  require('auth.'.$phpEx);
028  $pagetitle = "FAQ";
029  $pagetype = "other";
030  include('page_header.'.$phpEx);
031  ?>
032   
033  <div align="center"><center>
034  <table border="0" width="<?php echo $tablewidth?>" bgcolor="<?php echo $table_bgcolor?>">
035    <TR><TD>
036  <table border="0" width="100%" bgcolor=>
037      <tr bgcolor="<?php echo $color1?>">
038          <td><font size="<?php echo $FontSize4?>" face="<?php echo $FontFace?>" color="<?php echo $textcolor?>"><b>Frequently 
039            Asked Questions</font></b></td>
040      </tr>
041      <tr bgcolor="<?php echo $color2?>">
042          <td>
043            <font size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>" color="<?php echo $linkcolor?>">
044            <a href="#register">Do I have to register?</a><br>
045            <a href="#smilies">Can I use smilies?</a><br>
046            <a href="#HTML">Can I add HTML to my messages?</a><br>
047            <a href="#mods">What are moderators?</a><br>
048        <a href="#profile">Can I change my profile?</a><br>
049            <a href="#prefs">Can I customize the bulletin board in any way?</a><br>
050            <a href="#cookies">Do you use cookies?</a><br>
051            <a href="#edit">Can I edit my own posts?</a><br>
052            <a href="#attach">Can I attach files?</a><br>
053            <a href="#search">Can I search?</a><br>
054            <a href="#signature">Can I add a signature to the end of my posts?</a><br>
055            <a href="#announce">What are announcements?</a><br>
056            <a href="#pw">Is there a username/password retrieval system?</a><br>
057            <a href="#notify">Can I be notified by email if someone responds to my topic?</a><br>
058            <a href="#searchprivate">Can I search private forums?</a><br>
059            <a href="#ranks">What are the ranks in the <?php echo $sitename?> Forums?</a><br>
060            <a href="#rednumbers">Why are icons flaming in the topic view?</a></p></font>
061          </td>
062      </tr>
063      <tr bgcolor="<?php echo $color1?>">
064          <td>
065          <font color="<?php echo $textcolor?>" size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>">
066          <a name="register"><b><br>Registering</b></font></a>
067          </td>
068      </tr>
069      <tr bgcolor="<?php echo $color2?>">
070          <td>
071      <font size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>" color="<?php echo $textcolor?>">
072      Registration is only required on a per forum basis. Depending on the how the administrator has setup his/her forums some may require you to register in order to post, where
073          some may allow you to post anonymously. If anonymous posting is allowed you can do so by simply not entering
074          a username and password when prompted. 
075          Registration is free, and you are not
076          required to post your real name. You are required to post
077          your actual email address, however it will only be used to email you a new password if you have forgotten yours. You also have the option to hide
078          you email address from everyone except the administrator, it option is selected by default but you can allow others to see your email address
079          by selecting the 'Allow other users to view my email address' checkbox on the registration form. You can register by clicking 
080      <a href="<?php echo $url_phpbb?>/bb_register.<?php echo $phpEx?>?mode=agreement">here</a></font>
081      </td>
082      </tr>
083      <tr bgcolor="<?php echo $color1?>">
084          <td>
085      <a name="smilies">
086      <font color="<?php echo $textcolor?>" size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>">
087          <b>Smilies</b></font></a>
088      </td>
089      </tr>
090      <tr bgcolor="<?php echo $color2?>">
091          <td>
092      <font size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>" color="<?php echo $textcolor?>">
093      Youve probably seen others use smilies before in email messages or other
094          bulletin board posts. Smilies are keyboard characters
095          used to convey an emotion, such as a smile 
096      :)
097      or a frown 
098      :(.
099      This bulletin board
100          automatically converts certain smilies to a graphical
101          representation. For example, if you type 
102      :D
103      in your BB post, it will  automatically be converted to 
104      <img src="<?php echo $url_images?>/smiles/icon_biggrin.gif"> - a big grin. The
105          following smilies are currently supported: </font><BR>
106      <table width="50%" ALIGN="CENTER" BGCOLOR="<?php echo $table_bgcolor?>" CELLSPACEING=1 BORDER="0">
107        <TR><TD>
108        <TABLE WIDTH="100%" BORDER="0">
109   <?php
110        
111        if ($getsmiles = mysql_query("SELECT * FROM smiles")) {
112           while ($smile = mysql_fetch_array($getsmiles)) {
113  ?>
114           <TR BGCOLOR="<?php echo $color2?>"><TD width="100"><FONT FACE="<?php echo $FontFace?>" SIZE="<?php echo $FontSize2?>" COLOR="<?php echo $textcolor?>"><?php echo $smile[code]?></FONT></td><td width="50%"><FONT FACE="<?php echo $FontFace?>" SIZE="<?php echo $FontSize2?>" COLOR="<?php echo $textcolor?>"> <?php echo $smile[emotion]?>&nbsp;</FONT></td><td width="55"> <IMG SRC="<? echo "$url_smiles/$smile[smile_url]";?>"></td></tr>
115  <?php
116           }
117        } else 
118           echo "Could not retrieve from the smile database.";
119  ?>
120      </TABLE></TABLE>
121      </div>
122      </td>
123      </tr>
124      <tr bgcolor="<?php echo $color1?>">
125          <td>
126      <p align="left"><a name="html">
127      <font color="<?php echo $textcolor?>" size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>">
128      <b>Using HTML and/or BB
129          Code</b></font></a></p>
130          </td>
131      </tr>
132      <tr bgcolor="<?php echo $color2?>">
133          <td>
134      <font size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>" color="<?php echo $textcolor?>">
135      You may be able to use HTML and/or BB Code in your posts, if your
136          administrators and moderators have those options turned
137          on. 
138      Every time you
139          post a new note, you will be told whether BB Code and/or
140          HTML is enabled. If HTML is on,
141          you may use any HTML tags, but please be very careful
142          that you proper HTML syntax. If you do not, your
143          moderator or administrator may have to edit your post.
144          BB Code is similar to HTML, but offers just a few basic
145          functions, such as hyperlinking, image display, bolding
146          and italicizing. A complete list of current BB Codes are
147          <a href="bbcode_ref.<?php echo $phpEx?>">listed here</a>. </font>
148      </td>
149      </tr>
150      <tr bgcolor="<?php echo $color1?>"> 
151          <td nowrap>
152      <p align="left"><a name="mods">
153      <font color="<?php echo $textcolor?>" size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>">
154      <b>Moderators</b></font></a></p>
155          </td>
156      </tr>
157      <tr bgcolor="<?php echo $color2?>">
158          <td>
159            <p>
160          <font size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>" color="<?php echo $textcolor?>">
161          Moderators control individual 
162              forums. They can edit, delete, or prune any posts in their forums. 
163              If you have a question about a particular forum, you should direct 
164              it to your forum moderator.</p>
165            <p>Admins and forum moderators reserve the right to close or delete any post that does not provide 
166              a clear and purposefull topic. There are many members who still use 
167              28.8 and 56k modems that do not have the time to wade through useless 
168              and senseless topics. </p>
169            <p>Anyone who posts just to increase their <?php echo $sitename?> Forums stats or post topics out of 
170          boardom risk having there topics closed, removed and/or membership revoked. </p>
171            <p>Try to make the topic wording mirror what is inside the thread. Topics like "Check this out!" and 
172              "~~\\You have to see this!//~~" only attract members to a topic they 
173              may not want to read.</font></p>
174          </td>
175      </tr>
176      <tr bgcolor="<?php echo $color1?>">
177          <td>
178      <p align="left"><a name="profile">
179      <font color="<?php echo $textcolor?>" size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>">
180      <b>Changing Your Profile</b></font></a></p>
181          </td>
182      </tr>
183      <tr bgcolor="<?php echo $color2?>">
184          <td>
185      <font size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>" color="<?php echo $textcolor?>">
186      You may easily change any info stored in your registration profile,
187          using the &quot;profile&quot; link located near the top
188          of each page. Simply identify yourself by typing your
189          username and password, or by logging in, and all of your profile information
190          will appear on screen.</font>
191      </td>
192      </tr>
193      <tr bgcolor="<?php echo $color1?>"> 
194          <td>
195      <a name="prefs">
196      <font color="<?php echo $textcolor?>" size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>">
197      <b>Customizing Using Preferences</b></font></a>
198      </td>
199      </tr>
200      <tr bgcolor="<?php echo $color2?>">
201          <td>
202      <font size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>" color="<?php echo $textcolor?>">
203      As a registered
204          bulletin board user, you may store your username in memory for up to one year at a time. 
205      By doing this we create a way to keep track of who you are when you visit the forum, therefor you can customize the look of the forum
206      by selecteding from the themes that the administration has provided. Also, if the administrator allows it you may have the option of
207      creating new themes for the fourms. In creating a new theme you will be able to set the colors, fonts and font sizes on the board, however
208      at this time only the administrator my change the images for each theme. When a user creates a theme the images from the forums default theme
209      will be selected.
210      <br>*NOTE: In order to use themes you MUST have cookies enabled.</font>
211      </td>
212      </tr>
213      <tr bgcolor="<?php echo $color1?>">
214          <td><a name="cookies">
215      <font color="<?php echo $textcolor?>" size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>">
216      <b>Cookies</b></font></a></td>
217      </tr>
218      <tr bgcolor="<?php echo $color2?>">
219          <td>
220      <font size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>" color="<?php echo $textcolor?>">
221      This bulletin board uses cookies to store the following information:
222          the last time you visited the forums, your username,
223          and a unique session ID number when you login. These cookies are stored on your browser.
224          If your browser does not support cookies,
225          or you have not enabled cookies on your browser, none of
226          these time-saving features will not work properly. </font>
227      </td>
228      </tr>
229      <tr bgcolor="<?php echo $color1?>">
230          <td><a name="edit">
231      <font color="<?php echo $textcolor?>" size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>">
232      <b>Editing Your Posts</b></font></a>
233          </td>
234      </tr>
235      <tr bgcolor="<?php echo $color2?>">
236          <td>
237      <font size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>" color="<?php echo $textcolor?>">
238      You may edit your own posts at any time. Just go to the thread where
239          the post to be edited is located and you will see an edit
240          icon on the line under your message.
241          Click on this icon and edit the post. No one else can
242          edit your post, except for the forum moderator or the
243          bulletin board administrator. Also, for up to 30 mins after you have posted you message the edit post screen will give you the option
244      of deleteing that post. After 30 mins however only the moderator and/or administrator can remove the post.</font>
245      </td>
246      </tr>
247      <tr bgcolor="<?php echo $color1?>">
248          <td><a name="signature">
249      <font color="<?php echo $textcolor?>" size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>">
250      <b>Adding Signatures</b></font></a>
251      </td>
252      </tr>
253      <tr bgcolor="<?php echo $color2?>">
254          <td>
255      <font size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>" color="<?php echo $textcolor?>">
256      You may use a signature on your posts.
257          If you click on the profile link at the top of most 
258          pages, you will be able to edit your profile, including your standard signature. Once you have
259          a signature stored, you can choose to include it any post
260          you make by checking the &quot;include signature&quot;
261          box when you create your post. This bulletin board's
262          administrator may elect to turn the signature feature off
263          at any time, however. If that is the case, the &quot;include
264          signature&quot; option will not appear when you post a
265          note, even if you have stored a signature. You may also
266          change your signature at any time by changing your
267          profile. <p>Note: You may use HTML or <a href="bbcode_ref.html">BB Code</a> if the admin has 
268      set this option to on.</font>
269          </p>
270          </td>
271      </tr>
272      <tr bgcolor="<?php echo $color1?>">
273          <td>
274      <a name="attach">
275      <font color="<?php echo $textcolor?>" size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>">
276      <b>Attaching Files</b></font></a>
277      </td>
278      </tr>
279      <tr bgcolor="<?php echo $color2?>">
280          <td>
281      <font size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>" color="<?php echo $textcolor?>">
282      For security reasons, you may not attach files to any posts. You may
283          cut and paste text into your post, however, or use HTML
284          and/or BB Code (if enabled) to provide hyperlinks to
285          outside documents. File attachements will be included in futures versions of phpBB.</font>
286      </td>
287      </tr>
288      <tr bgcolor="<?php echo $color1?>">
289          <td>
290      <a name="search">
291      <font color="<?php echo $textcolor?>" size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>">
292      <b>Searching For Specific Posts</b></font></a>
293      </td>
294      </tr>
295      <tr bgcolor="<?php echo $color2?>">
296          <td>
297      <font size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>" color="<?php echo $textcolor?>">
298      You may search for specific posts based on a word or words found in the
299          posts, user name, date, and particular forum(s). Just
300          click on the &quot;search&quot; link at the top of most
301          pages.</font>
302      </td>
303      </tr>
304      <tr bgcolor="<?php echo $color1?>">
305          <td>
306      <a name="announce">
307      <font color="<?php echo $textcolor?>" size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>">
308      <b>Announcements</b></font></a>
309      </td>
310      </tr>
311      <tr bgcolor="<?php echo $color2?>">
312          <td>
313      <font size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>" color="<?php echo $textcolor?>">
314      Announcements have not been implemented, but are planned in a future release.
315      However, the administrator can create a forum where only other administrators and moderators can post. This type
316      of forum can easly be used as an announcement forum.                                          
317      </td>
318      </tr>
319      <tr bgcolor="<?php echo $color1?>">
320          <td>
321      <a name="pw">
322      <font color="<?php echo $textcolor?>" size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>">
323      <b>Lost User Name and/or Password</b></font></a>
324      </td>
325      </tr>
326      <tr bgcolor="<?php echo $color2?>">
327          <td>
328      <font size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>" color="<?php echo $textcolor?>">
329       In the even that you lose you password you can click on the &quot;Forgotten your password?&quot; link provided in the
330      message posting screens next to the password field. This link will take you to a page where you can fill in your username and email address.
331      The system will then email a new, randomly generated, password to the email address listed in your profile, if if you supplied the correct email address.</FONT>
332      </td>
333      </tr>
334      <tr bgcolor="<?php echo $color1?>">
335          <td>
336      <a name="notify">
337      <font color="<?php echo $textcolor?>" size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>">
338      <b>Email Notification</b></font></a>
339      </td>
340      </tr>
341      <tr bgcolor="<?php echo $color2?>">
342          <td>
343      <font size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>" color="<?php echo $textcolor?>">
344      If you create a new topic, you have the option of receiving an email
345          notification every time someone posts a reply to your
346          topic. Just check the email notification box on the
347          &quot;New Topic&quot; forum when you create your new
348          topic, if you want to use this feature. </font>
349      </td>
350      </tr>
351      <tr bgcolor="<?php echo $color1?>">
352          <td>
353      <a name="searchprivate">
354      <font color="<?php echo $textcolor?>" size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>">
355      <b>Can I search private forums?</b>
356      </td>
357      </tr>
358      <tr bgcolor="<?php echo $color2?>">
359          <td>
360      <font size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>" color="<?php echo $textcolor?>">
361      Yes, but you cannot read any of the posts unless you have the password to the private forum. </font></p>
362          </td>
363      </tr>
364      <tr bgcolor="<?php echo $color1?>">                                                   
365          <td>
366      <a name="ranks">
367      <font color="<?php echo $textcolor?>" size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>">
368      <b>What are the ranks for the <?php echo $sitename?> Forums?</b></font></a>
369      </td>
370      </tr>
371      <tr bgcolor="<?php echo $color2?>">
372          <td>
373      <font size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>" color="<?php echo $textcolor?>">
374      The <?php echo $sitename?> Forums have established 
375      methods to classify it's users by activity on the <?php echo $sitename?> Forums through the number of posts.</p>
376      <br>
377      The current ranks are as follows:<br>
378   
379      <?php
380      $sql = "SELECT * FROM ranks WHERE rank_special = 0";
381      if(!$r = mysql_query($sql, $db)) {
382      echo "Error connecting to the database";
383      include('page_tail.'.$phpEx);
384      exit();
385      }
386      ?>
387      <br><TABLE BORDER="0" WIDTH="<?php echo $TableWidth?>" CELLPADDING="1" CELLSPACING="0" ALIGN="CENTER" VALIGN="TOP"><TR><TD BGCOLOR="<?php echo $table_bgcolor?>">
388      <TABLE BORDER="0" CELLPADDING="1" CELLSPACING="1" WIDTH="100%">
389      <TR BGCOLOR="<?php echo $color1?>" ALIGN="CENTER">
390      <TD><font face="<?php echo $FontFace?>" size="<?php echo $FontSize2?>" color="<?php echo $textcolor?>">&nbsp;Rank Title&nbsp;</font></TD>
391      <TD><font face="<?php echo $FontFace?>" size="<?php echo $FontSize2?>" color="<?php echo $textcolor?>">&nbsp;Minimum Posts&nbsp;</font></TD>
392      <TD><font face="<?php echo $FontFace?>" size="<?php echo $FontSize2?>" color="<?php echo $textcolor?>">&nbsp;Maximum Posts&nbsp;</font></TD>
393          <TD><font face="<?php echo $FontFace?>" size="<?php echo $FontSize2?>" color="<?php echo $textcolor?>">&nbsp;Rank Image&nbsp;</font></TD>                                                           
394      </TR>
395      <?php
396      if($m = mysql_fetch_array($r)) {
397      do {
398      echo "<TR BGCOLOR=\"$color2\" ALIGN=\"CENTER\">";
399      echo "<TD><font face=\"<?php echo $FontFace?>\" size=\"2\" color=\"ffffff\">$m[rank_title]</font></TD>";
400      echo "<TD><font face=\"<?php echo $FontFace?>\" size=\"2\" color=\"ffffff\">$m[rank_min]</font></TD>";
401      echo "<TD><font face=\"<?php echo $FontFace?>\" size=\"2\" color=\"ffffff\">$m[rank_max]</font></TD>";
402      // The rank image has not been implemented at this time.
403          if($m[rank_image] != '') 
404         echo "<TD><img src=\"$m[rank_image]\"></TD>";
405      else
406         echo "<TD>&nbsp;</TD>";
407      echo "</TR>";
408      } while($m = mysql_fetch_array($r));
409      }
410      else {
411      echo "<TR BGCOLOR=\"$color2\" ALIGN=\"CENTER\">";
412      echo "<TD COLSPAN=\"3\">No Ranks in the database</TD>";
413      echo "</TR>";
414      }
415      ?>
416      </TABLE></TABLE></font>
417      The adminstrator also has the option of assigning special ranks to any user they choose. The above table does not list these special ranks.
418          </td>
419      </tr>
420      <tr bgcolor="<?php echo $color1?>">
421          <td>
422      <a name="rednumbers">
423      <font color="<?php echo $textcolor?>" size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>">
424      <b>Why are some post icons </b>
425      </font>
426      <font color="#FF0033" size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>">
427      <b>flaming</b>
428      </font>
429      <font color="<?php echo $textcolor?>" size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>">
430      <b> in the forum view?</b></font></a>
431      </td>
432      </tr>
433      <tr bgcolor="<?php echo $color2?>">
434          <td>
435      <font size="<?php echo $FontSize2?>" face="<?php echo $FontFace?>" color="<?php echo $textcolor?>">
436      Flaming icons signify that there are <?php echo $hot_threshold?> or more posts in that
437          thread. It is a warning to slower connections that the
438          thread may take awhile to load.</font></p>
439          </td>
440      </tr>
441  </table>
442  </TABLE>
443  </center>
444  </div>
445   
446  <?php
447  include('page_tail.'.$phpEx);
448  ?>
449