Album v2.0.53 modda db install calısmıyor

phpBB 2.0.x sürümleri için MODlar hakkında ihtiyacınız olan desteği buradan sorarak alabilirsiniz.
Kullanıcı avatarı
Duman6
Kayıtlı Kullanıcı
Mesajlar: 83
Kayıt: 22.02.2006, 14:26
Konum: Denizli
İletişim:

Album v2.0.53 modda db install calısmıyor

Mesaj gönderen Duman6 »

tüm düzenlemeleri yaptım , roota klasörleri attım. album_db_install.php yide attım ancak çalıştırınca ;

phpBB : Critical Error

Could not connect to the database

hatası çıkıyor.

ne yapmam lazım ? ingilizcem gayet zayıftır. install.txt den anlayamadım :)

galeriye girmek istediğimde de haliylen ;

Could not query Album config information

DEBUG MODE

SQL Error : 1146 Table 'gokhan.ALBUM_CONFIG_TABLE' doesn't exist

SELECT * FROM ALBUM_CONFIG_TABLE

Line : 49
File : album_common.php


hatası alıorum.
Başka sevdalara [kapaLı]yız - Başka Denizlispor yok!
Kullanıcı avatarı
NEFRİT
Uzaklaştırıldı
Mesajlar: 1404
Kayıt: 28.01.2006, 04:15
Konum: DarkKingdom
İletişim:

tamam

Mesaj gönderen NEFRİT »

Tamam şayet install.php de sorun varsa o zaman bu SQL sorgusunu çalıştırınız ;

Kod: Tümünü seç



CREATE TABLE phpbb_album (
	pic_id int(11) UNSIGNED NOT NULL auto_increment,
	pic_filename varchar(255) NOT NULL,
	pic_thumbnail varchar(255),
	pic_title varchar(255) NOT NULL,
	pic_desc text,
	pic_user_id mediumint(8) NOT NULL,
	pic_username varchar(32),
	pic_user_ip char(8) NOT NULL DEFAULT '0',
	pic_time int(11) UNSIGNED NOT NULL,
	pic_cat_id mediumint(8) UNSIGNED NOT NULL DEFAULT '1',
	pic_view_count int(11) UNSIGNED NOT NULL DEFAULT '0',
	pic_lock tinyint(3) NOT NULL DEFAULT '0',
	pic_approval tinyint(3) NOT NULL DEFAULT '1',
	PRIMARY KEY (pic_id),
	KEY pic_cat_id (pic_cat_id),
	KEY pic_user_id (pic_user_id),
	KEY pic_time (pic_time));

CREATE TABLE phpbb_album_rate (
	rate_pic_id int(11) UNSIGNED NOT NULL,
	rate_user_id mediumint(8) NOT NULL,
	rate_user_ip char(8) NOT NULL,
	rate_point tinyint(3) UNSIGNED NOT NULL,
	KEY rate_pic_id (rate_pic_id),
	KEY rate_user_id (rate_user_id),
	KEY rate_user_ip (rate_user_ip),
	KEY rate_point (rate_point));

CREATE TABLE phpbb_album_comment (
	comment_id int(11) UNSIGNED NOT NULL auto_increment,
	comment_pic_id int(11) UNSIGNED NOT NULL,
	comment_user_id mediumint(8) NOT NULL,
	comment_username varchar(32),
	comment_user_ip char(8) NOT NULL,
	comment_time int(11) UNSIGNED NOT NULL,
	comment_text TEXT,
	comment_edit_time int(11) UNSIGNED,
	comment_edit_count smallint(5) UNSIGNED NOT NULL DEFAULT '0',
	comment_edit_user_id mediumint(8),
	PRIMARY KEY(comment_id),
	KEY comment_pic_id (comment_pic_id),
	KEY comment_user_id (comment_user_id),
	KEY comment_user_ip (comment_user_ip),
	KEY comment_time (comment_time));

CREATE TABLE phpbb_album_cat (
	cat_id mediumint(8) UNSIGNED NOT NULL auto_increment,
	cat_title varchar(255) NOT NULL,
	cat_desc text,
	cat_order mediumint(8) NOT NULL,
	cat_view_level tinyint(3) NOT NULL DEFAULT '-1',
	cat_upload_level tinyint(3) NOT NULL DEFAULT '0',
	cat_rate_level tinyint(3) NOT NULL DEFAULT '0',
	cat_comment_level tinyint(3) NOT NULL DEFAULT '0',
	cat_edit_level tinyint(3) NOT NULL DEFAULT '0',
	cat_delete_level tinyint(3) NOT NULL DEFAULT '2',
	cat_view_groups varchar(255),
	cat_upload_groups varchar(255),
	cat_rate_groups varchar(255),
	cat_comment_groups varchar(255),
	cat_edit_groups varchar(255),
	cat_delete_groups varchar(255),
	cat_moderator_groups varchar(255),
	cat_approval tinyint(3) NOT NULL DEFAULT '0',
	PRIMARY KEY (cat_id),
	KEY cat_order (cat_order));

