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. |
|
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
config.php
001 <?php
002 /***************************************************************************
003 config.php - description
004 -------------------
005 begin : Sat June 17 2000
006 copyright : (C) 2000 by James Atkinson
007 email : james@totalgeek.org
008
009 $Id: config.php,v 1.39 2000/12/09 20:04:47 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 /* -- Let's Set A Few URL Paths -- */
023 $url_images = "http://$SERVER_NAME/phpBB/images"; // Do NOT include closing / mark!
024 $url_phpbb = "http://$SERVER_NAME/phpBB"; // Do NOT include closing / mark!
025 $url_admin = "http://$SERVER_NAME/phpBB/admin"; // Do NOT include closing / mark!
026 $url_smiles = "$url_images/smiles";
027
028 /* -- Email Settings -- */
029 // The following settings will effect all Email that phpBB sends.
030 // The name to sign all email's with
031 // To do a carrage return enter /r/n in the variable. eg James Atkinson\r\nAdministrator
032 $email_sig = "Yours Truely,\r\nMr. Admin";
033 // The From: address on emails
034 $email_from = "phpBB@$SERVER_NAME";
035
036
037 /* Stuff for priv msgs - not in DB yet: */
038 $allow_pmsg_bbcode = 1;
039 $allow_pmsg_html = 1;
040
041 /* -- Cookie settings (lastvisit, userid) -- */
042 $cookiedomain = "www.totalgeek.org"; // This is the only thing you need to change, set it to your domain.
043 $cookiename = "phpBB";
044 $cookiepath = "/phpBB";
045 $cookiesecure = false;
046
047 /* -- Cookie settings (sessions) -- */
048 $sesscookiename = "phpBBsession";
049 $sesscookietime = 3600; // number of seconds each session lasts. This is refreshed every time the logged-in user views a page.
050
051
052 /* -- You shouldn't have to change anything after this point, this data is obsoleat is and only used if the themes table in the DB can't be found
053 This information is set by the install script with it is run and entered into the database.
054 */
055 $sitename = "Test.org"; // Set this to the name of your site, since you probably arn't totalgeek.org :)
056 $allow_html = 1; // 1 = yes, 0 = no
057 $allow_bbcode = 1; // 1 = yes, 0 = no
058 $allow_sig = 1; // 1 = yes, 0 = no
059 $allow_theme_create = 1;
060 $posts_per_page = 15; // # of posts to display per topic page.
061 $topics_per_page = 50;
062 $hot_threshold = 15;
063
064 /* -- Cosmetic Settings -- */
065 $bgcolor = "#00000"; // Default Black
066 $table_bgcolor = "#001100";
067 $textcolor = "#FFFFFF";
068 $linkcolor = "#11C6BD";
069 $vlinkcolor = "#11C6BD";
070 $color1 = "#6C706D";
071 $color2 = "#2E4460"; // Default Robins Egg Blue
072 $FontFace = "Verdana,Tahoma";
073 $FontSize1 = "1";
074 $FontSize2 = "2";
075 $FontSize3 = "-2";
076 $FontSize4 = "+1";
077 $FontColor = "#FFFFFF";
078 $TableWidth = "95%"; // Table Width - Can be either % or #
079 $textcolorMessage = "#FFFFFF"; // Message Font Text Color
080 $FontSizeMessage = "1"; // Message Font Text Size
081 $FontFaceMessage = "Arial"; // Message Font Text Face
082
083 /* -- Images -- */
084 $header_image = "$url_images/header-dark.jpg"; // Default image that comes with phpBB
085 $newtopic_image = "$url_images/new_topic-dark.jpg"; //Default 'New Topic' image
086 $reply_image = "$url_images/reply-dark.jpg"; //Defult 'Reply' image
087 $reply_wquote_image = "$url_images/quote.gif";
088 $folder_image = "$url_images/folder.gif";
089 $hot_folder_image = "$url_images/hot_folder.gif";
090 $newposts_image = "$url_images/red_folder.gif";
091 $hot_newposts_image = "$url_images/hot_red_folder.gif";
092 $posticon = "$url_images/posticon.gif";
093 $edit_image = "$url_images/edit.gif";
094 $profile_image = "$url_images/profile.gif";
095 $email_image = "$url_images/email.gif";
096 $locked_image = "$url_images/lock.gif";
097 $reply_locked_image = "$url_images/reply_locked-dark.jpg";
098 $locktopic_image = "$url_images/lock_topic.gif";
099 $deltopic_image = "$url_images/del_topic.gif";
100 $movetopic_image = "$url_images/move_topic.gif";
101 $unlocktopic_image = "$url_images/unlock_topic.gif";
102 $www_image = "$url_images/www_icon.gif";
103 $icq_add_image = "$url_images/icq_add.gif";
104 $images_aim = "$url_images/aim.gif";
105 $images_yim = "$url_images/yim.gif";
106 $images_msnm = "$url_images/msnm.gif";
107 $ip_image = "$url_images/ip_logged.gif";
108
109 /* -- Other Settings -- */
110 $phpbbversion = "1.0.0";
111