MOD Download: http://www.phpbb-scripts.com/mods/multiforums100.zip
Last Stable version: 0.8.0
Demo Board: http://www.phpbb-scripts.com/phpBB2/mul ... _forum.php
Screen Shots: http://www.phpbb-scripts.com/mf-pics/
Phpbb kurduktan sonram1 yoksa kurmadan birliktemi kuruluyor bunu bulamad1m o yüzden Kendi forumum ç1km1yor ama üyeler forum yapabiliyor...
MultiForums Lite V.1.0 ( Kendi Forumunuzu Olusturun)
MultiForums Lite V.1.0 ( Kendi Forumunuzu Olusturun)
Değişime hazır Olun...
-
- Kayıtlı Kullanıcı
- Mesajlar: 11
- Kayıt: 06.04.2007, 14:23
- İletişim:
Re: MultiForums Lite V.1.0 ( Kendi Forumunuzu Olusturun)
http://www.phpbbhacks.com/load.php?id=6456 burdan indirebilirsiniz.
Bir arkadaşta kurulumunu anlatırsa sevinirim...
Bir arkadaşta kurulumunu anlatırsa sevinirim...
http://www.hayalolsam.org
Paylaşım,Müzik,Eğlence,Web Tasarım,Php-Asp Sistemleri,Oyun
Paylaşım,Müzik,Eğlence,Web Tasarım,Php-Asp Sistemleri,Oyun
-
- Kayıtlı Kullanıcı
- Mesajlar: 11
- Kayıt: 06.04.2007, 14:23
- İletişim:
Re: MultiForums Lite V.1.0 ( Kendi Forumunuzu Olusturun)
Kurulumu (Tüm dosyaları forum ana dizinine atın)
##############################################################
#
#-----[ Kopyala ]------------------------------------------
#
copy install.php to install.php
copy multiforums/*.php to multiforums/*.php
copy multiforums/admin/index.php to multiforums/admin/index.php
copy multiforums/admin/includes/*.php to multiforums/admin/includes/*.php
#
#-----[ Uyarılar]------------------------------------------
#
config.php chmod ayarını 777 yapın
install.php yi çalıştırın
phpBB to 2.0.19 içindir...
#
#-----[ Aç ]------------------------------------------
#
common.php
#
#-----[ Bul ]------------------------------------------
#
// We do not need this any longer, unset for safety purposes
unset($dbpasswd);
#
#-----[ Sonrasına ekle ]------------------------------------------
#
//
// Take the info from multiforums_settings
//
$sql = "SELECT *
FROM multiforums_settings";
if( !($result = $db->sql_query($sql)) )
{
message_die(CRITICAL_ERROR, "Could not query multiforums information", "", __LINE__, __FILE__, $msql);
}
while ( $row = $db->sql_fetchrow($result) )
{
$board_config[$row['config_name']] = $row['config_value'];
}
if(isset($HTTP_GET_VARS['mforum']) && !empty($HTTP_GET_VARS['mforum'])) {
if($board_config['access_type'] == 1) {
setcookie("multiforumname", $HTTP_GET_VARS['mforum'], time()+31536000);
}
$mforum = $HTTP_GET_VARS['mforum'];
} else if(isset($HTTP_COOKIE_VARS['multiforumname']) && !empty($HTTP_COOKIE_VARS['multiforumname']) && $board_config['access_type'] == 1) {
$mforum = $HTTP_COOKIE_VARS['multiforumname'];
}
if(empty($mforum)) {
header("Location: http://" . $board_config['server_name'] . $board_config['script_path'] . "main.php");
exit();
}
$query = $db->sql_query("SELECT * FROM `multiforums_forums` WHERE `access_name` = '$mforum' LIMIT 1") or die(mysql_error());
if(!$result = $db->sql_fetchrow($query)) {
header("Location: http://" . $board_config['server_name'] . $board_config['script_path'] . "multiforums/new_forum.php?access_name=$mforum");
exit();
} else {
$forum_config = $result;
}
$table_prefix = $result['access_name'] . "_";
include($phpbb_root_path . 'includes/db_constants.'.$phpEx);
//
// END MF CODE
//
#
#-----[ Bul ]------------------------------------------
#
$sql = "SELECT *
FROM " . CONFIG_TABLE;
if( !($result = $db->sql_query($sql)) )
{
message_die(CRITICAL_ERROR, "Could not query config information", "", __LINE__, __FILE__, $sql);
}
while ( $row = $db->sql_fetchrow($result) )
{
$board_config[$row['config_name']] = $row['config_value'];
}
#
#-----[ Bununla Değiştir ]------------------------------------------
#
$sql = "SELECT *
FROM " . CONFIG_TABLE;
if( !($result = $db->sql_query($sql)) )
{
message_die(CRITICAL_ERROR, "Could not query config information", "", __LINE__, __FILE__, $sql);
}
while ( $row = $db->sql_fetchrow($result) )
{
if(!isset($board_config[$row['config_name']])) {
$board_config[$row['config_name']] = $row['config_value'];
}
}
#
#-----[ Bul ]------------------------------------------
#
if (file_exists('install') || file_exists('contrib'))
{
message_die(GENERAL_MESSAGE, 'Please_remove_install_contrib');
}
#
#-----[ sonrasına ekle ]------------------------------------------
#
// Multi-Forums V. 1.1.0 Fix - Forgot to add it in the install file.
if($forum_config['suspended'] == true) {
message_die(GENERAL_MESSAGE, "Sorry this forum is currently suspended.<br />Please contact an admin with this error if you think it is a mistake.");
}
#
#-----[ aç ]------------------------------------------
#
includes/constants.php
#
#-----[ bul ]------------------------------------------
#
// Table names
define('CONFIRM_TABLE', $table_prefix.'confirm');
define('AUTH_ACCESS_TABLE', $table_prefix.'auth_access');
define('BANLIST_TABLE', $table_prefix.'banlist');
define('CATEGORIES_TABLE', $table_prefix.'categories');
define('CONFIG_TABLE', $table_prefix.'config');
define('DISALLOW_TABLE', $table_prefix.'disallow');
define('FORUMS_TABLE', $table_prefix.'forums');
define('GROUPS_TABLE', $table_prefix.'groups');
define('POSTS_TABLE', $table_prefix.'posts');
define('POSTS_TEXT_TABLE', $table_prefix.'posts_text');
define('PRIVMSGS_TABLE', $table_prefix.'privmsgs');
define('PRIVMSGS_TEXT_TABLE', $table_prefix.'privmsgs_text');
define('PRIVMSGS_IGNORE_TABLE', $table_prefix.'privmsgs_ignore');
define('PRUNE_TABLE', $table_prefix.'forum_prune');
define('RANKS_TABLE', $table_prefix.'ranks');
define('SEARCH_TABLE', $table_prefix.'search_results');
define('SEARCH_WORD_TABLE', $table_prefix.'search_wordlist');
define('SEARCH_MATCH_TABLE', $table_prefix.'search_wordmatch');
define('SESSIONS_TABLE', $table_prefix.'sessions');
define('SESSIONS_KEYS_TABLE', $table_prefix.'sessions_keys');
define('SMILIES_TABLE', $table_prefix.'smilies');
define('THEMES_TABLE', $table_prefix.'themes');
define('THEMES_NAME_TABLE', $table_prefix.'themes_name');
define('TOPICS_TABLE', $table_prefix.'topics');
define('TOPICS_WATCH_TABLE', $table_prefix.'topics_watch');
define('USER_GROUP_TABLE', $table_prefix.'user_group');
define('USERS_TABLE', $table_prefix.'users');
define('WORDS_TABLE', $table_prefix.'words');
define('VOTE_DESC_TABLE', $table_prefix.'vote_desc');
define('VOTE_RESULTS_TABLE', $table_prefix.'vote_results');
define('VOTE_USERS_TABLE', $table_prefix.'vote_voters');
#
#-----[ Bununla değiştir ]------------------------------------------
#
# NOTE: If you have more "defines" than the dufault put them in db_constants.php
// Remove Constants
// Table names
// define('CONFIRM_TABLE', $table_prefix.'confirm');
// define('AUTH_ACCESS_TABLE', $table_prefix.'auth_access');
// define('BANLIST_TABLE', $table_prefix.'banlist');
// define('CATEGORIES_TABLE', $table_prefix.'categories');
// define('CONFIG_TABLE', $table_prefix.'config');
// define('DISALLOW_TABLE', $table_prefix.'disallow');
// define('FORUMS_TABLE', $table_prefix.'forums');
// define('GROUPS_TABLE', $table_prefix.'groups');
// define('POSTS_TABLE', $table_prefix.'posts');
// define('POSTS_TEXT_TABLE', $table_prefix.'posts_text');
// define('PRIVMSGS_TABLE', $table_prefix.'privmsgs');
// define('PRIVMSGS_TEXT_TABLE', $table_prefix.'privmsgs_text');
// define('PRIVMSGS_IGNORE_TABLE', $table_prefix.'privmsgs_ignore');
// define('PRUNE_TABLE', $table_prefix.'forum_prune');
// define('RANKS_TABLE', $table_prefix.'ranks');
// define('SEARCH_TABLE', $table_prefix.'search_results');
// define('SEARCH_WORD_TABLE', $table_prefix.'search_wordlist');
// define('SEARCH_MATCH_TABLE', $table_prefix.'search_wordmatch');
// define('SESSIONS_TABLE', $table_prefix.'sessions');
// define('SESSIONS_KEYS_TABLE', $table_prefix.'sessions_keys');
// define('SMILIES_TABLE', $table_prefix.'smilies');
// define('THEMES_TABLE', $table_prefix.'themes');
// define('THEMES_NAME_TABLE', $table_prefix.'themes_name');
// define('TOPICS_TABLE', $table_prefix.'topics');
// define('TOPICS_WATCH_TABLE', $table_prefix.'topics_watch');
// define('USER_GROUP_TABLE', $table_prefix.'user_group');
// define('USERS_TABLE', $table_prefix.'users');
// define('WORDS_TABLE', $table_prefix.'words');
// define('VOTE_DESC_TABLE', $table_prefix.'vote_desc');
// define('VOTE_RESULTS_TABLE', $table_prefix.'vote_results');
// define('VOTE_USERS_TABLE', $table_prefix.'vote_voters');
// End Removing Contants
#
#-----[ Aç ]------------------------------------------
#
includes/page_header.php
#
#-----[ Bul ]------------------------------------------
#
$template->pparse('overall_header');
#
#-----[ Sonrasına ekle ]------------------------------------------
#
if($board_config['ads_disabled'] != 1) {
echo "<div align='center'>" . $board_config['header_ads'] . "</div>";
}
#
#-----[ Aç ]------------------------------------------
#
includes/page_tail.php
#
#-----[ Bul ]------------------------------------------
#
$template->pparse('overall_footer');
#
#-----[ Sonrasına ekle ]------------------------------------------
#
if($board_config['ads_disabled'] != 1) {
echo "<div align='center'>" . $board_config['footer_ads'] . "</div>";
}
#
#-----[ Aç ]------------------------------------------
#
includes/sessions.php
#
#-----[ Bul ]------------------------------------------
#
function append_sid($url, $non_html_amp = false)
{
global $SID;
if ( !empty($SID) && !preg_match('#sid=#', $url) )
{
$url .= ( ( strpos($url, '?') !== false ) ? ( ( $non_html_amp ) ? '&' : '&' ) : '?' ) . $SID;
}
return $url;
}
#
#-----[ Bununla değiştir ]------------------------------------------
#
function append_sid($url, $non_html_amp = false)
{
global $SID, $mforum, $board_config;
if ( !empty($SID) && !preg_match('#sid=#', $url) )
{
$mforum_string = ($board_config['access_type'] == 1) ? "mforum=$mforum&" : "";
$url .= ( ( strpos($url, '?') !== false ) ? ( ( $non_html_amp ) ? '&' : '&' ) : '?' ) . $mforum_string . $SID;
} else if($board_config['access_type'] == 1){
$url .= ( ( strpos($url, '?') !== false ) ? ( ( $non_html_amp ) ? '&' : '&' ) : '?' ) . "mforum=$mforum";
}
return $url;
}
#
#-----[ Aç ]------------------------------------------
#
admin/admin_board.php
#
#-----[ Bul ]------------------------------------------
#
"SERVER_NAME" => $new['server_name'],
"SCRIPT_PATH" => $new['script_path'],
"SERVER_PORT" => $new['server_port'],
#
#-----[ Bununla değiştir ]------------------------------------------
#
"SERVER_NAME" => $new['server_name'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
"SCRIPT_PATH" => $new['script_path'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
"SERVER_PORT" => $new['server_port'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
#
#-----[ Bul ]------------------------------------------
#
"COOKIE_DOMAIN" => $new['cookie_domain'],
"COOKIE_NAME" => $new['cookie_name'],
"COOKIE_PATH" => $new['cookie_path'],
"SESSION_LENGTH" => $new['session_length'],
"S_COOKIE_SECURE_ENABLED" => $cookie_secure_yes,
"S_COOKIE_SECURE_DISABLED" => $cookie_secure_no,
"GZIP_YES" => $gzip_yes,
"GZIP_NO" => $gzip_no,
#
#-----[ Bununla değiştir ]------------------------------------------
#
"COOKIE_DOMAIN" => $new['cookie_domain'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
"COOKIE_NAME" => $new['cookie_name'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
"COOKIE_PATH" => $new['cookie_path'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
"SESSION_LENGTH" => $new['session_length'],
"S_COOKIE_SECURE_ENABLED" => $cookie_secure_yes . " disabled=\"disabled\"",
"S_COOKIE_SECURE_DISABLED" => $cookie_secure_no . " disabled=\"disabled\"",
"GZIP_YES" => $gzip_yes. "\" disabled=\"disabled\"",
"GZIP_NO" => $gzip_no. "\" disabled=\"disabled\"",
#
#-----[ Bul ]------------------------------------------
#
"AVATAR_FILESIZE" => $new['avatar_filesize'],
"AVATAR_MAX_HEIGHT" => $new['avatar_max_height'],
"AVATAR_MAX_WIDTH" => $new['avatar_max_width'],
"AVATAR_PATH" => $new['avatar_path'],
"AVATAR_GALLERY_PATH" => $new['avatar_gallery_path'],
"SMILIES_PATH" => $new['smilies_path'],
#
#-----[ Bununla Değiştir ]------------------------------------------
#
"AVATAR_FILESIZE" => $new['avatar_filesize'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
"AVATAR_MAX_HEIGHT" => $new['avatar_max_height'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
"AVATAR_MAX_WIDTH" => $new['avatar_max_width'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
"AVATAR_PATH" => $new['avatar_path'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
"AVATAR_GALLERY_PATH" => $new['avatar_gallery_path'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
"SMILIES_PATH" => $new['smilies_path'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
#
#-----[ Bul ]------------------------------------------
#
"SMTP_YES" => $smtp_yes,
"SMTP_NO" => $smtp_no,
"SMTP_HOST" => $new['smtp_host'],
"SMTP_USERNAME" => $new['smtp_username'],
"SMTP_PASSWORD" => $new['smtp_password'],
#
#-----[ Bununla Değiştir ]------------------------------------------
#
"SMTP_YES" => $smtp_yes . "\" disabled=\"disabled\"",
"SMTP_NO" => $smtp_no . "\" disabled=\"disabled\"",
"SMTP_HOST" => $new['smtp_host'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
"SMTP_USERNAME" => $new['smtp_username'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
"SMTP_PASSWORD" => $new['smtp_password'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
#
#-----[ Kaydet
]------------------------------------------
#
# Demo site http://www.my.hayalolsam.org - http://www.my.hayalolsam.org/forum
##############################################################
#
#-----[ Kopyala ]------------------------------------------
#
copy install.php to install.php
copy multiforums/*.php to multiforums/*.php
copy multiforums/admin/index.php to multiforums/admin/index.php
copy multiforums/admin/includes/*.php to multiforums/admin/includes/*.php
#
#-----[ Uyarılar]------------------------------------------
#
config.php chmod ayarını 777 yapın
install.php yi çalıştırın
phpBB to 2.0.19 içindir...
#
#-----[ Aç ]------------------------------------------
#
common.php
#
#-----[ Bul ]------------------------------------------
#
// We do not need this any longer, unset for safety purposes
unset($dbpasswd);
#
#-----[ Sonrasına ekle ]------------------------------------------
#
//
// Take the info from multiforums_settings
//
$sql = "SELECT *
FROM multiforums_settings";
if( !($result = $db->sql_query($sql)) )
{
message_die(CRITICAL_ERROR, "Could not query multiforums information", "", __LINE__, __FILE__, $msql);
}
while ( $row = $db->sql_fetchrow($result) )
{
$board_config[$row['config_name']] = $row['config_value'];
}
if(isset($HTTP_GET_VARS['mforum']) && !empty($HTTP_GET_VARS['mforum'])) {
if($board_config['access_type'] == 1) {
setcookie("multiforumname", $HTTP_GET_VARS['mforum'], time()+31536000);
}
$mforum = $HTTP_GET_VARS['mforum'];
} else if(isset($HTTP_COOKIE_VARS['multiforumname']) && !empty($HTTP_COOKIE_VARS['multiforumname']) && $board_config['access_type'] == 1) {
$mforum = $HTTP_COOKIE_VARS['multiforumname'];
}
if(empty($mforum)) {
header("Location: http://" . $board_config['server_name'] . $board_config['script_path'] . "main.php");
exit();
}
$query = $db->sql_query("SELECT * FROM `multiforums_forums` WHERE `access_name` = '$mforum' LIMIT 1") or die(mysql_error());
if(!$result = $db->sql_fetchrow($query)) {
header("Location: http://" . $board_config['server_name'] . $board_config['script_path'] . "multiforums/new_forum.php?access_name=$mforum");
exit();
} else {
$forum_config = $result;
}
$table_prefix = $result['access_name'] . "_";
include($phpbb_root_path . 'includes/db_constants.'.$phpEx);
//
// END MF CODE
//
#
#-----[ Bul ]------------------------------------------
#
$sql = "SELECT *
FROM " . CONFIG_TABLE;
if( !($result = $db->sql_query($sql)) )
{
message_die(CRITICAL_ERROR, "Could not query config information", "", __LINE__, __FILE__, $sql);
}
while ( $row = $db->sql_fetchrow($result) )
{
$board_config[$row['config_name']] = $row['config_value'];
}
#
#-----[ Bununla Değiştir ]------------------------------------------
#
$sql = "SELECT *
FROM " . CONFIG_TABLE;
if( !($result = $db->sql_query($sql)) )
{
message_die(CRITICAL_ERROR, "Could not query config information", "", __LINE__, __FILE__, $sql);
}
while ( $row = $db->sql_fetchrow($result) )
{
if(!isset($board_config[$row['config_name']])) {
$board_config[$row['config_name']] = $row['config_value'];
}
}
#
#-----[ Bul ]------------------------------------------
#
if (file_exists('install') || file_exists('contrib'))
{
message_die(GENERAL_MESSAGE, 'Please_remove_install_contrib');
}
#
#-----[ sonrasına ekle ]------------------------------------------
#
// Multi-Forums V. 1.1.0 Fix - Forgot to add it in the install file.

if($forum_config['suspended'] == true) {
message_die(GENERAL_MESSAGE, "Sorry this forum is currently suspended.<br />Please contact an admin with this error if you think it is a mistake.");
}
#
#-----[ aç ]------------------------------------------
#
includes/constants.php
#
#-----[ bul ]------------------------------------------
#
// Table names
define('CONFIRM_TABLE', $table_prefix.'confirm');
define('AUTH_ACCESS_TABLE', $table_prefix.'auth_access');
define('BANLIST_TABLE', $table_prefix.'banlist');
define('CATEGORIES_TABLE', $table_prefix.'categories');
define('CONFIG_TABLE', $table_prefix.'config');
define('DISALLOW_TABLE', $table_prefix.'disallow');
define('FORUMS_TABLE', $table_prefix.'forums');
define('GROUPS_TABLE', $table_prefix.'groups');
define('POSTS_TABLE', $table_prefix.'posts');
define('POSTS_TEXT_TABLE', $table_prefix.'posts_text');
define('PRIVMSGS_TABLE', $table_prefix.'privmsgs');
define('PRIVMSGS_TEXT_TABLE', $table_prefix.'privmsgs_text');
define('PRIVMSGS_IGNORE_TABLE', $table_prefix.'privmsgs_ignore');
define('PRUNE_TABLE', $table_prefix.'forum_prune');
define('RANKS_TABLE', $table_prefix.'ranks');
define('SEARCH_TABLE', $table_prefix.'search_results');
define('SEARCH_WORD_TABLE', $table_prefix.'search_wordlist');
define('SEARCH_MATCH_TABLE', $table_prefix.'search_wordmatch');
define('SESSIONS_TABLE', $table_prefix.'sessions');
define('SESSIONS_KEYS_TABLE', $table_prefix.'sessions_keys');
define('SMILIES_TABLE', $table_prefix.'smilies');
define('THEMES_TABLE', $table_prefix.'themes');
define('THEMES_NAME_TABLE', $table_prefix.'themes_name');
define('TOPICS_TABLE', $table_prefix.'topics');
define('TOPICS_WATCH_TABLE', $table_prefix.'topics_watch');
define('USER_GROUP_TABLE', $table_prefix.'user_group');
define('USERS_TABLE', $table_prefix.'users');
define('WORDS_TABLE', $table_prefix.'words');
define('VOTE_DESC_TABLE', $table_prefix.'vote_desc');
define('VOTE_RESULTS_TABLE', $table_prefix.'vote_results');
define('VOTE_USERS_TABLE', $table_prefix.'vote_voters');
#
#-----[ Bununla değiştir ]------------------------------------------
#
# NOTE: If you have more "defines" than the dufault put them in db_constants.php
// Remove Constants
// Table names
// define('CONFIRM_TABLE', $table_prefix.'confirm');
// define('AUTH_ACCESS_TABLE', $table_prefix.'auth_access');
// define('BANLIST_TABLE', $table_prefix.'banlist');
// define('CATEGORIES_TABLE', $table_prefix.'categories');
// define('CONFIG_TABLE', $table_prefix.'config');
// define('DISALLOW_TABLE', $table_prefix.'disallow');
// define('FORUMS_TABLE', $table_prefix.'forums');
// define('GROUPS_TABLE', $table_prefix.'groups');
// define('POSTS_TABLE', $table_prefix.'posts');
// define('POSTS_TEXT_TABLE', $table_prefix.'posts_text');
// define('PRIVMSGS_TABLE', $table_prefix.'privmsgs');
// define('PRIVMSGS_TEXT_TABLE', $table_prefix.'privmsgs_text');
// define('PRIVMSGS_IGNORE_TABLE', $table_prefix.'privmsgs_ignore');
// define('PRUNE_TABLE', $table_prefix.'forum_prune');
// define('RANKS_TABLE', $table_prefix.'ranks');
// define('SEARCH_TABLE', $table_prefix.'search_results');
// define('SEARCH_WORD_TABLE', $table_prefix.'search_wordlist');
// define('SEARCH_MATCH_TABLE', $table_prefix.'search_wordmatch');
// define('SESSIONS_TABLE', $table_prefix.'sessions');
// define('SESSIONS_KEYS_TABLE', $table_prefix.'sessions_keys');
// define('SMILIES_TABLE', $table_prefix.'smilies');
// define('THEMES_TABLE', $table_prefix.'themes');
// define('THEMES_NAME_TABLE', $table_prefix.'themes_name');
// define('TOPICS_TABLE', $table_prefix.'topics');
// define('TOPICS_WATCH_TABLE', $table_prefix.'topics_watch');
// define('USER_GROUP_TABLE', $table_prefix.'user_group');
// define('USERS_TABLE', $table_prefix.'users');
// define('WORDS_TABLE', $table_prefix.'words');
// define('VOTE_DESC_TABLE', $table_prefix.'vote_desc');
// define('VOTE_RESULTS_TABLE', $table_prefix.'vote_results');
// define('VOTE_USERS_TABLE', $table_prefix.'vote_voters');
// End Removing Contants
#
#-----[ Aç ]------------------------------------------
#
includes/page_header.php
#
#-----[ Bul ]------------------------------------------
#
$template->pparse('overall_header');
#
#-----[ Sonrasına ekle ]------------------------------------------
#
if($board_config['ads_disabled'] != 1) {
echo "<div align='center'>" . $board_config['header_ads'] . "</div>";
}
#
#-----[ Aç ]------------------------------------------
#
includes/page_tail.php
#
#-----[ Bul ]------------------------------------------
#
$template->pparse('overall_footer');
#
#-----[ Sonrasına ekle ]------------------------------------------
#
if($board_config['ads_disabled'] != 1) {
echo "<div align='center'>" . $board_config['footer_ads'] . "</div>";
}
#
#-----[ Aç ]------------------------------------------
#
includes/sessions.php
#
#-----[ Bul ]------------------------------------------
#
function append_sid($url, $non_html_amp = false)
{
global $SID;
if ( !empty($SID) && !preg_match('#sid=#', $url) )
{
$url .= ( ( strpos($url, '?') !== false ) ? ( ( $non_html_amp ) ? '&' : '&' ) : '?' ) . $SID;
}
return $url;
}
#
#-----[ Bununla değiştir ]------------------------------------------
#
function append_sid($url, $non_html_amp = false)
{
global $SID, $mforum, $board_config;
if ( !empty($SID) && !preg_match('#sid=#', $url) )
{
$mforum_string = ($board_config['access_type'] == 1) ? "mforum=$mforum&" : "";
$url .= ( ( strpos($url, '?') !== false ) ? ( ( $non_html_amp ) ? '&' : '&' ) : '?' ) . $mforum_string . $SID;
} else if($board_config['access_type'] == 1){
$url .= ( ( strpos($url, '?') !== false ) ? ( ( $non_html_amp ) ? '&' : '&' ) : '?' ) . "mforum=$mforum";
}
return $url;
}
#
#-----[ Aç ]------------------------------------------
#
admin/admin_board.php
#
#-----[ Bul ]------------------------------------------
#
"SERVER_NAME" => $new['server_name'],
"SCRIPT_PATH" => $new['script_path'],
"SERVER_PORT" => $new['server_port'],
#
#-----[ Bununla değiştir ]------------------------------------------
#
"SERVER_NAME" => $new['server_name'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
"SCRIPT_PATH" => $new['script_path'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
"SERVER_PORT" => $new['server_port'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
#
#-----[ Bul ]------------------------------------------
#
"COOKIE_DOMAIN" => $new['cookie_domain'],
"COOKIE_NAME" => $new['cookie_name'],
"COOKIE_PATH" => $new['cookie_path'],
"SESSION_LENGTH" => $new['session_length'],
"S_COOKIE_SECURE_ENABLED" => $cookie_secure_yes,
"S_COOKIE_SECURE_DISABLED" => $cookie_secure_no,
"GZIP_YES" => $gzip_yes,
"GZIP_NO" => $gzip_no,
#
#-----[ Bununla değiştir ]------------------------------------------
#
"COOKIE_DOMAIN" => $new['cookie_domain'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
"COOKIE_NAME" => $new['cookie_name'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
"COOKIE_PATH" => $new['cookie_path'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
"SESSION_LENGTH" => $new['session_length'],
"S_COOKIE_SECURE_ENABLED" => $cookie_secure_yes . " disabled=\"disabled\"",
"S_COOKIE_SECURE_DISABLED" => $cookie_secure_no . " disabled=\"disabled\"",
"GZIP_YES" => $gzip_yes. "\" disabled=\"disabled\"",
"GZIP_NO" => $gzip_no. "\" disabled=\"disabled\"",
#
#-----[ Bul ]------------------------------------------
#
"AVATAR_FILESIZE" => $new['avatar_filesize'],
"AVATAR_MAX_HEIGHT" => $new['avatar_max_height'],
"AVATAR_MAX_WIDTH" => $new['avatar_max_width'],
"AVATAR_PATH" => $new['avatar_path'],
"AVATAR_GALLERY_PATH" => $new['avatar_gallery_path'],
"SMILIES_PATH" => $new['smilies_path'],
#
#-----[ Bununla Değiştir ]------------------------------------------
#
"AVATAR_FILESIZE" => $new['avatar_filesize'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
"AVATAR_MAX_HEIGHT" => $new['avatar_max_height'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
"AVATAR_MAX_WIDTH" => $new['avatar_max_width'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
"AVATAR_PATH" => $new['avatar_path'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
"AVATAR_GALLERY_PATH" => $new['avatar_gallery_path'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
"SMILIES_PATH" => $new['smilies_path'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
#
#-----[ Bul ]------------------------------------------
#
"SMTP_YES" => $smtp_yes,
"SMTP_NO" => $smtp_no,
"SMTP_HOST" => $new['smtp_host'],
"SMTP_USERNAME" => $new['smtp_username'],
"SMTP_PASSWORD" => $new['smtp_password'],
#
#-----[ Bununla Değiştir ]------------------------------------------
#
"SMTP_YES" => $smtp_yes . "\" disabled=\"disabled\"",
"SMTP_NO" => $smtp_no . "\" disabled=\"disabled\"",
"SMTP_HOST" => $new['smtp_host'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
"SMTP_USERNAME" => $new['smtp_username'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
"SMTP_PASSWORD" => $new['smtp_password'] . "\" readonly=\"readonly\" style=\"background:transparent;border-width:0px;",
#
#-----[ Kaydet

#
# Demo site http://www.my.hayalolsam.org - http://www.my.hayalolsam.org/forum
http://www.hayalolsam.org
Paylaşım,Müzik,Eğlence,Web Tasarım,Php-Asp Sistemleri,Oyun
Paylaşım,Müzik,Eğlence,Web Tasarım,Php-Asp Sistemleri,Oyun
-
- Kayıtlı Kullanıcı
- Mesajlar: 11
- Kayıt: 06.04.2007, 14:23
- İletişim:
Re: MultiForums Lite V.1.0 ( Kendi Forumunuzu Olusturun)
arkadaşlar sistemi kurdum gayet güzel çalışıyor yalnız forum açılmıyor arkadaşın dediğin gibi
sedece üyelerin newforum.php den kurdukları site çalışacak galiba.
Kuran varsa biraz daha detay verirse sevinirim...
Gelişmeleri buradan bildiririm
iyi forumlar...
sedece üyelerin newforum.php den kurdukları site çalışacak galiba.
Kuran varsa biraz daha detay verirse sevinirim...
Gelişmeleri buradan bildiririm
iyi forumlar...
http://www.hayalolsam.org
Paylaşım,Müzik,Eğlence,Web Tasarım,Php-Asp Sistemleri,Oyun
Paylaşım,Müzik,Eğlence,Web Tasarım,Php-Asp Sistemleri,Oyun
Kimler çevrimiçi
Bu forumu görüntüleyen kullanıcılar: Hiç bir kayıtlı kullanıcı yok ve 1 misafir