CREATE TABLE phpbb_album_config (
	config_name varchar(255) NOT NULL,
	config_value varchar(255) NOT NULL,
	PRIMARY KEY (config_name));

INSERT INTO phpbb_album_config VALUES ('max_pics', '1024');
INSERT INTO phpbb_album_config VALUES ('user_pics_limit', '50');
INSERT INTO phpbb_album_config VALUES ('mod_pics_limit', '250');
INSERT INTO phpbb_album_config VALUES ('max_file_size', '128000');
INSERT INTO phpbb_album_config VALUES ('max_width', '800');
INSERT INTO phpbb_album_config VALUES ('max_height', '600');
INSERT INTO phpbb_album_config VALUES ('rows_per_page', '3');
INSERT INTO phpbb_album_config VALUES ('cols_per_page', '4');
INSERT INTO phpbb_album_config VALUES ('fullpic_popup', '1');
INSERT INTO phpbb_album_config VALUES ('thumbnail_quality', '50');
INSERT INTO phpbb_album_config VALUES ('thumbnail_size', '125');
INSERT INTO phpbb_album_config VALUES ('thumbnail_cache', '1');
INSERT INTO phpbb_album_config VALUES ('sort_method', 'pic_time');
INSERT INTO phpbb_album_config VALUES ('sort_order', 'DESC');
INSERT INTO phpbb_album_config VALUES ('jpg_allowed', '1');
INSERT INTO phpbb_album_config VALUES ('png_allowed', '1');
INSERT INTO phpbb_album_config VALUES ('gif_allowed', '0');
INSERT INTO phpbb_album_config VALUES ('desc_length', '512');
INSERT INTO phpbb_album_config VALUES ('hotlink_prevent', '0');
INSERT INTO phpbb_album_config VALUES ('hotlink_allowed', 'smartor.is-root.com');
INSERT INTO phpbb_album_config VALUES ('personal_gallery', '0');
INSERT INTO phpbb_album_config VALUES ('personal_gallery_private', '0');
INSERT INTO phpbb_album_config VALUES ('personal_gallery_limit', '10');
INSERT INTO phpbb_album_config VALUES ('personal_gallery_view', '-1');
INSERT INTO phpbb_album_config VALUES ('rate', '1');
INSERT INTO phpbb_album_config VALUES ('rate_scale', '10');
INSERT INTO phpbb_album_config VALUES ('comment', '1');
INSERT INTO phpbb_album_config VALUES ('gd_version', '1');
INSERT INTO phpbb_album_config VALUES ('album_version', '.0.53');
Özellerden kullanıcılara reklam yaptığım için sayın yöneticim beni uzaklaştırdı.
Kullanıcı avatarı
Duman6
Kayıtlı Kullanıcı
Mesajlar: 83
Kayıt: 22.02.2006, 14:26
Konum: Denizli
İletişim:

Mesaj gönderen Duman6 »

dediğinizi yaptım.

''Your SQL query has been executed successfully'' sanırım sorunsuz çalıştırıldı.

ancak hala ;

Could not query Album config information

DEBUG MODE

SQL Error : 1146 Table 'gokhan.ALBUM_CONFIG_TABLE' doesn't exist

SELECT * FROM ALBUM_CONFIG_TABLE

Line : 49
File : album_common.php

hatayı alıyorum :(
Başka sevdalara [kapaLı]yız - Başka Denizlispor yok!
YESILEJDER
Kayıtlı Kullanıcı
Mesajlar: 411
Kayıt: 17.02.2006, 22:10
İletişim:

Mesaj gönderen YESILEJDER »

Dosyalarınız Tam Degil Mi ? Hepsini yerli yerine attınız mı ?
DİKKAT!

Sitene Aquamp Medya Player Kurmak Istıyorsan TIKLA
Kullanıcı avatarı
Duman6
Kayıtlı Kullanıcı
Mesajlar: 83
Kayıt: 22.02.2006, 14:26
Konum: Denizli
İletişim:

Mesaj gönderen Duman6 »

YESILEJDER yazdı:Dosyalarınız Tam Degil Mi ? Hepsini yerli yerine attınız mı ?
hepsini attım host'a , yerleride doğru. hatta siz söyleyince acaba dedim ve bir kez daha attım. ama sorunum çözülmedi hala.
Başka sevdalara [kapaLı]yız - Başka Denizlispor yok!
YESILEJDER
Kayıtlı Kullanıcı
Mesajlar: 411
Kayıt: 17.02.2006, 22:10
İletişim:

Mesaj gönderen YESILEJDER »

İnstall edilmemiş yani tablolar yok ondan installı calıstırıp tabloları olusturmanız lazım.
DİKKAT!

Sitene Aquamp Medya Player Kurmak Istıyorsan TIKLA
Kullanıcı avatarı
Duman6
Kayıtlı Kullanıcı
Mesajlar: 83
Kayıt: 22.02.2006, 14:26
Konum: Denizli
İletişim:

Mesaj gönderen Duman6 »

YESILEJDER yazdı:İnstall edilmemiş yani tablolar yok ondan installı calıstırıp tabloları olusturmanız lazım.
ilk mesajımı okumadın sanırım album_db_install.php calısmıyor hostumda olmasına rağmen. sql leri elle çalıştırdım NEFRİT 'in önerisi üzerine yine aynı hatayı aldım. hala da denemedeyim.
Başka sevdalara [kapaLı]yız - Başka Denizlispor yok!
Kullanıcı avatarı
Duman6
Kayıtlı Kullanıcı
Mesajlar: 83
Kayıt: 22.02.2006, 14:26
Konum: Denizli
İletişim:

Mesaj gönderen Duman6 »

-yanlıs yer özür dilerim-
Başka sevdalara [kapaLı]yız - Başka Denizlispor yok!
Kullanıcı avatarı
NEFRİT
Uzaklaştırıldı
Mesajlar: 1404
Kayıt: 28.01.2006, 04:15
Konum: DarkKingdom
İletişim:

Yanlış yer değil

Mesaj gönderen NEFRİT »

Yanlış yer değil hiç merak etmeyin bakın SQL u yüklediğinize göre bir daha kurulumu gözden geçirseniz çok iyi olacak hatta bakın size son versiyonun 2.0.53 ün kurulumunu veriyim belki elinizdekinde hata olabilir (herşeyi denemek gerekir)

Kod: Tümünü seç


#
#-----[ OPEN ]-------------------------------------------------------
#
includes/constants.php

#
#-----[ FIND ]----------------------------------------
#
if ( !defined('IN_PHPBB') )
{
	die("Hacking attempt");
}


#
#-----[ AFTER, ADD ]----------------------------------
# Don't worried! This file is very *lite*
// Album MOD
include($phpbb_root_path . 'album_mod/album_constants.' . $phpEx);


#
#-----[ OPEN ]-------------------------------------------------------
#
includes/page_header.php

#
#-----[ FIND ]----------------------------------------
#
	'U_GROUP_CP' => append_sid('groupcp.'.$phpEx),

#
#-----[ AFTER, ADD ]----------------------------------
#
	// Album MOD
	'L_ALBUM' => $lang['Album'],
	'U_ALBUM' => append_sid('album.'.$phpEx),


#
#-----[ OPEN ]-------------------------------------------------------
#
viewonline.php

#
#-----[ FIND ]----------------------------------------
#
				case PAGE_FAQ:
					$location = $lang['Viewing_FAQ'];
					$location_url = "faq.$phpEx";
					break;

#
#-----[ AFTER, ADD ]----------------------------------
#
				case PAGE_ALBUM:
					$location = $lang['Album'];
					$location_url = "album.$phpEx";
					break;


#
#-----[ OPEN ]-------------------------------------------------------
#
admin/index.php

#
#-----[ FIND ]----------------------------------------
#
						case PAGE_FAQ:
							$location = $lang['Viewing_FAQ'];
							$location_url = "index.$phpEx?pane=right";
							break;

#
#-----[ AFTER, ADD ]----------------------------------
#
						case PAGE_ALBUM:
							$location = $lang['Album'];
							$location_url = "index.$phpEx?pane=right";
							break;


#
#-----[ OPEN ]-------------------------------------------------------
# also for other templates
templates/subSilver/overall_header.tpl

#
#-----[ FIND ]----------------------------------------
#
<td align="center" width="100%" valign="middle"><span class="maintitle">{SITENAME}</span><br /><span class="gen">{SITE_DESCRIPTION}<br />&nbsp; </span>
				<table cellspacing="0" cellpadding="2" border="0">
					<tr>
						<td align="center" valign="top" nowrap="nowrap"><span class="mainmenu">

#
#-----[ AFTER, ADD ]----------------------------------
# this step will add a link into your header menu

<a href="{U_ALBUM}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_album.gif" width="12" height="13" border="0" alt="{L_ALBUM}" hspace="3" />{L_ALBUM}</a>&nbsp;



#
#-----[ OPEN ]-------------------------------------------------------
# also for other templates
templates/subSilver/subSilver.cfg

#
#-----[ FIND ]----------------------------------------
#
?>

#
#-----[ BEFORE, ADD ]---------------------------------
#
// Album MOD
$images['upload_pic'] = "$current_template_images/{LANG}/upload_pic.gif";
$images['no_thumbnail'] = "$current_template_images/nothumbnail.jpg";


#
#-----[ OPEN ]-------------------------------------------------------
#
includes/usercp_viewprofile.php

#
#-----[ FIND ]----------------------------------------
#
	'U_SEARCH_USER' => append_sid("search.$phpEx?search_author=" . urlencode($profiledata['username'])),

#
#-----[ AFTER, ADD ]----------------------------------
#
	// Photo Album Addon v2.x.x by Smartor
	'U_PERSONAL_GALLERY' => append_sid("album_personal.$phpEx?user_id=" . $profiledata['user_id']),
	'L_PERSONAL_GALLERY' => sprintf($lang['Personal_Gallery_Of_User'], $profiledata['username']),


#
#-----[ OPEN ]-------------------------------------------------------
# also for all other templates
templates/subSilver/profile_view_body.tpl

#
#-----[ FIND ]----------------------------------------
#
<a href="{U_SEARCH_USER}" class="genmed">{L_SEARCH_USER_POSTS}</a>

#
#-----[ IN-LINE AFTER, ADD ]--------------------------
#
<br /><a href="{U_PERSONAL_GALLERY}" class="genmed">{L_PERSONAL_GALLERY}</a>


#
#-----[ OPEN ]-------------------------------------------------------
# also for all other language packs
language/lang_english/lang_main.php

#
#-----[ FIND ]----------------------------------------
#
//
// Errors (not related to a
// specific failure on a page)
//
$lang['Information'] = 'Information';
$lang['Critical_Information'] = 'Critical Information';

#
#-----[ BEFORE, ADD ]---------------------------------
#
//
// Photo Album Addon v2.x.x by Smartor
//
$lang['Album'] = 'Album';
$lang['Personal_Gallery_Of_User'] = 'Personal Gallery of %s';


#
#-----[ COPY ]-------------------------------------------------------
# These following instructions mean...
# Upload all files in directory "phpbb_root" with their structure to your phpBB root directory
#
# Remember to upload all the language files and template files to all your
# language packs and template directories
#
# If you use FTP please remember to use ASCII mode for text files (*.php, *.tpl)
# and BINARY mode for image files (*.jpg, *.gif)
# Fortunately good FTP clients today can auto-detect the mode for your files

copy phpbb_root/*.php to *.php
copy phpbb_root/admin/*.php to admin/
copy phpbb_root/album_mod/*.* to album_mod/
copy phpbb_root/language/lang_english/*.php to language/lang_english/
copy phpbb_root/templates/subSilver/*.* to templates/subSilver/
copy phpbb_root/templates/subSilver/admin/*.* to templates/subSilver/admin/
copy phpbb_root/templates/subSilver/images/*.* to templates/subSilver/images/
copy phpbb_root/templates/subSilver/images/lang_english/*.* to templates/subSilver/images/lang_english/


#
#-----[ ACTION ]--------------------------------------
# Create folder: album_mod/upload
# Create folder: album_mod/upload/cache


#
#-----[ ACTION ]--------------------------------------
# Require for Unix-like host (you can use your FTP client to do this)
#
# CHMOD 777 album_mod/upload
# CHMOD 777 album_mod/upload/cache


#
#-----[ SQL ]--------------------------------------------------------
# For FRESH Install Only!!! If you *upgrade* from Album v1.x.x you
# must *skip* this step to go to the *next* step!
#
# This Photo Album must add 5 tables into your database.
# Fortunately it will not alter any existed tables :)
#
# Upload album_db_install.php and album_mysql.sql to your phpBB root
# directory then run album_db_install.php by typing on the browser
# After that, delete both files immediately
#
# If you do not want to run album_db_install.php you can run the SQL
# queries manually in album_mysql.sql
#
##########


#
# If you are using phpBB older-than204 you should read file patch_phpBB_older-than-204.txt
#
# If you are using phpBB 2.0.4 you should read file patch_phpBB_204.txt
#


# After install, you should check your AdminCP
#
# If you have any problems try to look at FAQ.TXT first!
#
# Keep all files in this archive at a safe place in your hard disk. You
# maybe will need it again if you want to upgrade in future :)
# Normally, you can download the lastest version only from my site. So
# if you lost these files, you would not look back again.


#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
Özellerden kullanıcılara reklam yaptığım için sayın yöneticim beni uzaklaştırdı.
Kullanıcı avatarı
Duman6
Kayıtlı Kullanıcı
Mesajlar: 83
Kayıt: 22.02.2006, 14:26
Konum: Denizli
İletişim:

Mesaj gönderen Duman6 »

bendeki ile aynı bende 2.0.53 kurdum. aksam tüm dosyaları hosttan geri alıp yeniden deniyeceğim. bakalım belki hata yaptığım bir yervardır diyeceğim ama o zaman sayfalarda da hata alırdım. var bir uyumsuzluk ama.
Başka sevdalara [kapaLı]yız - Başka Denizlispor yok!
Kullanıcı avatarı
NEFRİT
Uzaklaştırıldı
Mesajlar: 1404
Kayıt: 28.01.2006, 04:15
Konum: DarkKingdom
İletişim:

Mesaj gönderen NEFRİT »

Duman6 yazdı:bendeki ile aynı bende 2.0.53 kurdum. aksam tüm dosyaları hosttan geri alıp yeniden deniyeceğim. bakalım belki hata yaptığım bir yervardır diyeceğim ama o zaman sayfalarda da hata alırdım. var bir uyumsuzluk ama.
Biliyormusunuz aslında bir arkadaşta bunu kurmaya çalışıyordu ve oda aynı hatayı almıştı şimdi bu durum çok dikkatimi çekti açıkçası.
Özellerden kullanıcılara reklam yaptığım için sayın yöneticim beni uzaklaştırdı.
Kullanıcı avatarı
NEFRİT
Uzaklaştırıldı
Mesajlar: 1404
Kayıt: 28.01.2006, 04:15
Konum: DarkKingdom
İletişim:

Hımm

Mesaj gönderen NEFRİT »

Hımm bakın şimdi ALBUM MOD un yazarının sitesinden geliyorum oraya baktım ama bu tür bir sorundan bahsediylmiyor hiç bir sorun yok onlarda hatta versiyonu kontrol ettim hala son versiyon 2.0.53 ve bu versiyon içn bir upgrade güncellemede yok. Albüm mod orjinal download link ; http://smartor.is-root.com/viewtopic.php?t=3021
Özellerden kullanıcılara reklam yaptığım için sayın yöneticim beni uzaklaştırdı.
Kullanıcı avatarı
Duman6
Kayıtlı Kullanıcı
Mesajlar: 83
Kayıt: 22.02.2006, 14:26
Konum: Denizli
İletişim:

Re: Hımm

Mesaj gönderen Duman6 »

NEFRİT yazdı:Hımm bakın şimdi ALBUM MOD un yazarının sitesinden geliyorum oraya baktım ama bu tür bir sorundan bahsediylmiyor hiç bir sorun yok onlarda hatta versiyonu kontrol ettim hala son versiyon 2.0.53 ve bu versiyon içn bir upgrade güncellemede yok. Albüm mod orjinal download link ; http://smartor.is-root.com/viewtopic.php?t=3021
evet bende inceledim , sorundan bahsetmiyorlar(ingilizcemin yettiği kadarı ile ) ama sorunla karsılasan birini bende hatırlıyorum ve çözememişti sanırım. bakalım ne olacak ? biri çıkıp bişey söyler heralde. en kötü ihtimalle birde eski sürüm kurmayı düşünüyorum.
Başka sevdalara [kapaLı]yız - Başka Denizlispor yok!
Kullanıcı avatarı
NEFRİT
Uzaklaştırıldı
Mesajlar: 1404
Kayıt: 28.01.2006, 04:15
Konum: DarkKingdom
İletişim:

Evt

Mesaj gönderen NEFRİT »

Evt bak haklısın ben 2.0.53 den önce sürümü kurmuştum hiç bir sorun vermemişti, gerçi bununda vermemesi lazım ama varkesin bir yerde püf noktası.
Özellerden kullanıcılara reklam yaptığım için sayın yöneticim beni uzaklaştırdı.
Kullanıcı avatarı
nuhsalih
Kayıtlı Kullanıcı
Mesajlar: 108
Kayıt: 28.02.2006, 14:00
İletişim:

Mesaj gönderen nuhsalih »

hocam ben Album modu kurarken aynı sorunlka karşılaştım sende SQL sorgusunu iyi yaparsan hiç bir sorun kalmaz ayrı eger foruma daha önce mod yüklediysen bu modlarla cakışabiliyor

kendi sitemin album sayfası http://www.nuhsalih.net/phpBB/album.php

Kod: Tümünü seç

#
#-----[ SQL ]-------------------------------------------------
#
# You can manually execute "SQL_full_album_pack_1_2_0.txt" instead of run this portion of code
# Or you can execute "full_album_pack_db_install.php" from your browser when you're logged in with admin rights
#
CREATE TABLE `phpbb_album` (
	`pic_id` int(11) unsigned NOT NULL auto_increment,
	`pic_filename` varchar(255) NOT NULL default '',
	`pic_thumbnail` varchar(255) NULL default '',
	`pic_title` varchar(255) NOT NULL default '',
	`pic_desc` text,
	`pic_user_id` mediumint(8) NOT NULL default '0',
	`pic_username` varchar(32) NULL default '',
	`pic_user_ip` varchar(8) NOT NULL default '0',
	`pic_time` int(11) unsigned NOT NULL default '0',
	`pic_cat_id` mediumint(8) unsigned NOT NULL default '1',
	`pic_view_count` int(11) unsigned NOT NULL default '0',
	`pic_lock` tinyint(3) NOT NULL default '0',
	`pic_approval` tinyint(3) NOT NULL default '1',
	PRIMARY KEY  (`pic_id`),
	KEY `pic_cat_id` (`pic_cat_id`),
	KEY `pic_user_id` (`pic_user_id`),
	KEY `pic_time` (`pic_time`)
);

CREATE TABLE `phpbb_album_cat` (
	`cat_id` mediumint(8) unsigned NOT NULL auto_increment,
	`cat_title` varchar(255) NOT NULL default '',
	`cat_desc` text,
	`cat_order` mediumint(8) NOT NULL default '0',
	`cat_view_level` tinyint(3) NOT NULL default '-1',
	`cat_upload_level` tinyint(3) NOT NULL default '0',
	`cat_rate_level` tinyint(3) NOT NULL default '0',
	`cat_comment_level` tinyint(3) NOT NULL default '0',
	`cat_edit_level` tinyint(3) NOT NULL default '0',
	`cat_delete_level` tinyint(3) NOT NULL default '2',
	`cat_view_groups` varchar(255) NULL default '',
	`cat_upload_groups` varchar(255) NULL default '',
	`cat_rate_groups` varchar(255) NULL default '',
	`cat_comment_groups` varchar(255) NULL default '',
	`cat_edit_groups` varchar(255) NULL default '',
	`cat_delete_groups` varchar(255) NULL default '',
	`cat_moderator_groups` varchar(255) NULL default '',
	`cat_approval` tinyint(3) NOT NULL default '0',
	`cat_parent` mediumint(8) unsigned default '0',
	`cat_user_id` mediumint(8) unsigned default '0',
	PRIMARY KEY  (`cat_id`),
	KEY `cat_order` (`cat_order`)
);

CREATE TABLE `phpbb_album_comment` (
	`comment_id` int(11) unsigned NOT NULL auto_increment,
	`comment_pic_id` int(11) unsigned NOT NULL default '0',
	`comment_cat_id` int(11) NOT NULL default '0',
	`comment_user_id` mediumint(8) NOT NULL default '0',
	`comment_username` varchar(32) NULL default '',
	`comment_user_ip` varchar(8) NOT NULL default '',
	`comment_time` int(11) unsigned NOT NULL default '0',
	`comment_text` text,
	`comment_edit_time` int(11) unsigned NULL default '0',
	`comment_edit_count` smallint(5) unsigned NOT NULL default '0',
	`comment_edit_user_id` mediumint(8) NULL default '0',
	PRIMARY KEY  (`comment_id`),
	KEY `comment_pic_id` (`comment_pic_id`),
	KEY `comment_user_id` (`comment_user_id`),
	KEY `comment_user_ip` (`comment_user_ip`),
	KEY `comment_time` (`comment_time`)
);

CREATE TABLE `phpbb_album_config` (
	`config_name` varchar(255) NOT NULL default '',
	`config_value` varchar(255) NOT NULL default '',
	PRIMARY KEY  (`config_name`)
);

CREATE TABLE `phpbb_album_rate` (
	`rate_pic_id` int(11) unsigned NOT NULL default '0',
	`rate_user_id` mediumint(8) NOT NULL default '0',
	`rate_user_ip` char(8) NOT NULL default '',
	`rate_point` tinyint(3) unsigned NOT NULL default '0',
	`rate_hon_point` tinyint(3) NOT NULL default '0',
	KEY `rate_pic_id` (`rate_pic_id`),
	KEY `rate_user_id` (`rate_user_id`),
	KEY `rate_user_ip` (`rate_user_ip`),
	KEY `rate_point` (`rate_point`)
);

INSERT INTO `phpbb_album_config` VALUES ('max_pics', '1024');
INSERT INTO `phpbb_album_config` VALUES ('user_pics_limit', '-1');
INSERT INTO `phpbb_album_config` VALUES ('mod_pics_limit', '-1');
INSERT INTO `phpbb_album_config` VALUES ('max_file_size', '128000');
INSERT INTO `phpbb_album_config` VALUES ('max_width', '1024');
INSERT INTO `phpbb_album_config` VALUES ('max_height', '768');
INSERT INTO `phpbb_album_config` VALUES ('rows_per_page', '5');
INSERT INTO `phpbb_album_config` VALUES ('cols_per_page', '4');
INSERT INTO `phpbb_album_config` VALUES ('fullpic_popup', '0');
INSERT INTO `phpbb_album_config` VALUES ('thumbnail_quality', '75');
INSERT INTO `phpbb_album_config` VALUES ('thumbnail_size', '125');
INSERT INTO `phpbb_album_config` VALUES ('thumbnail_cache', '1');
INSERT INTO `phpbb_album_config` VALUES ('sort_method', 'pic_time');
INSERT INTO `phpbb_album_config` VALUES ('sort_order', 'DESC');
INSERT INTO `phpbb_album_config` VALUES ('jpg_allowed', '1');
INSERT INTO `phpbb_album_config` VALUES ('png_allowed', '1');
INSERT INTO `phpbb_album_config` VALUES ('gif_allowed', '1');
INSERT INTO `phpbb_album_config` VALUES ('desc_length', '512');
INSERT INTO `phpbb_album_config` VALUES ('hotlink_prevent', '0');
INSERT INTO `phpbb_album_config` VALUES ('hotlink_allowed', 'mightygorgon.com');
INSERT INTO `phpbb_album_config` VALUES ('personal_gallery', '0');
INSERT INTO `phpbb_album_config` VALUES ('personal_gallery_private', '0');
INSERT INTO `phpbb_album_config` VALUES ('personal_gallery_limit', '-1');
INSERT INTO `phpbb_album_config` VALUES ('personal_gallery_view', '-1');
INSERT INTO `phpbb_album_config` VALUES ('rate', '1');
INSERT INTO `phpbb_album_config` VALUES ('rate_scale', '10');
INSERT INTO `phpbb_album_config` VALUES ('comment', '1');
INSERT INTO `phpbb_album_config` VALUES ('gd_version', '2');
INSERT INTO `phpbb_album_config` VALUES ('album_version', '.0.53');
INSERT INTO `phpbb_album_config` VALUES ('fap_version', '1.2.1');
INSERT INTO `phpbb_album_config` VALUES ('show_index_thumb', '0');
INSERT INTO `phpbb_album_config` VALUES ('show_index_total_pics', '1');
INSERT INTO `phpbb_album_config` VALUES ('show_index_total_comments', '1');
INSERT INTO `phpbb_album_config` VALUES ('show_index_comments', '0');
INSERT INTO `phpbb_album_config` VALUES ('show_index_last_comment', '1');
INSERT INTO `phpbb_album_config` VALUES ('show_index_last_pic', '1');
INSERT INTO `phpbb_album_config` VALUES ('show_index_pics', '0');
INSERT INTO `phpbb_album_config` VALUES ('show_recent_in_subcats', '1');
INSERT INTO `phpbb_album_config` VALUES ('show_recent_instead_of_nopics', '1');
INSERT INTO `phpbb_album_config` VALUES ('line_break_subcats', '1');
INSERT INTO `phpbb_album_config` VALUES ('show_index_subcats', '1');
INSERT INTO `phpbb_album_config` VALUES ('personal_allow_gallery_mod', '0');
INSERT INTO `phpbb_album_config` VALUES ('personal_allow_sub_categories', '0');
INSERT INTO `phpbb_album_config` VALUES ('personal_sub_category_limit', '-1');
INSERT INTO `phpbb_album_config` VALUES ('personal_show_subcats_in_index', '0');
INSERT INTO `phpbb_album_config` VALUES ('personal_show_recent_in_subcats', '0');
INSERT INTO `phpbb_album_config` VALUES ('personal_show_recent_instead_of_nopics', '0');
INSERT INTO `phpbb_album_config` VALUES ('show_personal_gallery_link', '1');
INSERT INTO `phpbb_album_config` VALUES ('album_category_sorting', 'cat_order');
INSERT INTO `phpbb_album_config` VALUES ('album_category_sorting_direction', 'ASC');
INSERT INTO `phpbb_album_config` VALUES ('album_debug_mode', '0');
INSERT INTO `phpbb_album_config` VALUES ('show_all_in_personal_gallery', '1');
INSERT INTO `phpbb_album_config` VALUES ('new_pic_check_interval', '1M');
INSERT INTO `phpbb_album_config` VALUES ('index_enable_supercells', '0');
INSERT INTO `phpbb_album_config` VALUES ('email_notification', '0');
INSERT INTO `phpbb_album_config` VALUES ('show_download', '2');
INSERT INTO `phpbb_album_config` VALUES ('show_slideshow', '1');
INSERT INTO `phpbb_album_config` VALUES ('show_pic_size_on_thumb', '1');
INSERT INTO `phpbb_album_config` VALUES ('hon_rate_users', '0');
INSERT INTO `phpbb_album_config` VALUES ('hon_rate_where', '');
INSERT INTO `phpbb_album_config` VALUES ('hon_rate_sep', '1');
INSERT INTO `phpbb_album_config` VALUES ('hon_rate_times', '1');
INSERT INTO `phpbb_album_config` VALUES ('disp_watermark_at', '3');
INSERT INTO `phpbb_album_config` VALUES ('wut_users', '0');
INSERT INTO `phpbb_album_config` VALUES ('use_watermark', '0');
INSERT INTO `phpbb_album_config` VALUES ('rate_type', '2');
INSERT INTO `phpbb_album_config` VALUES ('disp_rand', '1');
INSERT INTO `phpbb_album_config` VALUES ('disp_mostv', '1');
INSERT INTO `phpbb_album_config` VALUES ('disp_high', '1');
INSERT INTO `phpbb_album_config` VALUES ('disp_late', '1');
INSERT INTO `phpbb_album_config` VALUES ('img_cols', '4');
INSERT INTO `phpbb_album_config` VALUES ('img_rows', '1');
INSERT INTO `phpbb_album_config` VALUES ('midthumb_use', '1');
INSERT INTO `phpbb_album_config` VALUES ('midthumb_height', '450');
INSERT INTO `phpbb_album_config` VALUES ('midthumb_width', '600');
INSERT INTO `phpbb_album_config` VALUES ('midthumb_cache', '1');
INSERT INTO `phpbb_album_config` VALUES ('max_files_to_upload', '1');
INSERT INTO `phpbb_album_config` VALUES ('max_pregenerated_fields', '1');
INSERT INTO `phpbb_album_config` VALUES ('dynamic_fields', '1');
INSERT INTO `phpbb_album_config` VALUES ('pregenerate_fields', '0');
INSERT INTO `phpbb_album_config` VALUES ('propercase_pic_title', '1');
INSERT INTO `phpbb_album_config` VALUES ('show_index_last_pic_lv', '0');
INSERT INTO `phpbb_album_config` VALUES ('personal_pics_approval', '0');
INSERT INTO `phpbb_album_config` VALUES ('show_img_no_gd', '0');
INSERT INTO `phpbb_album_config` VALUES ('dynamic_pic_resampling', '1');
INSERT INTO `phpbb_album_config` VALUES ('max_file_size_resampling', '1024000');
INSERT INTO `phpbb_album_config` VALUES ('switch_nuffload', '0');
INSERT INTO `phpbb_album_config` VALUES ('path_to_bin', './cgi-bin/');
INSERT INTO `phpbb_album_config` VALUES ('perl_uploader', '1');
INSERT INTO `phpbb_album_config` VALUES ('show_progress_bar', '1');
INSERT INTO `phpbb_album_config` VALUES ('close_on_finish', '1');
INSERT INTO `phpbb_album_config` VALUES ('max_pause', '5');
INSERT INTO `phpbb_album_config` VALUES ('simple_format', '0');
INSERT INTO `phpbb_album_config` VALUES ('multiple_uploads', '1');
INSERT INTO `phpbb_album_config` VALUES ('max_uploads', '5');
INSERT INTO `phpbb_album_config` VALUES ('zip_uploads', '1');
INSERT INTO `phpbb_album_config` VALUES ('resize_pic', '1');
INSERT INTO `phpbb_album_config` VALUES ('resize_width', '600');
INSERT INTO `phpbb_album_config` VALUES ('resize_height', '600');
INSERT INTO `phpbb_album_config` VALUES ('resize_quality', '70');
INSERT INTO `phpbb_album_config` VALUES ('show_pics_nav', '1');
INSERT INTO `phpbb_album_config` VALUES ('show_inline_copyright', '0');
INSERT INTO `phpbb_album_config` VALUES ('enable_nuffimage', '1');
INSERT INTO `phpbb_album_config` VALUES ('enable_sepia_bw', '0');
INSERT INTO `phpbb_album_config` VALUES ('personal_allow_avatar_gallery', '0');
INSERT INTO `phpbb_album_config` VALUES ('show_gif_mid_thumb', '1');
INSERT INTO `phpbb_album_config` VALUES ('slideshow_script', '0');
www.islamday.info İslam Bilgi Paylaşım Platformu Destek için Üye olun
http://www.islamday.info
Kilitli

“2.0.x MOD Destek” sayfasına dön

Kimler çevrimiçi

Bu forumu görüntüleyen kullanıcılar: Hiç bir kayıtlı kullanıcı yok ve 1 misafir