debian/0000755000000000000000000000000012261420727007171 5ustar debian/phpbb3.prerm0000755000000000000000000000220212221601112011376 0ustar #!/bin/sh # prerm script for phpbb3 # # see: dh_installdeb(1) # # possible calls: remove, upgrade, failed-upgrade, deconfigure set -e if [ "$PB3DEBUG" = "maint" ]; then echo "[maint] $0 $@" >&2 fi if [ "$PB3DEBUG" = "sh" ]; then set -x fi . /usr/share/phpbb3/maint-libs/webapps-config . /usr/share/phpbb3/maint-libs/dbapps-lib . /usr/share/debconf/confmodule . /usr/share/dbconfig-common/dpkg/prerm case "$1" in remove|deconfigure) ## removal of webserver config analogous to postinst db_get phpbb3/httpd webservers="$RET" reload="" for webserver in $webservers; do webserver=${webserver%,} purge_webserver_config phpbb3 $webserver 50 reload_webserver phpbb3 $webserver done ;; upgrade) # purge the caches when up- (or down-) grading # (see also http://www.debian.org/doc/maint-guide/ch-update.en.html#s-upgrading) rm -Rf /var/cache/phpbb3/cache/* ;; failed-upgrade) ;; *) echo "prerm called with unknown argument \`$1'" >&2 exit 1 ;; esac dc_dbg dbc_go phpbb3 $@ dc_dbg #DEBHELPER# debian/UPGRADING.Debian0000644000000000000000000000316511535010337011615 0ustar Upgrade from 3.0.x ================== An upgrade from a lower version of the same major version should happen automatically if you chose to use dbconfig-common. After an upgrade, make sure to refresh your themes and templates cache in the ACP (admin control panel), otherwise some pages might not display as they should. Note that the images folder has been moved from /usr/share/phpbb3/www/ to /var/lib/phpbb3/. There now is a symlink from the former to the latter. Previously, there were symlinks from inside /usr/share/phpbb3/www/images/ to /var/lib/phpbb3. Since we had to make more and more things writable via the web, the entire directory had to be moved. If there are problems, make sure to check if this modification happened alright. Also make sure to correctly change the corresponding 'Alias' directive in your webserver config where necessary. If you did not choose to use dbconfig-common in the older package (or when upgrading) you may still use the provided install folder, which contains the upstream install/update utilities. However, with these you are on your own. Upgrade from older major versions ================================= Upgrades from phpBB version 2 are not supported, however, for some hints concerning a manual update from phpBB2 (etch), see http://bugs.debian.org/550321#25. Switching from non-Debian install ================================= Upgrading from non-Debian installed versions of phpBB is currently not supported. ______________________________________________________________________ If you have anything to add, please report to the phpbb maintainers, so they can add useful tips to this file. debian/export-sources0000755000000000000000000000104411534725603012123 0ustar #!/bin/bash # $Id$ # Use this script to create the .orig.tar.gz and .diff.gz in the current # directory set -e if [ -z "$1" ]; then echo -n "Need to specify path to right version, like " echo "tags/releases/phpbb3/3.0.6-1" >&2 echo "or trunk/phpbb3" >&2 exit 1 fi mkdir export-sources.dir cd export-sources.dir echo Exporting... mkdir tmp cd tmp svn export http://svn.wolffelaar.nl/phpbb/$1 debian debian/rules get-orig-source cd .. GZIP=--best tar xzvf phpbb3_*.orig.tar.gz mv tmp/debian phpbb3-* rmdir tmp dpkg-source -b phpbb3-* debian/phpbb3.dirs0000644000000000000000000000054612221601111011217 0ustar var/cache/phpbb3/cache var/lib/phpbb3/files var/lib/phpbb3/store etc/apache2/conf-available etc/phpbb3/styles usr/share/phpbb3/dbconfig-common/data/phpbb3/install usr/share/dbconfig-common/scripts/phpbb3/upgrade/mysql usr/share/dbconfig-common/scripts/phpbb3/upgrade/pgsql #usr/share/dbconfig-common/scripts/phpbb3/upgrade/sqlite usr/share/phpbb3/maint-libs debian/phpbb3.lintian-overrides0000644000000000000000000000156512261420306013727 0ustar # This is for detection and proper handling privacy-breach-generic usr/share/phpbb3/styles/prosilver/template/attachment.html active.macromedia.com/flash2/cabs/swflash.cab#version=5,0,0,0 privacy-breach-generic usr/share/phpbb3/styles/prosilver/template/attachment.html www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0 privacy-breach-generic usr/share/phpbb3/styles/prosilver/template/bbcode.html active.macromedia.com/flash2/cabs/swflash.cab#version=5,0,0,0 privacy-breach-generic usr/share/phpbb3/styles/subsilver2/template/attachment.html active.macromedia.com/flash2/cabs/swflash.cab#version=5,0,0,0 privacy-breach-generic usr/share/phpbb3/styles/subsilver2/template/attachment.html www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0 privacy-breach-generic usr/share/phpbb3/styles/subsilver2/template/bbcode.html active.macromedia.com/flash2/cabs/swflash.cab#version=5,0,0,0 debian/webapps-config0000644000000000000000000000770312221601122012011 0ustar # some library functions for phpbb3 maintainer scripts # copyright 2010 J.M. Roth get_webserver_configdata () { local package=$1 local webserver=$2 local prio=$3 case "$webserver" in "lighttpd" ) confdir=conf-available wfile=${prio}-$package.conf ;; "apache2" ) confdir=conf-available wfile=$package.conf ;; * ) echo "$0 $@: webserver $webserver is not supported." 1>&2 return 1 ;; esac } # picked up from https://wiki.debian.org/Apache/PackagingFor24#Making_web_applications_compatible_to_both.2C_Apache_2.2_and_2.4 COMMON_STATE=$(dpkg-query -f '${Status}' -W 'apache2.2-common' 2>/dev/null | awk '{print $3}' || true) APACHE2_MAINTSCRIPT_METHOD=$1 APACHE2_MAINTSCRIPT_ARGUMENT=$2 install_webserver_config () { local package=$1 local webserver=$2 local prio=$3 get_webserver_configdata $@ || return 1 # yields: $confdir, $wfile if [ -d /etc/$webserver/$confdir ] && [ ! -L /etc/$webserver/$confdir/$wfile ] ; then if [ ! -x /usr/sbin/$webserver ] ; then echo "$0 $@: webserver $webserver not found, skipping" 1>&2 else ln -s ../../$package/$webserver.conf /etc/$webserver/$confdir/$wfile if [ "$webserver" = "lighttpd" ] ; then lighty-enable-mod $package >/dev/null elif [ "$webserver" = "apache2" ] ; then if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then . /usr/share/apache2/apache2-maintscript-helper apache2_invoke enconf $package elif [ "$COMMON_STATE" = "installed" ] || [ "$COMMON_STATE" = "unpacked" ] ; then [ -d /etc/apache2/conf.d/ ] && [ ! -L /etc/apache2/conf.d/$package.conf ] && ln -s ../conf-available/$package.conf /etc/apache2/conf.d/$package.conf fi fi fi fi } _purge_webserver_config () { local package=$1 local webserver=$2 local prio=$3 get_webserver_configdata $@ || return 0 # yields: $confdir, $wfile if [ -d /etc/$webserver/$confdir ] && [ -L /etc/$webserver/$confdir/$wfile ] ; then if [ ! -x /usr/sbin/$webserver ] ; then echo "$0 $@: webserver $webserver not installed, skipping" 1>&2 else if [ "$webserver" = "lighttpd" ] ; then lighty-disable-mod $package >/dev/null elif [ "$webserver" = "apache2" ] ; then if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then . /usr/share/apache2/apache2-maintscript-helper apache2_invoke disconf $package elif [ "$COMMON_STATE" = "installed" ] || [ "$COMMON_STATE" = "unpacked" ] ; then [ -L /etc/apache2/conf.d/$package.conf ] && rm /etc/apache2/conf.d/$package.conf fi fi rm /etc/$webserver/$confdir/$wfile fi fi } purge_webserver_config () { local package=$1 local webserver=$2 local prio=$3 case "$webserver" in "all" ) db_metaget $package/httpd Choices for w in $RET ; do _purge_webserver_config $package ${w%,} $prio done ;; * ) _purge_webserver_config $@ ;; esac } _reload_webserver () { local webserver=$1 if [ -x /usr/sbin/$webserver ]; then # Redirection of fd 3 is needed because Debconf uses it and it might # be inherited by webserver. See bug #446324. if [ -x /usr/sbin/invoke-rc.d ]; then invoke-rc.d $webserver reload 3>/dev/null || true else /etc/init.d/$webserver reload 3>/dev/null || true fi echo fi } reload_webserver () { local package=$1 local webserver=$2 case "$webserver" in "all" ) db_metaget $package/httpd Choices for w in $RET ; do _reload_webserver ${w%,} done ;; * ) _reload_webserver ${webserver%,} ;; esac } debian/get-orig-source0000755000000000000000000001564612235503170012141 0ustar #!/bin/bash # $Id$ # inital version # Copyright 2004 Jeroen van Wolffelaar # # Generalized for components (dpkg source format 3.0 (quilt)) # - get language packs as component archives # - also repackage according to several parameters when told so # Copyright 2010 J.M. Roth # # This script may be distributed under the conditions of the GPL v2 set -e if [ "$#" -lt 2 ] ; then echo "How to call: $0 ( [ ...] | _all )" exit 1 fi if [ ! -d debian ] ; then echo "No debian/ directory here. You should use 'debian/rules get-orig-source' instead of calling this script directly. Aborting." exit 1 fi cexit () { rm -Rf $@ exit 100 } format_supported() { # Argument(s): filename local f=$(file -b $1 | cut -d' ' -f1 | tr \[:upper:\] \[:lower:\]) #local ext=$(echo ${1##*.}) case "$f" in gzip | bzip2 | lzma | zip ) echo $f return 0 ;; * ) return 1 ;; esac } format_repackaging_required () { # Argument(s): format local needs_repackaging="zip" # make sure this is a subset of the formats from format_supported()! for i in "$needs_repackaging" ; do [ "$1" = "$i" ] && return 0 done return 1 } repackage () { local app=$1 local comp=$2 local file=$3 local fromformat=$4 local toformat=$5 local cds=${6:-0} local TMPDIR=$(mktemp -d -t repack.XXXXXX) # need a second temp dir inside first one, in case we need to change directory structure local TMP2=$(mktemp -p $TMPDIR -d) # extract the stuff case $fromformat in zip ) unzip -q $file -d $TMP2 ;; * ) if [ "$fromformat" = "$toformat" ] ; then # keep format but change directory structure tar -C $TMP2 -xf $file else echo Source format not supported for repackaging: $fromformat cexit $TMPDIR $file fi ;; esac # change directory structure, if so requested local ORIGDIR=$(pwd) cd $TMPDIR if [ "$cds" -gt 0 ] ; then # need to use TMP2 since 'mv * xxx' cannot move xxx to xxx dirs=${app}_${comp}.orig [ "$cds" -gt 1 ] && dirs=$dirs/$(seq -s/ 2 $cds)/ mkdir -p $dirs mv -t $dirs $TMP2/* rmdir $TMP2 dir=$(ls -1) elif [ "$cds" -lt 0 ] ; then while [ "$cds" -lt 0 ] ; do if [ "$(find . -maxdepth 1 -type f | wc -l)" -gt 0 ] ; then echo "Warning: The extraction point contains files, cannot change directory structure" elif [ "$(find . -maxdepth 1 -type d ! -iname '.' | wc -l)" -gt 1 ] ; then echo "Warning: The extraction point contains more than one directory, cannot change directory structure" else # need to use a new directory since 'mv $dir/* .' cannot work if * == $dir or $TMP2 dir=$(ls -1) # ls minus one mv $dir $TMP2$dir mv $TMP2$dir/* . rmdir $TMP2$dir fi cds=$((++cds)) done else mv $TMP2/* . rmdir $TMP2 fi cd $ORIGDIR # repack the stuff case $toformat in gzip | bzip2 | lzma | xz ) tar --$toformat -C $TMPDIR -cf $file $(ls $TMPDIR) rm -rf $TMPDIR return 0 ;; * ) echo Destination format not supported for repackaging: $toformat cexit $TMPDIR $file ;; esac } fetch_rename_go () { # Argument(s): app comp # component name in .orig.tar must not contain anything else than alphanumeric and dash local comp=${2:+-$(echo $2 | tr '_' '-' | tr -dc \[\[:alnum:\]-\])} local stor=$1_$DVERSION.orig$comp.tar # get the checksum of a potentially existing download local md5= for d in . .. ; do if [ -f $d/$stor* ] ; then md5=$(md5sum $d/$stor* | cut -f1 -d' ') fi done # download the file if it's supposed to be repackaged or the checksum didn't match if [ "$RepackDirectoryStructure" -ne 0 -o "$md5" != "$Md5" ] ; then echo "***>" Going to get ${app}${comp} local tmp=$(mktemp -t pget.XXXXXX) if ! wget -nv -O$tmp $Url ; then echo "failed" cexit $tmp fi else echo "Skipping ${app}${comp}..." return 0 fi # check downloaded file checksum md5=$(md5sum $tmp | cut -f1 -d' ') if [ "$md5" != "$Md5" ] ; then echo "Warning: MD5 mismatch" echo "[MD5] Url $md5" echo "[MD5] info $Md5" fi # check format of downloaded file local fmt=$(format_supported $tmp) if [ $? -ne 0 ] ; then echo This file format is not supported at all by this script, neither for packaging, nor for repackaging. "($fmt)" cexit $tmp fi # repackage if necessary if format_repackaging_required $fmt || [ "$RepackDirectoryStructure" -ne 0 ] ; then local toformat=xz echo "***> Repackaging $1_$2: $fmt >> $toformat ($RepackDirectoryStructure)" ##! $2 can be empty, script will break when main app needs repackaging repackage $1 $2 $tmp $fmt $toformat $RepackDirectoryStructure # overwrites $tmp fmt=$toformat else # check if tar actually likes the downloaded file if [ "$fmt" != "lzma" ] && ! tar tf $tmp >/dev/null 2>&1; then echo $tmp does not seem to be a valid .tar.$fmt file cexit $tmp fi fi local gzip=gz local bzip2=bz2 local lzma=lzma local xz=xz case $fmt in gzip ) stor=$stor.gz ;; bzip2 ) stor=$stor.bz2 ;; * ) stor=$stor.$fmt ;; esac mv $tmp $stor } DVERSION=$1 shift if [ "$1" = "_all" ] ; then for i in debian/upstream/*.info ; do i=${i#debian/upstream/} i=${i%.info} el="$el $i" done else el="$@" fi for i in $el ; do # source the metadata if [ ! -f debian/upstream/$i.info ] ; then echo Warning: debian/upstream/$i.info does not exist. continue fi . debian/upstream/$i.info [ "${Include:-yes}" = "no" ] && continue : ${RepackDirectoryStructure:=0} # check versions # - run only if it's the main app (not a component) # - check if the info file has same version than argument provided to this script (from changelog) if [ -z "$(echo $i | grep _)" -a "$Version" != "$DVERSION" ] ; then echo "Notice:" Changelog/rules/.info versions seem to disagree: $i: $UPSTREAM/$DVERSION/$Version echo "Enter to continue [Ctrl-C to abort]" read x fi app=$(echo $i | cut -d_ -f1) comp=$(echo $i | cut -d_ -f2-)${Update:+-u}${Update} [ "$comp" = "$app" ] && comp= fetch_rename_go $app $comp unset RepackDirectoryStructure unset Include unset Version unset Update done echo "***>" Done exit 0 debian/sqliteconv1.sh0000755000000000000000000000111211534725603011776 0ustar #!/bin/sh cat $1 | \ grep -v ^# | \ grep -v ' KEY "' | \ grep -v ' UNIQUE KEY "' | \ sed -e "s/\`/\'/g" -e "s/UNIX_TIMESTAMP()/strftime('%s','now')/" | \ sed 's/ unsigned / /g' | \ sed 's/ auto_increment/ /gi' | \ sed 's/ smallint([0-9]*) / integer /gi' | \ sed 's/ mediumint([0-9]*) / integer /gi' | \ sed 's/ tinyint([0-9]*) / integer /gi' | \ sed 's/ int([0-9]*) / integer /gi' | \ sed 's/ character set [^ ]* / /gi' | \ sed 's/ collate [^ ]* / /gi' | \ sed 's/ enum([^)]*) / varchar(255) /gi' | \ sed 's/ on update [^,]*//gi' debian/phpbb3.templates0000644000000000000000000000240511534725603012273 0ustar Template: phpbb3/httpd Type: multiselect Choices: ${choices} Default: apache2 _Description: Web server to configure automatically: Please select any web server that should be configured automatically for phpBB. Template: phpbb3/admin-pass-ask Type: boolean _Description: Configure the phpBB admin password? Template: phpbb3/admin-pass Type: password _Description: Password for phpBB admin: Please provide a password for the phpBB user "admin". . The password must be at least 6 characters long. . If the password is left blank, a random one will be generated. Template: phpbb3/admin-pass-confirm Type: password _Description: Password confirmation: Please confirm the password for the phpBB user "admin". Template: phpbb3/admin-pass-mismatch Type: error _Description: Password mismatch The two passwords you entered were not the same. Please try again. Template: phpbb3/admin-pass-generated Type: note #flag:translate!:3 _Description: Generation of random password The following random password has been configured for the admin user: . ${genpass} . Make sure you remember it, as it will not be stored in cleartext. Template: phpbb3/admin-pass-requirements Type: error _Description: Password complexity requirements The password must be at least 6 characters long. debian/README.templates0000644000000000000000000000114011534725603012045 0ustar The directory /usr/share/phpbb3/styles/ is exclusively for packages supplying styles (themes) for phpbb3. prosilver and subsilver2 are distributed by the 'phpbb3' package itself. The phpbb3 packaging will take a look in /etc/phpbb3/styles/ what templates are available, so that you can add your own templates in /etc (as symlink to somewhere else, or just the template itself). Template packages should put their template in /usr/share/phpbb3/styles/, and make a symlink from /etc/phpbb3/styles/. An important consequence is that just adding a template to /usr/share/phpbb3/styles/ alone _will not work_. debian/compat0000644000000000000000000000000211534725603010372 0ustar 7 debian/README.source0000644000000000000000000000573012235301265011351 0ustar Patching happens as usual. This document just explains some more complex aspects of the packaging. For details on how to get the build environment after checking out from Subversion, see README.svn. The following are notes by J.M. Roth (Mar 2010) The database ============ Upgrading --------- Upgrading is easy: modify the upstream database_update.php file (strip output-generating stuff, see patches) and put it into dbconfig-common/scripts/phpbb3/upgrade/... Installing ---------- A new install is the hard part. One has to distinguish between: - the schema, and - the schema data. For each version of phpBB, the schema file itself is at the newest state. Still, the install script would do things that are not in the schema (data). Even if one would simply import generic schema data and then ran the updater somehow, this does not work because dbconfig-common FIRST runs script and only then imports (custom) SQL data. Therefore, one has to generate a new dump of an UPGRADED database at each version (either manually via database_update.php or via the upgrade functionality already implemented in a new package). The debianization here only needs to occur initially, except for the dynamic stuff added in postinst. To that end: - run the installer of the first version from which an update is possible to the new version (this one performs the debianizations), - update the install using the new version to provide (this runs the update script), - extract the data using some tool like mysqldump or phpmyadmin, e.g. mysqldump --compatible=ansi --skip-opt --compact --complete-insert --no-create-info --skip-quote-names, so this data requires the least postprocessing necessary to import into all supported db types, and make sure that indexes/sequences are generated/updated on the fly during import, i.e. for postgres we use postgres_update_seqs.sh, - use this extracted data to produce the files for dbconfig-common/data/phpbb3/install/, - replace the he data that would usually contain '@DEB_...' and be dynamically replaced during postinst (e.g. captcha obfuscation), - save these files as database_update_debian.php and schema_data_debian.sql, respectively. Testing the package =================== When testing the package in a chroot (e.g. man schroot) the following cleanup script might come in handy when things get really broken #!/bin/sh -x #rm -rf /var/lib/phpbb3 /usr/share/phpbb3 /etc/phpbb3 /etc/dbconfig-common/phpbb* /usr/share/dbconfig-common/data/phpbb* /usr/share/dbconfig-common/scripts/phpbb* /var/lib/dpkg/info/phpbb* #for i in $(debconf-get-selections | grep ^phpbb | awk '{print $2}' | cut -d/ -f1 | sort | uniq); do # echo purge | debconf-communicate $i # u=$(echo $i | cut -d_ -f2) # for j in $(rgrep $u /var/lib/ucf); do # ucf --purge $(echo j | awk '{print $2}') # done #done #for i in $(rgrep phpbb /var/lib/ucf | awk '{print $2}'); do # ucf --purge $i #done #aptitude -y purge phpbb3 This is not an issue when using pbuilder/pdebuild. debian/TODO0000644000000000000000000000375611534725603007677 0ustar Packaging issues I didn't yet get around to, or which I didn't yet confirm as solved. ************* * Note: For all these items, patches are appreciated! ************* [RC] means that I won't release a Debian version without that is solved, so if you see this below and you're not looking at the subversion version... There's something wrong. --Jeroen long-term TODOs * maybe move styles to their own packages? (what about l10n for styles?) Normal TODO's: - Multiboard security okay? Yes. [Jeroen] - Multiboard: avatar dir is shared, fix that -- sort of fixed see README.multiboard [JM] - Make sure there are good and useful errors if for example php4-mysql module isn't installed, an invalid dbms type is specified, stuff like that. - PostgreSQL setup, also the default SQL needs to be fixed analog to MySQL -- ok [JM] - Purge user on package purge (but not DB, or ask about DB, do note about that) - Revise the taken-from-website description to be as useful as possible for people deciding whether or not they want phpBB installed - Download and apply some useful mods (there are quite some) - Provide a way to reset passwords, in case the admin looses control over the board. - What's the doc-base stuff... probably need to do something with it? - Translations: Translators can ask subversion access, so they can check in translations themselves. - Debconf has half-baken support for backup... workaround someday/write a patch - Have #231186 fixed, and remove the workaround in this package - use dpatch or dbs or something like that, currently both are too overengineered for my purposes (but that will change) -- ok, quilt [JM] - Support mysql4 (enable transactions) - Use UCF on apache.conf (--three-way) - Report bug about ucf --three-way going crazy on disappeared files Possible enhancements: - Have admin choose the database prefix - is this useful? Will only do it if requested, because I don't think so - Rename config.php to database.php, which is more appropriate? Upstream calls it config.php debian/phpbb3.install0000644000000000000000000000102712261414667011745 0ustar adm /usr/share/phpbb3/www download /usr/share/phpbb3/www includes /usr/share/phpbb3/www install /usr/share/phpbb3 language /usr/share/phpbb3/www *.php /usr/share/phpbb3/www styles /usr/share/phpbb3 docs /usr/share/phpbb3 install/schemas /usr/share/doc/phpbb3 images /var/lib/phpbb3 debian/config.php /usr/share/phpbb3/www debian/postgres_update_seqs.sh /usr/share/phpbb3 debian/webapps-config /usr/share/phpbb3/maint-libs debian/dbapps-lib /usr/share/phpbb3/maint-libs debian/examples/* /usr/share/phpbb3/webserver-examples debian/maint-patches/0000755000000000000000000000000012235503170011721 5ustar debian/maint-patches/010_board_configuration.diff0000644000000000000000000123337712235503170017171 0ustar --- install/schemas/schema_data.sql 2013-09-27 21:20:51.000000000 -0400 +++ debian/schema_data_debian.sql 2013-11-02 21:29:24.699731111 -0400 @@ -1,836 +1,1386 @@ -# -# $Id$ -# - -# POSTGRES BEGIN # - -# -- Config -INSERT INTO phpbb_config (config_name, config_value) VALUES ('active_sessions', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_attachments', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_autologin', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_avatar', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_avatar_local', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_avatar_remote', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_avatar_upload', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_avatar_remote_upload', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_bbcode', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_birthdays', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_bookmarks', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_emailreuse', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_forum_notify', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_mass_pm', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_name_chars', 'USERNAME_CHARS_ANY'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_namechange', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_nocensors', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_pm_attach', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_pm_report', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_post_flash', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_post_links', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_privmsg', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_quick_reply', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_bbcode', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_flash', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_img', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_links', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_pm', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_sig_smilies', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_smilies', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_topic_notify', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('attachment_quota', '52428800'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('auth_bbcode_pm', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('auth_flash_pm', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('auth_img_pm', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('auth_method', 'db'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('auth_smilies_pm', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_filesize', '6144'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_gallery_path', 'images/avatars/gallery'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_max_height', '90'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_max_width', '90'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_min_height', '20'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_min_width', '20'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_path', 'images/avatars/upload'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('avatar_salt', 'phpbb_avatar'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_contact', 'contact@yourdomain.tld'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_disable', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_disable_msg', ''); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_dst', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_email', 'address@yourdomain.tld'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_email_form', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_email_sig', '{L_CONFIG_BOARD_EMAIL_SIG}'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_hide_emails', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_timezone', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('browser_check', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('bump_interval', '10'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('bump_type', 'd'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('cache_gc', '7200'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_plugin', 'phpbb_captcha_nogd'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_gd', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_gd_foreground_noise', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_gd_x_grid', '25'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_gd_y_grid', '25'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_gd_wave', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_gd_3d_noise', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('captcha_gd_fonts', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('confirm_refresh', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('check_attachment_content', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('check_dnsbl', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('chg_passforce', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('cookie_domain', ''); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('cookie_name', 'phpbb3'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('cookie_path', '/'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('cookie_secure', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_enable', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_fax', ''); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('coppa_mail', ''); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('database_gc', '604800'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('dbms_version', ''); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('default_dateformat', 'D M d, Y g:i a'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('default_style', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('display_last_edited', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('display_order', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('edit_time', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('delete_time', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('email_check_mx', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('email_enable', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('email_function_name', 'mail'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('email_max_chunk_size', '50'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('email_package_size', '20'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('enable_confirm', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('enable_pm_icons', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('enable_post_confirm', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_enable', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_http_auth', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_limit_post', '15'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_limit_topic', '10'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_overall_forums', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_overall', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_forum', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_topic', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_topics_new', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_topics_active', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('feed_item_statistics', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('flood_interval', '15'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('force_server_vars', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('form_token_lifetime', '7200'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('form_token_mintime', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('form_token_sid_guests', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('forward_pm', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('forwarded_for_check', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('full_folder_action', '2'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_mysql_max_word_len', '254'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_mysql_min_word_len', '4'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_native_common_thres', '5'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_native_load_upd', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_native_max_chars', '14'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('fulltext_native_min_chars', '3'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('gzip_compress', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('hot_threshold', '25'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('icons_path', 'images/icons'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_create_thumbnail', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_display_inlined', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_imagick', ''); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_link_height', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_link_width', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_max_height', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_max_thumb_width', '400'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_max_width', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_min_thumb_filesize', '12000'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('ip_check', '3'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('ip_login_limit_max', '50'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('ip_login_limit_time', '21600'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('ip_login_limit_use_forwarded', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('jab_enable', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('jab_host', ''); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('jab_password', ''); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('jab_package_size', '20'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('jab_port', '5222'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('jab_use_ssl', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('jab_username', ''); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_base_dn', ''); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_email', ''); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_password', ''); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_port', ''); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_server', ''); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_uid', ''); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_user', ''); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('ldap_user_filter', ''); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('limit_load', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('limit_search_load', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_anon_lastread', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_birthdays', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_cpf_memberlist', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_cpf_viewprofile', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_cpf_viewtopic', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_db_lastread', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_db_track', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_jumpbox', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_moderators', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_online', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_online_guests', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_online_time', '5'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_onlinetrack', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_search', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_tplcompile', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_unreads_search', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('load_user_activity', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_attachments', '3'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_attachments_pm', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_autologin_time', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_filesize', '262144'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_filesize_pm', '262144'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_login_attempts', '3'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_name_chars', '20'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_num_search_keywords', '10'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_pass_chars', '100'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_poll_options', '10'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_post_chars', '60000'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_post_font_size', '200'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_post_img_height', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_post_img_width', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_post_smilies', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_post_urls', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_quote_depth', '3'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_reg_attempts', '5'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_sig_chars', '255'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_sig_font_size', '200'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_sig_img_height', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_sig_img_width', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_sig_smilies', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_sig_urls', '5'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('min_name_chars', '3'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('min_pass_chars', '6'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('min_post_chars', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('min_search_author_chars', '3'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('mime_triggers', 'body|head|html|img|plaintext|a href|pre|script|table|title'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('new_member_post_limit', '3'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('new_member_group_default', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('override_user_style', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('pass_complex', 'PASS_TYPE_ANY'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('pm_edit_time', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('pm_max_boxes', '4'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('pm_max_msgs', '50'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('pm_max_recipients', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('posts_per_page', '10'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('print_pm', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('queue_interval', '60'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('ranks_path', 'images/ranks'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('require_activation', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('referer_validation', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('script_path', ''); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_block_size', '250'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_gc', '7200'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_interval', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_anonymous_interval', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_type', 'fulltext_native'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('search_store_results', '1800'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('secure_allow_deny', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('secure_allow_empty_referer', '1'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('secure_downloads', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('server_name', ''); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('server_port', ''); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('server_protocol', ''); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('session_gc', '3600'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('session_length', '3600'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('site_desc', '{L_CONFIG_SITE_DESC}'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('sitename', '{L_CONFIG_SITENAME}'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('smilies_path', 'images/smilies'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('smilies_per_page', '50'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_auth_method', 'PLAIN'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_delivery', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_host', ''); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_password', ''); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_port', '25'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_username', ''); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('topics_per_page', '25'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('tpl_allow_php', '0'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('upload_icons_path', 'images/upload_icons'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('upload_path', 'files'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('version', '3.0.12'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('warnings_expire_days', '90'); -INSERT INTO phpbb_config (config_name, config_value) VALUES ('warnings_gc', '14400'); - -INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cache_last_gc', '0', 1); -INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cron_lock', '0', 1); -INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('database_last_gc', '0', 1); -INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('last_queue_run', '0', 1); -INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('newest_user_colour', 'AA0000', 1); -INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('newest_user_id', '2', 1); -INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('newest_username', '', 1); -INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_files', '0', 1); -INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_posts', '1', 1); -INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_topics', '1', 1); -INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_users', '1', 1); -INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('rand_seed', '0', 1); -INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('rand_seed_last_update', '0', 1); -INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('record_online_date', '0', 1); -INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('record_online_users', '0', 1); -INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_indexing_state', '', 1); -INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_last_gc', '0', 1); -INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('session_last_gc', '0', 1); -INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('upload_dir_size', '0', 1); -INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('warnings_last_gc', '0', 1); - -# -- Forum related auth options -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_announce', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_attach', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_bbcode', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_bump', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_delete', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_download', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_edit', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_email', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_flash', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_icons', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_ignoreflood', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_img', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_list', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_noapprove', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_poll', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_post', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_postcount', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_print', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_read', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_reply', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_report', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_search', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_sigs', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_smilies', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_sticky', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_subscribe', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_user_lock', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_vote', 1); -INSERT INTO phpbb_acl_options (auth_option, is_local) VALUES ('f_votechg', 1); - -# -- Moderator related auth options -INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_', 1, 1); -INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_approve', 1, 1); -INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_chgposter', 1, 1); -INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_delete', 1, 1); -INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_edit', 1, 1); -INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_info', 1, 1); -INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_lock', 1, 1); -INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_merge', 1, 1); -INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_move', 1, 1); -INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_report', 1, 1); -INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_split', 1, 1); - -# -- Global moderator auth option (not a local option) -INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_ban', 0, 1); -INSERT INTO phpbb_acl_options (auth_option, is_local, is_global) VALUES ('m_warn', 0, 1); - -# -- Admin related auth options -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_aauth', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_attach', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_authgroups', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_authusers', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_backup', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_ban', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_bbcode', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_board', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_bots', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_clearlogs', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_email', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_fauth', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_forum', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_forumadd', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_forumdel', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_group', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_groupadd', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_groupdel', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_icons', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_jabber', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_language', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_mauth', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_modules', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_names', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_phpinfo', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_profile', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_prune', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_ranks', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_reasons', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_roles', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_search', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_server', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_styles', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_switchperm', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_uauth', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_user', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_userdel', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_viewauth', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_viewlogs', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('a_words', 1); - -# -- User related auth options -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_attach', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_chgavatar', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_chgcensors', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_chgemail', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_chggrp', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_chgname', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_chgpasswd', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_download', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_hideonline', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_ignoreflood', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_masspm', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_masspm_group', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_attach', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_bbcode', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_delete', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_download', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_edit', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_emailpm', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_flash', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_forward', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_img', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_printpm', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_pm_smilies', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_readpm', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_savedrafts', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_search', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_sendemail', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_sendim', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_sendpm', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_sig', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_viewonline', 1); -INSERT INTO phpbb_acl_options (auth_option, is_global) VALUES ('u_viewprofile', 1); - - -# -- standard auth roles -INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_ADMIN_STANDARD', 'ROLE_DESCRIPTION_ADMIN_STANDARD', 'a_', 1); -INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_ADMIN_FORUM', 'ROLE_DESCRIPTION_ADMIN_FORUM', 'a_', 3); -INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_ADMIN_USERGROUP', 'ROLE_DESCRIPTION_ADMIN_USERGROUP', 'a_', 4); -INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_ADMIN_FULL', 'ROLE_DESCRIPTION_ADMIN_FULL', 'a_', 2); -INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_USER_FULL', 'ROLE_DESCRIPTION_USER_FULL', 'u_', 3); -INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_USER_STANDARD', 'ROLE_DESCRIPTION_USER_STANDARD', 'u_', 1); -INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_USER_LIMITED', 'ROLE_DESCRIPTION_USER_LIMITED', 'u_', 2); -INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_USER_NOPM', 'ROLE_DESCRIPTION_USER_NOPM', 'u_', 4); -INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_USER_NOAVATAR', 'ROLE_DESCRIPTION_USER_NOAVATAR', 'u_', 5); -INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_MOD_FULL', 'ROLE_DESCRIPTION_MOD_FULL', 'm_', 3); -INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_MOD_STANDARD', 'ROLE_DESCRIPTION_MOD_STANDARD', 'm_', 1); -INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_MOD_SIMPLE', 'ROLE_DESCRIPTION_MOD_SIMPLE', 'm_', 2); -INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_MOD_QUEUE', 'ROLE_DESCRIPTION_MOD_QUEUE', 'm_', 4); -INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_FULL', 'ROLE_DESCRIPTION_FORUM_FULL', 'f_', 7); -INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_STANDARD', 'ROLE_DESCRIPTION_FORUM_STANDARD', 'f_', 5); -INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_NOACCESS', 'ROLE_DESCRIPTION_FORUM_NOACCESS', 'f_', 1); -INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_READONLY', 'ROLE_DESCRIPTION_FORUM_READONLY', 'f_', 2); -INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_LIMITED', 'ROLE_DESCRIPTION_FORUM_LIMITED', 'f_', 3); -INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_BOT', 'ROLE_DESCRIPTION_FORUM_BOT', 'f_', 9); -INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_ONQUEUE', 'ROLE_DESCRIPTION_FORUM_ONQUEUE', 'f_', 8); -INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_POLLS', 'ROLE_DESCRIPTION_FORUM_POLLS', 'f_', 6); -INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_LIMITED_POLLS', 'ROLE_DESCRIPTION_FORUM_LIMITED_POLLS', 'f_', 4); - -# 23 -INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_USER_NEW_MEMBER', 'ROLE_DESCRIPTION_USER_NEW_MEMBER', 'u_', 6); - -# 24 -INSERT INTO phpbb_acl_roles (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_NEW_MEMBER', 'ROLE_DESCRIPTION_FORUM_NEW_MEMBER', 'f_', 10); - -# -- phpbb_styles -INSERT INTO phpbb_styles (style_name, style_copyright, style_active, template_id, theme_id, imageset_id) VALUES ('prosilver', '© phpBB Group', 1, 1, 1, 1); - -# -- phpbb_styles_imageset -INSERT INTO phpbb_styles_imageset (imageset_name, imageset_copyright, imageset_path) VALUES ('prosilver', '© phpBB Group', 'prosilver'); - -# -- phpbb_styles_imageset_data -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('site_logo', 'site_logo.gif', '', 52, 139, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('forum_link', 'forum_link.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('forum_read', 'forum_read.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('forum_read_locked', 'forum_read_locked.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('forum_read_subforum', 'forum_read_subforum.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('forum_unread', 'forum_unread.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('forum_unread_locked', 'forum_unread_locked.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('forum_unread_subforum', 'forum_unread_subforum.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_moved', 'topic_moved.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_read', 'topic_read.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_read_mine', 'topic_read_mine.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_read_hot', 'topic_read_hot.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_read_hot_mine', 'topic_read_hot_mine.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_read_locked', 'topic_read_locked.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_read_locked_mine', 'topic_read_locked_mine.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_unread', 'topic_unread.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_unread_mine', 'topic_unread_mine.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_unread_hot', 'topic_unread_hot.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_unread_hot_mine', 'topic_unread_hot_mine.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_unread_locked', 'topic_unread_locked.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('topic_unread_locked_mine', 'topic_unread_locked_mine.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('sticky_read', 'sticky_read.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('sticky_read_mine', 'sticky_read_mine.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('sticky_read_locked', 'sticky_read_locked.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('sticky_read_locked_mine', 'sticky_read_locked_mine.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('sticky_unread', 'sticky_unread.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('sticky_unread_mine', 'sticky_unread_mine.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('sticky_unread_locked', 'sticky_unread_locked.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('sticky_unread_locked_mine', 'sticky_unread_locked_mine.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('announce_read', 'announce_read.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('announce_read_mine', 'announce_read_mine.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('announce_read_locked', 'announce_read_locked.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('announce_read_locked_mine', 'announce_read_locked_mine.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('announce_unread', 'announce_unread.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('announce_unread_mine', 'announce_unread_mine.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('announce_unread_locked', 'announce_unread_locked.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('announce_unread_locked_mine', 'announce_unread_locked_mine.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_read', 'announce_read.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_read_mine', 'announce_read_mine.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_read_locked', 'announce_read_locked.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_read_locked_mine', 'announce_read_locked_mine.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_unread', 'announce_unread.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_unread_mine', 'announce_unread_mine.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_unread_locked', 'announce_unread_locked.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('global_unread_locked_mine', 'announce_unread_locked_mine.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('pm_read', 'topic_read.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('pm_unread', 'topic_unread.gif', '', 27, 27, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_back_top', 'icon_back_top.gif', '', 11, 11, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_aim', 'icon_contact_aim.gif', '', 20, 20, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_email', 'icon_contact_email.gif', '', 20, 20, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_icq', 'icon_contact_icq.gif', '', 20, 20, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_jabber', 'icon_contact_jabber.gif', '', 20, 20, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_msnm', 'icon_contact_msnm.gif', '', 20, 20, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_www', 'icon_contact_www.gif', '', 20, 20, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_contact_yahoo', 'icon_contact_yahoo.gif', '', 20, 20, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_post_delete', 'icon_post_delete.gif', '', 20, 20, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_post_info', 'icon_post_info.gif', '', 20, 20, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_post_report', 'icon_post_report.gif', '', 20, 20, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_post_target', 'icon_post_target.gif', '', 9, 11, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_post_target_unread', 'icon_post_target_unread.gif', '', 9, 11, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_topic_attach', 'icon_topic_attach.gif', '', 10, 7, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_topic_latest', 'icon_topic_latest.gif', '', 9, 11, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_topic_newest', 'icon_topic_newest.gif', '', 9, 11, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_topic_reported', 'icon_topic_reported.gif', '', 14, 16, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_topic_unapproved', 'icon_topic_unapproved.gif', '', 14, 16, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('icon_user_warn', 'icon_user_warn.gif', '', 20, 20, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('subforum_read', 'subforum_read.gif', '', 9, 11, 1); -INSERT INTO phpbb_styles_imageset_data (image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES ('subforum_unread', 'subforum_unread.gif', '', 9, 11, 1); - -# -- phpbb_styles_template -INSERT INTO phpbb_styles_template (template_name, template_copyright, template_path, bbcode_bitfield, template_storedb) VALUES ('prosilver', '© phpBB Group', 'prosilver', 'lNg=', 0); - -# -- phpbb_styles_theme -INSERT INTO phpbb_styles_theme (theme_name, theme_copyright, theme_path, theme_storedb, theme_data) VALUES ('prosilver', '© phpBB Group', 'prosilver', 1, ''); - -# -- Forums -INSERT INTO phpbb_forums (forum_name, forum_desc, left_id, right_id, parent_id, forum_type, forum_posts, forum_topics, forum_topics_real, forum_last_post_id, forum_last_poster_id, forum_last_poster_name, forum_last_poster_colour, forum_last_post_time, forum_link, forum_password, forum_image, forum_rules, forum_rules_link, forum_rules_uid, forum_desc_uid, prune_days, prune_viewed, forum_parents) VALUES ('{L_FORUMS_FIRST_CATEGORY}', '', 1, 4, 0, 0, 1, 1, 1, 1, 2, 'Admin', 'AA0000', 972086460, '', '', '', '', '', '', '', 0, 0, ''); - -INSERT INTO phpbb_forums (forum_name, forum_desc, left_id, right_id, parent_id, forum_type, forum_posts, forum_topics, forum_topics_real, forum_last_post_id, forum_last_poster_id, forum_last_poster_name, forum_last_poster_colour, forum_last_post_subject, forum_last_post_time, forum_link, forum_password, forum_image, forum_rules, forum_rules_link, forum_rules_uid, forum_desc_uid, prune_days, prune_viewed, forum_parents, forum_flags) VALUES ('{L_FORUMS_TEST_FORUM_TITLE}', '{L_FORUMS_TEST_FORUM_DESC}', 2, 3, 1, 1, 1, 1, 1, 1, 2, 'Admin', 'AA0000', '{L_TOPICS_TOPIC_TITLE}', 972086460, '', '', '', '', '', '', '', 0, 0, '', 48); - -# -- Users / Anonymous user -INSERT INTO phpbb_users (user_type, group_id, username, username_clean, user_regdate, user_password, user_email, user_lang, user_style, user_rank, user_colour, user_posts, user_permissions, user_ip, user_birthday, user_lastpage, user_last_confirm_key, user_post_sortby_type, user_post_sortby_dir, user_topic_sortby_type, user_topic_sortby_dir, user_avatar, user_sig, user_sig_bbcode_uid, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_allow_massemail) VALUES (2, 1, 'Anonymous', 'anonymous', 0, '', '', 'en', 1, 0, '', 0, '', '', '', '', '', 't', 'a', 't', 'd', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 0); - -# -- username: Admin password: admin (change this or remove it once everything is working!) -INSERT INTO phpbb_users (user_type, group_id, username, username_clean, user_regdate, user_password, user_email, user_lang, user_style, user_rank, user_colour, user_posts, user_permissions, user_ip, user_birthday, user_lastpage, user_last_confirm_key, user_post_sortby_type, user_post_sortby_dir, user_topic_sortby_type, user_topic_sortby_dir, user_avatar, user_sig, user_sig_bbcode_uid, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd) VALUES (3, 5, 'Admin', 'admin', 0, '21232f297a57a5a743894a0e4a801fc3', 'admin@yourdomain.com', 'en', 1, 1, 'AA0000', 1, '', '', '', '', '', 't', 'a', 't', 'd', '', '', '', '', '', '', '', '', '', '', '', '', '', ''); - -# -- Groups -INSERT INTO phpbb_groups (group_name, group_type, group_founder_manage, group_colour, group_legend, group_avatar, group_desc, group_desc_uid, group_max_recipients) VALUES ('GUESTS', 3, 0, '', 0, '', '', '', 5); -INSERT INTO phpbb_groups (group_name, group_type, group_founder_manage, group_colour, group_legend, group_avatar, group_desc, group_desc_uid, group_max_recipients) VALUES ('REGISTERED', 3, 0, '', 0, '', '', '', 5); -INSERT INTO phpbb_groups (group_name, group_type, group_founder_manage, group_colour, group_legend, group_avatar, group_desc, group_desc_uid, group_max_recipients) VALUES ('REGISTERED_COPPA', 3, 0, '', 0, '', '', '', 5); -INSERT INTO phpbb_groups (group_name, group_type, group_founder_manage, group_colour, group_legend, group_avatar, group_desc, group_desc_uid, group_max_recipients) VALUES ('GLOBAL_MODERATORS', 3, 0, '00AA00', 1, '', '', '', 0); -INSERT INTO phpbb_groups (group_name, group_type, group_founder_manage, group_colour, group_legend, group_avatar, group_desc, group_desc_uid, group_max_recipients) VALUES ('ADMINISTRATORS', 3, 1, 'AA0000', 1, '', '', '', 0); -INSERT INTO phpbb_groups (group_name, group_type, group_founder_manage, group_colour, group_legend, group_avatar, group_desc, group_desc_uid, group_max_recipients) VALUES ('BOTS', 3, 0, '9E8DA7', 0, '', '', '', 5); -INSERT INTO phpbb_groups (group_name, group_type, group_founder_manage, group_colour, group_legend, group_avatar, group_desc, group_desc_uid, group_max_recipients) VALUES ('NEWLY_REGISTERED', 3, 0, '', 0, '', '', '', 5); - -# -- User -> Group -INSERT INTO phpbb_user_group (group_id, user_id, user_pending, group_leader) VALUES (1, 1, 0, 0); -INSERT INTO phpbb_user_group (group_id, user_id, user_pending, group_leader) VALUES (2, 2, 0, 0); -INSERT INTO phpbb_user_group (group_id, user_id, user_pending, group_leader) VALUES (4, 2, 0, 0); -INSERT INTO phpbb_user_group (group_id, user_id, user_pending, group_leader) VALUES (5, 2, 0, 1); - -# -- Ranks -INSERT INTO phpbb_ranks (rank_title, rank_min, rank_special, rank_image) VALUES ('{L_RANKS_SITE_ADMIN_TITLE}', 0, 1, ''); - -# -- Roles data - -# Standard Admin (a_) -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 1, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'a_%' AND auth_option NOT IN ('a_switchperm', 'a_jabber', 'a_phpinfo', 'a_server', 'a_backup', 'a_styles', 'a_clearlogs', 'a_modules', 'a_language', 'a_email', 'a_bots', 'a_search', 'a_aauth', 'a_roles'); - -# Forum admin (a_) -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 2, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'a_%' AND auth_option IN ('a_', 'a_authgroups', 'a_authusers', 'a_fauth', 'a_forum', 'a_forumadd', 'a_forumdel', 'a_mauth', 'a_prune', 'a_uauth', 'a_viewauth', 'a_viewlogs'); - -# User and Groups Admin (a_) -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 3, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'a_%' AND auth_option IN ('a_', 'a_authgroups', 'a_authusers', 'a_ban', 'a_group', 'a_groupadd', 'a_groupdel', 'a_ranks', 'a_uauth', 'a_user', 'a_viewauth', 'a_viewlogs'); - -# Full Admin (a_) -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 4, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'a_%'; - -# All Features (u_) -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 5, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%'; - -# Standard Features (u_) -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 6, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' AND auth_option NOT IN ('u_viewonline', 'u_chggrp', 'u_chgname', 'u_ignoreflood', 'u_pm_flash', 'u_pm_forward'); - -# Limited Features (u_) -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 7, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' AND auth_option NOT IN ('u_attach', 'u_viewonline', 'u_chggrp', 'u_chgname', 'u_ignoreflood', 'u_pm_attach', 'u_pm_emailpm', 'u_pm_flash', 'u_savedrafts', 'u_search', 'u_sendemail', 'u_sendim', 'u_masspm', 'u_masspm_group'); - -# No Private Messages (u_) -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 8, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' AND auth_option IN ('u_', 'u_chgavatar', 'u_chgcensors', 'u_chgemail', 'u_chgpasswd', 'u_download', 'u_hideonline', 'u_sig', 'u_viewprofile'); -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 8, auth_option_id, 0 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' AND auth_option IN ('u_readpm', 'u_sendpm', 'u_masspm', 'u_masspm_group'); - -# No Avatar (u_) -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 9, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' AND auth_option NOT IN ('u_attach', 'u_chgavatar', 'u_viewonline', 'u_chggrp', 'u_chgname', 'u_ignoreflood', 'u_pm_attach', 'u_pm_emailpm', 'u_pm_flash', 'u_savedrafts', 'u_search', 'u_sendemail', 'u_sendim', 'u_masspm', 'u_masspm_group'); -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 9, auth_option_id, 0 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' AND auth_option IN ('u_chgavatar'); - -# Full Moderator (m_) -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 10, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'm_%'; - -# Standard Moderator (m_) -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 11, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'm_%' AND auth_option NOT IN ('m_ban', 'm_chgposter'); - -# Simple Moderator (m_) -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 12, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'm_%' AND auth_option IN ('m_', 'm_delete', 'm_edit', 'm_info', 'm_report'); - -# Queue Moderator (m_) -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 13, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'm_%' AND auth_option IN ('m_', 'm_approve', 'm_edit'); - -# Full Access (f_) -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 14, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%'; - -# Standard Access (f_) -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 15, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option NOT IN ('f_announce', 'f_flash', 'f_ignoreflood', 'f_poll', 'f_sticky', 'f_user_lock'); - -# No Access (f_) -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 16, auth_option_id, 0 FROM phpbb_acl_options WHERE auth_option = 'f_'; - -# Read Only Access (f_) -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 17, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option IN ('f_', 'f_download', 'f_list', 'f_read', 'f_search', 'f_subscribe', 'f_print'); - -# Limited Access (f_) -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 18, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option NOT IN ('f_announce', 'f_attach', 'f_bump', 'f_delete', 'f_flash', 'f_icons', 'f_ignoreflood', 'f_poll', 'f_sticky', 'f_user_lock', 'f_votechg'); - -# Bot Access (f_) -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 19, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option IN ('f_', 'f_download', 'f_list', 'f_read', 'f_print'); - -# On Moderation Queue (f_) -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 20, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option NOT IN ('f_announce', 'f_bump', 'f_delete', 'f_flash', 'f_icons', 'f_ignoreflood', 'f_poll', 'f_sticky', 'f_user_lock', 'f_votechg', 'f_noapprove'); -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 20, auth_option_id, 0 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option IN ('f_noapprove'); - -# Standard Access + Polls (f_) -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 21, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option NOT IN ('f_announce', 'f_flash', 'f_ignoreflood', 'f_sticky', 'f_user_lock'); - -# Limited Access + Polls (f_) -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 22, auth_option_id, 1 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option NOT IN ('f_announce', 'f_attach', 'f_bump', 'f_delete', 'f_flash', 'f_icons', 'f_ignoreflood', 'f_sticky', 'f_user_lock', 'f_votechg'); - -# New Member (u_) -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 23, auth_option_id, 0 FROM phpbb_acl_options WHERE auth_option LIKE 'u_%' AND auth_option IN ('u_sendpm', 'u_masspm', 'u_masspm_group'); - -# New Member (f_) -INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) SELECT 24, auth_option_id, 0 FROM phpbb_acl_options WHERE auth_option LIKE 'f_%' AND auth_option IN ('f_noapprove'); - - -# Permissions - -# GUESTS - u_download and u_search ability -INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) SELECT 1, 0, auth_option_id, 0, 1 FROM phpbb_acl_options WHERE auth_option IN ('u_', 'u_download', 'u_search'); - -# Admin user - full user features -INSERT INTO phpbb_acl_users (user_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2, 0, 0, 5, 0); - -# ADMINISTRATOR Group - full user features -INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5, 0, 0, 5, 0); - -# ADMINISTRATOR Group - standard admin -INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5, 0, 0, 1, 0); - -# REGISTERED and REGISTERED_COPPA having standard user features -INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2, 0, 0, 6, 0); -INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (3, 0, 0, 6, 0); - -# GLOBAL_MODERATORS having full user features -INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (4, 0, 0, 5, 0); - -# GLOBAL_MODERATORS having full global moderator access -INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (4, 0, 0, 10, 0); - -# Giving all groups read only access to the first category -# since administrators and moderators are already within the registered users group we do not need to set them here -INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1, 1, 0, 17, 0); -INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2, 1, 0, 17, 0); -INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (3, 1, 0, 17, 0); -INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (6, 1, 0, 17, 0); - -# Giving access to the first forum - -# guests having read only access -INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1, 2, 0, 17, 0); - -# registered and registered_coppa having standard access -INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2, 2, 0, 15, 0); -INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (3, 2, 0, 15, 0); - -# global moderators having standard access + polls -INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (4, 2, 0, 21, 0); - -# administrators having full forum and full moderator access -INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5, 2, 0, 14, 0); -INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5, 2, 0, 10, 0); - -# Bots having bot access -INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (6, 2, 0, 19, 0); - -# NEW MEMBERS aren't allowed to PM -INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (7, 0, 0, 23, 0); - -# NEW MEMBERS on the queue -INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (7, 2, 0, 24, 0); - - -# -- Demo Topic -INSERT INTO phpbb_topics (topic_title, topic_poster, topic_time, topic_views, topic_replies, topic_replies_real, forum_id, topic_status, topic_type, topic_first_post_id, topic_first_poster_name, topic_first_poster_colour, topic_last_post_id, topic_last_poster_id, topic_last_poster_name, topic_last_poster_colour, topic_last_post_subject, topic_last_post_time, topic_last_view_time, poll_title) VALUES ('{L_TOPICS_TOPIC_TITLE}', 2, 972086460, 0, 0, 0, 2, 0, 0, 1, 'Admin', 'AA0000', 1, 2, 'Admin', 'AA0000', '{L_TOPICS_TOPIC_TITLE}', 972086460, 972086460, ''); - -# -- Demo Post -INSERT INTO phpbb_posts (topic_id, forum_id, poster_id, icon_id, post_time, post_username, poster_ip, post_subject, post_text, post_checksum, bbcode_uid) VALUES (1, 2, 2, 0, 972086460, '', '127.0.0.1', '{L_TOPICS_TOPIC_TITLE}', '{L_DEFAULT_INSTALL_POST}', '5dd683b17f641daf84c040bfefc58ce9', ''); - -# -- Admin posted to the demo topic -INSERT INTO phpbb_topics_posted (user_id, topic_id, topic_posted) VALUES (2, 1, 1); - -# -- Smilies -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':D', 'icon_e_biggrin.gif', '{L_SMILIES_VERY_HAPPY}', 15, 17, 1); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':-D', 'icon_e_biggrin.gif', '{L_SMILIES_VERY_HAPPY}', 15, 17, 2); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':grin:', 'icon_e_biggrin.gif', '{L_SMILIES_VERY_HAPPY}', 15, 17, 3); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':)', 'icon_e_smile.gif', '{L_SMILIES_SMILE}', 15, 17, 4); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':-)', 'icon_e_smile.gif', '{L_SMILIES_SMILE}', 15, 17, 5); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':smile:', 'icon_e_smile.gif', '{L_SMILIES_SMILE}', 15, 17, 6); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (';)', 'icon_e_wink.gif', '{L_SMILIES_WINK}', 15, 17, 7); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (';-)', 'icon_e_wink.gif', '{L_SMILIES_WINK}', 15, 17, 8); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':wink:', 'icon_e_wink.gif', '{L_SMILIES_WINK}', 15, 17, 9); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':(', 'icon_e_sad.gif', '{L_SMILIES_SAD}', 15, 17, 10); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':-(', 'icon_e_sad.gif', '{L_SMILIES_SAD}', 15, 17, 11); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':sad:', 'icon_e_sad.gif', '{L_SMILIES_SAD}', 15, 17, 12); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':o', 'icon_e_surprised.gif', '{L_SMILIES_SURPRISED}', 15, 17, 13); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':-o', 'icon_e_surprised.gif', '{L_SMILIES_SURPRISED}', 15, 17, 14); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':eek:', 'icon_e_surprised.gif', '{L_SMILIES_SURPRISED}', 15, 17, 15); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':shock:', 'icon_eek.gif', '{L_SMILIES_SHOCKED}', 15, 17, 16); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':?', 'icon_e_confused.gif', '{L_SMILIES_CONFUSED}', 15, 17, 17); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':-?', 'icon_e_confused.gif', '{L_SMILIES_CONFUSED}', 15, 17, 18); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':???:', 'icon_e_confused.gif', '{L_SMILIES_CONFUSED}', 15, 17, 19); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES ('8-)', 'icon_cool.gif', '{L_SMILIES_COOL}', 15, 17, 20); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':cool:', 'icon_cool.gif', '{L_SMILIES_COOL}', 15, 17, 21); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':lol:', 'icon_lol.gif', '{L_SMILIES_LAUGHING}', 15, 17, 22); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':x', 'icon_mad.gif', '{L_SMILIES_MAD}', 15, 17, 23); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':-x', 'icon_mad.gif', '{L_SMILIES_MAD}', 15, 17, 24); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':mad:', 'icon_mad.gif', '{L_SMILIES_MAD}', 15, 17, 25); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':P', 'icon_razz.gif', '{L_SMILIES_RAZZ}', 15, 17, 26); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':-P', 'icon_razz.gif', '{L_SMILIES_RAZZ}', 15, 17, 27); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':razz:', 'icon_razz.gif', '{L_SMILIES_RAZZ}', 15, 17, 28); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':oops:', 'icon_redface.gif', '{L_SMILIES_EMARRASSED}', 15, 17, 29); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':cry:', 'icon_cry.gif', '{L_SMILIES_CRYING}', 15, 17, 30); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':evil:', 'icon_evil.gif', '{L_SMILIES_EVIL}', 15, 17, 31); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':twisted:', 'icon_twisted.gif', '{L_SMILIES_TWISTED_EVIL}', 15, 17, 32); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':roll:', 'icon_rolleyes.gif', '{L_SMILIES_ROLLING_EYES}', 15, 17, 33); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':!:', 'icon_exclaim.gif', '{L_SMILIES_EXCLAMATION}', 15, 17, 34); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':?:', 'icon_question.gif', '{L_SMILIES_QUESTION}', 15, 17, 35); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':idea:', 'icon_idea.gif', '{L_SMILIES_IDEA}', 15, 17, 36); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':arrow:', 'icon_arrow.gif', '{L_SMILIES_ARROW}', 15, 17, 37); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':|', 'icon_neutral.gif', '{L_SMILIES_NEUTRAL}', 15, 17, 38); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':-|', 'icon_neutral.gif', '{L_SMILIES_NEUTRAL}', 15, 17, 39); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':mrgreen:', 'icon_mrgreen.gif', '{L_SMILIES_MR_GREEN}', 15, 17, 40); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':geek:', 'icon_e_geek.gif', '{L_SMILIES_GEEK}', 17, 17, 41); -INSERT INTO phpbb_smilies (code, smiley_url, emotion, smiley_width, smiley_height, smiley_order) VALUES (':ugeek:', 'icon_e_ugeek.gif', '{L_SMILIES_UBER_GEEK}', 17, 18, 42); - -# -- icons -INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('misc/fire.gif', 16, 16, 1, 1); -INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('smile/redface.gif', 16, 16, 9, 1); -INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('smile/mrgreen.gif', 16, 16, 10, 1); -INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('misc/heart.gif', 16, 16, 4, 1); -INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('misc/star.gif', 16, 16, 2, 1); -INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('misc/radioactive.gif', 16, 16, 3, 1); -INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('misc/thinking.gif', 16, 16, 5, 1); -INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('smile/info.gif', 16, 16, 8, 1); -INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('smile/question.gif', 16, 16, 6, 1); -INSERT INTO phpbb_icons (icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES ('smile/alert.gif', 16, 16, 7, 1); - -# -- reasons -INSERT INTO phpbb_reports_reasons (reason_title, reason_description, reason_order) VALUES ('warez', '{L_REPORT_WAREZ}', 1); -INSERT INTO phpbb_reports_reasons (reason_title, reason_description, reason_order) VALUES ('spam', '{L_REPORT_SPAM}', 2); -INSERT INTO phpbb_reports_reasons (reason_title, reason_description, reason_order) VALUES ('off_topic', '{L_REPORT_OFF_TOPIC}', 3); -INSERT INTO phpbb_reports_reasons (reason_title, reason_description, reason_order) VALUES ('other', '{L_REPORT_OTHER}', 4); - -# -- extension_groups -INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('IMAGES', 1, 1, 1, '', 0, ''); -INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('ARCHIVES', 0, 1, 1, '', 0, ''); -INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('PLAIN_TEXT', 0, 0, 1, '', 0, ''); -INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('DOCUMENTS', 0, 0, 1, '', 0, ''); -INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('REAL_MEDIA', 3, 0, 1, '', 0, ''); -INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('WINDOWS_MEDIA', 2, 0, 1, '', 0, ''); -INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('FLASH_FILES', 5, 0, 1, '', 0, ''); -INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('QUICKTIME_MEDIA', 6, 0, 1, '', 0, ''); -INSERT INTO phpbb_extension_groups (group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums) VALUES ('DOWNLOADABLE_FILES', 0, 0, 1, '', 0, ''); - -# -- extensions -INSERT INTO phpbb_extensions (group_id, extension) VALUES (1, 'gif'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (1, 'png'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (1, 'jpeg'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (1, 'jpg'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (1, 'tif'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (1, 'tiff'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (1, 'tga'); - -INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'gtar'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'gz'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'tar'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'zip'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'rar'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'ace'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'torrent'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'tgz'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, 'bz2'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (2, '7z'); - -INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'txt'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'c'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'h'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'cpp'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'hpp'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'diz'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'csv'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'ini'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'log'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'js'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (3, 'xml'); - -INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'xls'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'xlsx'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'xlsm'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'xlsb'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'doc'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'docx'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'docm'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'dot'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'dotx'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'dotm'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'pdf'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'ai'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'ps'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'ppt'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'pptx'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'pptm'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'odg'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'odp'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'ods'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'odt'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (4, 'rtf'); - -INSERT INTO phpbb_extensions (group_id, extension) VALUES (5, 'rm'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (5, 'ram'); - -INSERT INTO phpbb_extensions (group_id, extension) VALUES (6, 'wma'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (6, 'wmv'); - -INSERT INTO phpbb_extensions (group_id, extension) VALUES (7, 'swf'); - -INSERT INTO phpbb_extensions (group_id, extension) VALUES (8, 'mov'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (8, 'm4v'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (8, 'm4a'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (8, 'mp4'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (8, '3gp'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (8, '3g2'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (8, 'qt'); - -INSERT INTO phpbb_extensions (group_id, extension) VALUES (9, 'mpeg'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (9, 'mpg'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (9, 'mp3'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (9, 'ogg'); -INSERT INTO phpbb_extensions (group_id, extension) VALUES (9, 'ogm'); - -# POSTGRES COMMIT # +INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1,0,85,0,1); +INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1,0,93,0,1); +INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1,0,110,0,1); +INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5,0,0,5,0); +INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5,0,0,1,0); +INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2,0,0,6,0); +INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (3,0,0,6,0); +INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (4,0,0,5,0); +INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (4,0,0,10,0); +INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1,1,0,17,0); +INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2,1,0,17,0); +INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (3,1,0,17,0); +INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (6,1,0,17,0); +INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1,2,0,17,0); +INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2,2,0,15,0); +INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (3,2,0,15,0); +INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (4,2,0,21,0); +INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5,2,0,14,0); +INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5,2,0,10,0); +INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (6,2,0,19,0); +INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (7,0,0,23,0); +INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (7,1,0,24,0); +INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (7,2,0,24,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (1,'f_',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (2,'f_announce',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (3,'f_attach',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (4,'f_bbcode',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (5,'f_bump',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (6,'f_delete',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (7,'f_download',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (8,'f_edit',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (9,'f_email',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (10,'f_flash',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (11,'f_icons',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (12,'f_ignoreflood',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (13,'f_img',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (14,'f_list',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (15,'f_noapprove',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (16,'f_poll',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (17,'f_post',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (18,'f_postcount',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (19,'f_print',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (20,'f_read',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (21,'f_reply',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (22,'f_report',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (23,'f_search',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (24,'f_sigs',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (25,'f_smilies',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (26,'f_sticky',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (27,'f_subscribe',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (28,'f_user_lock',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (29,'f_vote',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (30,'f_votechg',0,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (31,'m_',1,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (32,'m_approve',1,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (33,'m_chgposter',1,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (34,'m_delete',1,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (35,'m_edit',1,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (36,'m_info',1,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (37,'m_lock',1,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (38,'m_merge',1,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (39,'m_move',1,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (40,'m_report',1,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (41,'m_split',1,1,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (42,'m_ban',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (43,'m_warn',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (44,'a_',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (45,'a_aauth',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (46,'a_attach',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (47,'a_authgroups',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (48,'a_authusers',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (49,'a_backup',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (50,'a_ban',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (51,'a_bbcode',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (52,'a_board',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (53,'a_bots',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (54,'a_clearlogs',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (55,'a_email',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (56,'a_fauth',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (57,'a_forum',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (58,'a_forumadd',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (59,'a_forumdel',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (60,'a_group',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (61,'a_groupadd',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (62,'a_groupdel',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (63,'a_icons',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (64,'a_jabber',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (65,'a_language',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (66,'a_mauth',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (67,'a_modules',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (68,'a_names',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (69,'a_phpinfo',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (70,'a_profile',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (71,'a_prune',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (72,'a_ranks',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (73,'a_reasons',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (74,'a_roles',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (75,'a_search',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (76,'a_server',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (77,'a_styles',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (78,'a_switchperm',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (79,'a_uauth',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (80,'a_user',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (81,'a_userdel',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (82,'a_viewauth',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (83,'a_viewlogs',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (84,'a_words',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (85,'u_',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (86,'u_attach',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (87,'u_chgavatar',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (88,'u_chgcensors',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (89,'u_chgemail',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (90,'u_chggrp',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (91,'u_chgname',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (92,'u_chgpasswd',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (93,'u_download',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (94,'u_hideonline',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (95,'u_ignoreflood',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (96,'u_masspm',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (97,'u_pm_attach',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (98,'u_pm_bbcode',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (99,'u_pm_delete',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (100,'u_pm_download',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (101,'u_pm_edit',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (102,'u_pm_emailpm',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (103,'u_pm_flash',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (104,'u_pm_forward',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (105,'u_pm_img',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (106,'u_pm_printpm',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (107,'u_pm_smilies',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (108,'u_readpm',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (109,'u_savedrafts',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (110,'u_search',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (111,'u_sendemail',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (112,'u_sendim',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (113,'u_sendpm',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (114,'u_sig',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (115,'u_viewonline',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (116,'u_viewprofile',1,0,0); +INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (117,'u_masspm_group',1,0,0); +INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (1,'ROLE_ADMIN_STANDARD','ROLE_DESCRIPTION_ADMIN_STANDARD','a_',1); +INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (2,'ROLE_ADMIN_FORUM','ROLE_DESCRIPTION_ADMIN_FORUM','a_',3); +INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (3,'ROLE_ADMIN_USERGROUP','ROLE_DESCRIPTION_ADMIN_USERGROUP','a_',4); +INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (4,'ROLE_ADMIN_FULL','ROLE_DESCRIPTION_ADMIN_FULL','a_',2); +INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (5,'ROLE_USER_FULL','ROLE_DESCRIPTION_USER_FULL','u_',3); +INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (6,'ROLE_USER_STANDARD','ROLE_DESCRIPTION_USER_STANDARD','u_',1); +INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (7,'ROLE_USER_LIMITED','ROLE_DESCRIPTION_USER_LIMITED','u_',2); +INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (8,'ROLE_USER_NOPM','ROLE_DESCRIPTION_USER_NOPM','u_',4); +INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (9,'ROLE_USER_NOAVATAR','ROLE_DESCRIPTION_USER_NOAVATAR','u_',5); +INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (10,'ROLE_MOD_FULL','ROLE_DESCRIPTION_MOD_FULL','m_',3); +INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (11,'ROLE_MOD_STANDARD','ROLE_DESCRIPTION_MOD_STANDARD','m_',1); +INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (12,'ROLE_MOD_SIMPLE','ROLE_DESCRIPTION_MOD_SIMPLE','m_',2); +INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (13,'ROLE_MOD_QUEUE','ROLE_DESCRIPTION_MOD_QUEUE','m_',4); +INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (14,'ROLE_FORUM_FULL','ROLE_DESCRIPTION_FORUM_FULL','f_',7); +INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (15,'ROLE_FORUM_STANDARD','ROLE_DESCRIPTION_FORUM_STANDARD','f_',5); +INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (16,'ROLE_FORUM_NOACCESS','ROLE_DESCRIPTION_FORUM_NOACCESS','f_',1); +INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (17,'ROLE_FORUM_READONLY','ROLE_DESCRIPTION_FORUM_READONLY','f_',2); +INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (18,'ROLE_FORUM_LIMITED','ROLE_DESCRIPTION_FORUM_LIMITED','f_',3); +INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (19,'ROLE_FORUM_BOT','ROLE_DESCRIPTION_FORUM_BOT','f_',9); +INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (20,'ROLE_FORUM_ONQUEUE','ROLE_DESCRIPTION_FORUM_ONQUEUE','f_',8); +INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (21,'ROLE_FORUM_POLLS','ROLE_DESCRIPTION_FORUM_POLLS','f_',6); +INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (22,'ROLE_FORUM_LIMITED_POLLS','ROLE_DESCRIPTION_FORUM_LIMITED_POLLS','f_',4); +INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (23,'ROLE_USER_NEW_MEMBER','ROLE_DESCRIPTION_USER_NEW_MEMBER','u_',6); +INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (24,'ROLE_FORUM_NEW_MEMBER','ROLE_DESCRIPTION_FORUM_NEW_MEMBER','f_',10); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,44,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,46,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,47,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,48,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,50,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,51,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,52,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,56,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,57,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,58,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,59,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,60,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,61,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,62,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,63,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,66,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,68,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,70,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,71,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,72,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,73,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,79,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,80,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,81,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,82,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,83,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,84,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,44,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,47,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,48,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,56,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,57,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,58,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,59,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,66,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,71,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,79,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,82,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,83,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,44,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,47,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,48,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,50,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,60,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,61,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,62,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,72,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,79,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,80,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,82,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,83,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,44,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,45,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,46,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,47,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,48,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,49,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,50,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,51,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,52,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,53,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,54,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,55,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,56,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,57,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,58,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,59,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,60,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,61,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,62,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,63,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,64,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,65,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,66,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,67,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,68,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,69,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,70,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,71,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,72,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,73,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,74,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,75,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,76,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,77,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,78,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,79,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,80,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,81,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,82,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,83,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,84,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,85,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,86,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,87,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,88,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,89,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,90,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,91,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,92,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,93,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,94,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,95,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,96,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,97,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,98,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,99,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,100,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,101,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,102,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,103,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,104,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,105,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,106,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,107,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,108,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,109,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,110,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,111,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,112,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,113,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,114,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,115,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,116,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,117,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,85,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,86,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,87,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,88,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,89,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,92,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,93,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,94,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,96,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,97,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,98,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,99,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,100,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,101,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,102,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,105,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,106,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,107,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,108,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,109,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,110,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,111,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,112,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,113,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,114,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,116,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,117,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,85,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,87,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,88,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,89,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,92,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,93,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,94,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,96,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,98,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,99,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,100,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,101,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,104,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,105,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,106,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,107,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,108,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,113,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,114,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,116,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,117,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,85,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,87,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,88,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,89,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,92,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,93,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,94,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,96,0); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,108,0); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,113,0); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,114,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,116,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,117,0); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,85,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,87,0); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,88,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,89,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,92,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,93,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,94,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,96,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,98,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,99,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,100,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,101,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,104,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,105,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,106,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,107,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,108,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,113,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,114,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,116,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,117,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,31,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,32,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,33,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,34,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,35,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,36,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,37,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,38,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,39,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,40,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,41,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,42,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,43,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,31,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,32,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,34,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,35,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,36,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,37,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,38,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,39,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,40,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,41,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,43,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (12,31,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (12,34,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (12,35,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (12,36,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (12,40,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (13,31,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (13,32,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (13,35,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,1,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,2,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,3,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,4,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,5,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,6,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,7,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,8,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,9,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,10,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,11,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,12,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,13,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,14,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,15,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,16,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,17,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,18,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,19,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,20,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,21,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,22,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,23,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,24,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,25,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,26,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,27,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,28,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,29,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,30,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,1,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,3,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,4,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,5,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,6,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,7,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,8,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,9,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,11,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,13,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,14,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,15,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,17,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,18,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,19,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,20,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,21,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,22,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,23,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,24,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,25,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,27,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,29,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,30,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (16,1,0); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,1,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,7,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,14,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,19,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,20,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,23,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,27,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,1,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,4,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,7,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,8,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,9,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,13,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,14,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,15,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,17,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,18,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,19,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,20,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,21,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,22,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,23,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,24,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,25,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,27,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,29,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (19,1,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (19,7,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (19,14,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (19,19,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (19,20,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,1,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,3,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,4,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,7,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,8,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,9,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,13,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,14,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,15,0); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,17,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,18,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,19,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,20,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,21,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,22,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,23,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,24,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,25,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,27,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,29,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,1,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,3,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,4,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,5,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,6,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,7,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,8,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,9,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,11,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,13,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,14,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,15,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,16,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,17,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,18,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,19,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,20,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,21,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,22,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,23,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,24,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,25,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,27,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,29,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,30,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,1,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,4,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,7,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,8,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,9,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,13,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,14,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,15,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,16,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,17,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,18,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,19,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,20,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,21,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,22,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,23,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,24,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,25,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,27,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,29,1); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (23,96,0); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (23,113,0); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (23,117,0); +INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (24,15,0); +INSERT INTO phpbb_acl_users (user_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2,0,0,5,0); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (1,1,'AdsBot [Google]',3,'AdsBot-Google',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (2,1,'Alexa [Bot]',4,'ia_archiver',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (3,1,'Alta Vista [Bot]',5,'Scooter/',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (4,1,'Ask Jeeves [Bot]',6,'Ask Jeeves',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (5,1,'Baidu [Spider]',7,'Baiduspider',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (6,1,'Exabot [Bot]',8,'Exabot',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (7,1,'FAST Enterprise [Crawler]',9,'FAST Enterprise Crawler',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (8,1,'FAST WebCrawler [Crawler]',10,'FAST-WebCrawler/',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (9,1,'Francis [Bot]',11,'http://www.neomo.de/',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (10,1,'Gigabot [Bot]',12,'Gigabot/',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (11,1,'Google Adsense [Bot]',13,'Mediapartners-Google/',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (12,1,'Google Desktop',14,'Google Desktop',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (13,1,'Google Feedfetcher',15,'Feedfetcher-Google',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (14,1,'Google [Bot]',16,'Googlebot',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (15,1,'Heise IT-Markt [Crawler]',17,'heise-IT-Markt-Crawler',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (16,1,'Heritrix [Crawler]',18,'heritrix/1.',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (17,1,'IBM Research [Bot]',19,'ibm.com/cs/crawler',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (18,1,'ICCrawler - ICjobs',20,'ICCrawler - ICjobs',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (19,1,'ichiro [Crawler]',21,'ichiro/',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (20,1,'Majestic-12 [Bot]',22,'MJ12bot/',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (21,1,'Metager [Bot]',23,'MetagerBot/',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (22,1,'MSN NewsBlogs',24,'msnbot-NewsBlogs/',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (23,1,'MSN [Bot]',25,'msnbot/',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (24,1,'MSNbot Media',26,'msnbot-media/',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (26,1,'Nutch [Bot]',28,'http://lucene.apache.org/nutch/',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (29,1,'Online link [Validator]',31,'online link validator',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (30,1,'psbot [Picsearch]',32,'psbot/0',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (32,1,'Sensis [Crawler]',34,'Sensis Web Crawler',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (33,1,'SEO Crawler',35,'SEO search Crawler/',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (34,1,'Seoma [Crawler]',36,'Seoma [SEO Crawler]',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (35,1,'SEOSearch [Crawler]',37,'SEOsearch/',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (36,1,'Snappy [Bot]',38,'Snappy/1.1 ( http://www.urltrends.com/ )',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (37,1,'Steeler [Crawler]',39,'http://www.tkl.iis.u-tokyo.ac.jp/~crawler/',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (39,1,'Telekom [Bot]',41,'crawleradmin.t-info@telekom.de',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (40,1,'TurnitinBot [Bot]',42,'TurnitinBot/',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (41,1,'Voyager [Bot]',43,'voyager/',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (42,1,'W3 [Sitesearch]',44,'W3 SiteSearch Crawler',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (43,1,'W3C [Linkcheck]',45,'W3C-checklink/',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (44,1,'W3C [Validator]',46,'W3C_Validator',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (46,1,'Yacy [Bot]',48,'yacybot',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (47,1,'Yahoo MMCrawler [Bot]',49,'Yahoo-MMCrawler/',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (48,1,'Yahoo Slurp [Bot]',50,'Yahoo! DE Slurp',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (49,1,'Yahoo [Bot]',51,'Yahoo! Slurp',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (50,1,'YahooSeeker [Bot]',52,'YahooSeeker/',''); +INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (51,1,'Bing [Bot]',53,'bingbot/',''); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('active_sessions','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_attachments','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_autologin','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_avatar','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_avatar_local','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_avatar_remote','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_avatar_remote_upload','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_avatar_upload','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_bbcode','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_birthdays','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_bookmarks','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_emailreuse','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_forum_notify','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_mass_pm','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_name_chars','USERNAME_CHARS_ANY',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_namechange','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_nocensors','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_pm_attach','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_pm_report','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_post_flash','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_post_links','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_privmsg','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_quick_reply','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig_bbcode','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig_flash','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig_img','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig_links','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig_pm','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig_smilies','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_smilies','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_topic_notify','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('attachment_quota','52428800',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('auth_bbcode_pm','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('auth_flash_pm','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('auth_img_pm','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('auth_method','db',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('auth_smilies_pm','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_filesize','6144',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_gallery_path','images/avatars/gallery',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_max_height','90',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_max_width','90',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_min_height','20',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_min_width','20',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_path','images/avatars/upload',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_salt','phpbb_avatar',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_contact','',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_disable','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_disable_msg','',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_dst','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_email','',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_email_form','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_email_sig','Thanks, The Management',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_hide_emails','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_startdate','1268943869',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_timezone','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('browser_check','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('bump_interval','10',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('bump_type','d',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cache_gc','7200',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cache_last_gc','0',1); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd_3d_noise','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd_fonts','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd_foreground_noise','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd_wave','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd_x_grid','@DEB_CAPTCHA_X_RAND@',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd_y_grid','@DEB_CAPTCHA_Y_RAND@',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_plugin','phpbb_captcha_gd',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('check_attachment_content','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('check_dnsbl','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('chg_passforce','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('confirm_refresh','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cookie_domain','',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cookie_name','phpbb3',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cookie_path','/',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cookie_secure','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('coppa_enable','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('coppa_fax','',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('coppa_mail','',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cron_lock','0',1); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('database_gc','604800',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('database_last_gc','0',1); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('dbms_version','5.5.33-1-log',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('default_dateformat','D M d, Y g:i a',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('default_lang','en',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('default_style','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('delete_time','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('display_last_edited','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('display_order','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('edit_time','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('email_check_mx','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('email_enable','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('email_function_name','mail',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('email_package_size','20',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('enable_confirm','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('enable_pm_icons','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('enable_post_confirm','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('enable_queue_trigger','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_enable','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_forum','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_http_auth','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_item_statistics','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_limit','10',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_limit_post','10',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_limit_topic','15',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_overall','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_overall_forums','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_overall_forums_limit','15',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_overall_topics','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_overall_topics_limit','15',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_topic','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_topics_active','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_topics_new','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('flood_interval','15',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('force_server_vars','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('form_token_lifetime','7200',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('form_token_mintime','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('form_token_sid_guests','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('forward_pm','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('forwarded_for_check','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('full_folder_action','2',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('fulltext_mysql_max_word_len','254',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('fulltext_mysql_min_word_len','4',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('fulltext_native_common_thres','5',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('fulltext_native_load_upd','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('fulltext_native_max_chars','14',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('fulltext_native_min_chars','3',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('gzip_compress','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('hot_threshold','25',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('icons_path','images/icons',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_create_thumbnail','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_display_inlined','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_imagick','',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_link_height','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_link_width','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_max_height','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_max_thumb_width','400',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_max_width','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_min_thumb_filesize','12000',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ip_check','3',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ip_login_limit_max','50',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ip_login_limit_time','21600',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ip_login_limit_use_forwarded','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_enable','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_host','',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_package_size','20',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_password','',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_port','5222',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_use_ssl','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_username','',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('last_queue_run','0',1); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_base_dn','',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_email','',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_password','',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_port','',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_server','',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_uid','',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_user','',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_user_filter','',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('limit_load','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('limit_search_load','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_anon_lastread','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_birthdays','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_cpf_memberlist','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_cpf_viewprofile','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_cpf_viewtopic','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_db_lastread','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_db_track','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_jumpbox','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_moderators','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_online','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_online_guests','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_online_time','5',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_onlinetrack','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_search','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_tplcompile','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_unreads_search','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_user_activity','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_attachments','3',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_attachments_pm','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_autologin_time','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_filesize','262144',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_filesize_pm','262144',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_login_attempts','3',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_name_chars','20',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_num_search_keywords','10',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_pass_chars','30',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_poll_options','10',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_post_chars','60000',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_post_font_size','200',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_post_img_height','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_post_img_width','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_post_smilies','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_post_urls','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_quote_depth','3',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_reg_attempts','5',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_sig_chars','255',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_sig_font_size','200',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_sig_img_height','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_sig_img_width','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_sig_smilies','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_sig_urls','5',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('mime_triggers','body|head|html|img|plaintext|a href|pre|script|table|title',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('min_name_chars','3',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('min_pass_chars','6',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('min_post_chars','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('min_search_author_chars','3',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('new_member_group_default','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('new_member_post_limit','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('newest_user_colour','AA0000',1); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('newest_user_id','2',1); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('newest_username','',1); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_files','0',1); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_posts','1',1); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_topics','1',1); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_users','1',1); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('override_user_style','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('pass_complex','PASS_TYPE_ANY',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('pm_edit_time','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('pm_max_boxes','4',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('pm_max_msgs','50',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('pm_max_recipients','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('posts_per_page','10',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('print_pm','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('queue_interval','60',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('queue_trigger_posts','3',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('rand_seed','0',1); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('rand_seed_last_update','0',1); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ranks_path','images/ranks',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('record_online_date','0',1); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('record_online_users','0',1); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('referer_validation','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('require_activation','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('script_path','/phpbb',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_anonymous_interval','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_block_size','250',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_gc','7200',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_indexing_state','',1); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_interval','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_last_gc','0',1); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_store_results','1800',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_type','fulltext_native',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('secure_allow_deny','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('secure_allow_empty_referer','1',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('secure_downloads','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('server_name','',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('server_port','',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('server_protocol','',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('session_gc','3600',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('session_last_gc','0',1); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('session_length','3600',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('site_desc','Powered by Debian',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('sitename','Your new phpBB board',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smilies_path','images/smilies',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smilies_per_page','50',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_auth_method','PLAIN',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_delivery','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_host','',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_password','',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_port','25',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_username','',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('topics_per_page','25',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('tpl_allow_php','0',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('upload_dir_size','0',1); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('upload_icons_path','images/upload_icons',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('upload_path','files',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('version','3.0.12',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('warnings_expire_days','90',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('warnings_gc','14400',0); +INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('warnings_last_gc','0',1); +INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (1,'IMAGES',1,1,1,'',0,'',0); +INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (2,'ARCHIVES',0,1,1,'',0,'',0); +INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (3,'PLAIN_TEXT',0,0,1,'',0,'',0); +INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (4,'DOCUMENTS',0,0,1,'',0,'',0); +INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (5,'REAL_MEDIA',3,0,1,'',0,'',0); +INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (6,'WINDOWS_MEDIA',2,0,1,'',0,'',0); +INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (7,'FLASH_FILES',5,0,1,'',0,'',0); +INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (8,'QUICKTIME_MEDIA',6,0,1,'',0,'',0); +INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (9,'DOWNLOADABLE_FILES',0,0,1,'',0,'',0); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (1,1,'gif'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (2,1,'png'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (3,1,'jpeg'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (4,1,'jpg'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (5,1,'tif'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (6,1,'tiff'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (7,1,'tga'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (8,2,'gtar'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (9,2,'gz'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (10,2,'tar'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (11,2,'zip'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (12,2,'rar'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (13,2,'ace'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (14,2,'torrent'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (15,2,'tgz'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (16,2,'bz2'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (17,2,'7z'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (18,3,'txt'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (19,3,'c'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (20,3,'h'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (21,3,'cpp'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (22,3,'hpp'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (23,3,'diz'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (24,3,'csv'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (25,3,'ini'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (26,3,'log'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (27,3,'js'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (28,3,'xml'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (29,4,'xls'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (30,4,'xlsx'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (31,4,'xlsm'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (32,4,'xlsb'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (33,4,'doc'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (34,4,'docx'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (35,4,'docm'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (36,4,'dot'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (37,4,'dotx'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (38,4,'dotm'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (39,4,'pdf'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (40,4,'ai'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (41,4,'ps'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (42,4,'ppt'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (43,4,'pptx'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (44,4,'pptm'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (45,4,'odg'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (46,4,'odp'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (47,4,'ods'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (48,4,'odt'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (49,4,'rtf'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (50,5,'rm'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (51,5,'ram'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (52,6,'wma'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (53,6,'wmv'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (54,7,'swf'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (55,8,'mov'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (56,8,'m4v'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (57,8,'m4a'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (58,8,'mp4'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (59,8,'3gp'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (60,8,'3g2'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (61,8,'qt'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (62,9,'mpeg'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (63,9,'mpg'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (64,9,'mp3'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (65,9,'ogg'); +INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (66,9,'ogm'); +INSERT INTO phpbb_forums (forum_id, parent_id, left_id, right_id, forum_parents, forum_name, forum_desc, forum_desc_bitfield, forum_desc_options, forum_desc_uid, forum_link, forum_password, forum_style, forum_image, forum_rules, forum_rules_link, forum_rules_bitfield, forum_rules_options, forum_rules_uid, forum_topics_per_page, forum_type, forum_status, forum_posts, forum_topics, forum_topics_real, forum_last_post_id, forum_last_poster_id, forum_last_post_subject, forum_last_post_time, forum_last_poster_name, forum_last_poster_colour, forum_flags, forum_options, display_subforum_list, display_on_index, enable_indexing, enable_icons, enable_prune, prune_next, prune_days, prune_viewed, prune_freq) VALUES (1,0,1,4,'','Example Category','','',7,'','','',0,'','','','',7,'',0,0,0,1,1,1,1,2,'',972086460,'Admin','AA0000',32,0,1,1,1,1,0,0,0,0,0); +INSERT INTO phpbb_forums (forum_id, parent_id, left_id, right_id, forum_parents, forum_name, forum_desc, forum_desc_bitfield, forum_desc_options, forum_desc_uid, forum_link, forum_password, forum_style, forum_image, forum_rules, forum_rules_link, forum_rules_bitfield, forum_rules_options, forum_rules_uid, forum_topics_per_page, forum_type, forum_status, forum_posts, forum_topics, forum_topics_real, forum_last_post_id, forum_last_poster_id, forum_last_post_subject, forum_last_post_time, forum_last_poster_name, forum_last_poster_colour, forum_flags, forum_options, display_subforum_list, display_on_index, enable_indexing, enable_icons, enable_prune, prune_next, prune_days, prune_viewed, prune_freq) VALUES (2,1,2,3,'','Example Forum','This forum serves as an example','',7,'','','',0,'','','','',7,'',0,1,0,1,1,1,1,2,'Test Topic',972086460,'Admin','AA0000',32,0,1,1,1,1,0,0,0,0,0); +INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (1,3,0,0,'GUESTS','','',7,'',0,'',0,0,0,0,'',0,0,0,5,0); +INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (2,3,0,0,'REGISTERED','','',7,'',0,'',0,0,0,0,'',0,0,0,5,0); +INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (3,3,0,0,'REGISTERED_COPPA','','',7,'',0,'',0,0,0,0,'',0,0,0,5,0); +INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (4,3,0,0,'GLOBAL_MODERATORS','','',7,'',0,'',0,0,0,0,'00AA00',0,0,0,0,1); +INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (5,3,1,0,'ADMINISTRATORS','','',7,'',0,'',0,0,0,0,'AA0000',0,0,0,0,1); +INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (6,3,0,0,'BOTS','','',7,'',0,'',0,0,0,0,'9E8DA7',0,0,0,5,0); +INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (7,3,0,0,'NEWLY_REGISTERED','','',7,'',0,'',0,0,0,0,'',0,0,0,5,0); +INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (1,'misc/fire.gif',16,16,1,1); +INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (2,'smile/redface.gif',16,16,9,1); +INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (3,'smile/mrgreen.gif',16,16,10,1); +INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (4,'misc/heart.gif',16,16,4,1); +INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (5,'misc/star.gif',16,16,2,1); +INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (6,'misc/radioactive.gif',16,16,3,1); +INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (7,'misc/thinking.gif',16,16,5,1); +INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (8,'smile/info.gif',16,16,8,1); +INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (9,'smile/question.gif',16,16,6,1); +INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (10,'smile/alert.gif',16,16,7,1); +INSERT INTO phpbb_lang (lang_id, lang_iso, lang_dir, lang_english_name, lang_local_name, lang_author) VALUES (1,'en','en','English [GB]','English [GB]','phpBB Group'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (1,1,1,'','acp',0,1,64,'ACP_CAT_GENERAL','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (2,1,1,'','acp',1,4,17,'ACP_QUICK_ACCESS','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (3,1,1,'','acp',1,18,41,'ACP_BOARD_CONFIGURATION','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (4,1,1,'','acp',1,42,49,'ACP_CLIENT_COMMUNICATION','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (5,1,1,'','acp',1,50,63,'ACP_SERVER_CONFIGURATION','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (6,1,1,'','acp',0,65,84,'ACP_CAT_FORUMS','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (7,1,1,'','acp',6,66,71,'ACP_MANAGE_FORUMS','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (8,1,1,'','acp',6,72,83,'ACP_FORUM_BASED_PERMISSIONS','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (9,1,1,'','acp',0,85,110,'ACP_CAT_POSTING','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (10,1,1,'','acp',9,86,99,'ACP_MESSAGES','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (11,1,1,'','acp',9,100,109,'ACP_ATTACHMENTS','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (12,1,1,'','acp',0,111,166,'ACP_CAT_USERGROUP','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (13,1,1,'','acp',12,112,145,'ACP_CAT_USERS','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (14,1,1,'','acp',12,146,153,'ACP_GROUPS','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (15,1,1,'','acp',12,154,165,'ACP_USER_SECURITY','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (16,1,1,'','acp',0,167,216,'ACP_CAT_PERMISSIONS','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (17,1,1,'','acp',16,170,179,'ACP_GLOBAL_PERMISSIONS','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (18,1,1,'','acp',16,180,191,'ACP_FORUM_BASED_PERMISSIONS','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (19,1,1,'','acp',16,192,201,'ACP_PERMISSION_ROLES','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (20,1,1,'','acp',16,202,215,'ACP_PERMISSION_MASKS','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (21,1,1,'','acp',0,217,230,'ACP_CAT_STYLES','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (22,1,1,'','acp',21,218,221,'ACP_STYLE_MANAGEMENT','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (23,1,1,'','acp',21,222,229,'ACP_STYLE_COMPONENTS','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (24,1,1,'','acp',0,231,250,'ACP_CAT_MAINTENANCE','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (25,1,1,'','acp',24,232,241,'ACP_FORUM_LOGS','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (26,1,1,'','acp',24,242,249,'ACP_CAT_DATABASE','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (27,1,1,'','acp',0,251,276,'ACP_CAT_SYSTEM','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (28,1,1,'','acp',27,252,255,'ACP_AUTOMATION','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (29,1,1,'','acp',27,256,267,'ACP_GENERAL_TASKS','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (30,1,1,'','acp',27,268,275,'ACP_MODULE_MANAGEMENT','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (31,1,1,'','acp',0,277,278,'ACP_CAT_DOT_MODS','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (32,1,1,'attachments','acp',3,19,20,'ACP_ATTACHMENT_SETTINGS','attach','acl_a_attach'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (33,1,1,'attachments','acp',11,101,102,'ACP_ATTACHMENT_SETTINGS','attach','acl_a_attach'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (34,1,1,'attachments','acp',11,103,104,'ACP_MANAGE_EXTENSIONS','extensions','acl_a_attach'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (35,1,1,'attachments','acp',11,105,106,'ACP_EXTENSION_GROUPS','ext_groups','acl_a_attach'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (36,1,1,'attachments','acp',11,107,108,'ACP_ORPHAN_ATTACHMENTS','orphan','acl_a_attach'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (37,1,1,'ban','acp',15,155,156,'ACP_BAN_EMAILS','email','acl_a_ban'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (38,1,1,'ban','acp',15,157,158,'ACP_BAN_IPS','ip','acl_a_ban'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (39,1,1,'ban','acp',15,159,160,'ACP_BAN_USERNAMES','user','acl_a_ban'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (40,1,1,'bbcodes','acp',10,87,88,'ACP_BBCODES','bbcodes','acl_a_bbcode'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (41,1,1,'board','acp',3,21,22,'ACP_BOARD_SETTINGS','settings','acl_a_board'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (42,1,1,'board','acp',3,23,24,'ACP_BOARD_FEATURES','features','acl_a_board'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (43,1,1,'board','acp',3,25,26,'ACP_AVATAR_SETTINGS','avatar','acl_a_board'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (44,1,1,'board','acp',3,27,28,'ACP_MESSAGE_SETTINGS','message','acl_a_board'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (45,1,1,'board','acp',10,89,90,'ACP_MESSAGE_SETTINGS','message','acl_a_board'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (46,1,1,'board','acp',3,29,30,'ACP_POST_SETTINGS','post','acl_a_board'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (47,1,1,'board','acp',3,31,32,'ACP_SIGNATURE_SETTINGS','signature','acl_a_board'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (48,1,1,'board','acp',3,33,34,'ACP_REGISTER_SETTINGS','registration','acl_a_board'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (49,1,1,'board','acp',4,43,44,'ACP_AUTH_SETTINGS','auth','acl_a_server'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (50,1,1,'board','acp',4,45,46,'ACP_EMAIL_SETTINGS','email','acl_a_server'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (51,1,1,'board','acp',5,51,52,'ACP_COOKIE_SETTINGS','cookie','acl_a_server'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (52,1,1,'board','acp',5,53,54,'ACP_SERVER_SETTINGS','server','acl_a_server'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (53,1,1,'board','acp',5,55,56,'ACP_SECURITY_SETTINGS','security','acl_a_server'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (54,1,1,'board','acp',5,57,58,'ACP_LOAD_SETTINGS','load','acl_a_server'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (55,1,1,'bots','acp',29,257,258,'ACP_BOTS','bots','acl_a_bots'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (56,1,1,'captcha','acp',3,35,36,'ACP_VC_SETTINGS','visual','acl_a_board'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (57,1,0,'captcha','acp',3,37,38,'ACP_VC_CAPTCHA_DISPLAY','img','acl_a_board'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (58,1,1,'database','acp',26,243,244,'ACP_BACKUP','backup','acl_a_backup'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (59,1,1,'database','acp',26,245,246,'ACP_RESTORE','restore','acl_a_backup'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (60,1,1,'disallow','acp',15,161,162,'ACP_DISALLOW_USERNAMES','usernames','acl_a_names'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (61,1,1,'email','acp',29,259,260,'ACP_MASS_EMAIL','email','acl_a_email && cfg_email_enable'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (62,1,1,'forums','acp',7,67,68,'ACP_MANAGE_FORUMS','manage','acl_a_forum'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (63,1,1,'groups','acp',14,147,148,'ACP_GROUPS_MANAGE','manage','acl_a_group'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (64,1,1,'icons','acp',10,93,94,'ACP_ICONS','icons','acl_a_icons'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (65,1,1,'icons','acp',10,95,96,'ACP_SMILIES','smilies','acl_a_icons'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (66,1,1,'inactive','acp',13,115,116,'ACP_INACTIVE_USERS','list','acl_a_user'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (67,1,1,'jabber','acp',4,47,48,'ACP_JABBER_SETTINGS','settings','acl_a_jabber'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (68,1,1,'language','acp',29,261,262,'ACP_LANGUAGE_PACKS','lang_packs','acl_a_language'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (69,1,1,'logs','acp',25,233,234,'ACP_ADMIN_LOGS','admin','acl_a_viewlogs'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (70,1,1,'logs','acp',25,235,236,'ACP_MOD_LOGS','mod','acl_a_viewlogs'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (71,1,1,'logs','acp',25,237,238,'ACP_USERS_LOGS','users','acl_a_viewlogs'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (72,1,1,'logs','acp',25,239,240,'ACP_CRITICAL_LOGS','critical','acl_a_viewlogs'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (73,1,1,'main','acp',1,2,3,'ACP_INDEX','main',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (74,1,1,'modules','acp',30,269,270,'ACP','acp','acl_a_modules'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (75,1,1,'modules','acp',30,271,272,'UCP','ucp','acl_a_modules'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (76,1,1,'modules','acp',30,273,274,'MCP','mcp','acl_a_modules'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (77,1,1,'permission_roles','acp',19,193,194,'ACP_ADMIN_ROLES','admin_roles','acl_a_roles && acl_a_aauth'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (78,1,1,'permission_roles','acp',19,195,196,'ACP_USER_ROLES','user_roles','acl_a_roles && acl_a_uauth'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (79,1,1,'permission_roles','acp',19,197,198,'ACP_MOD_ROLES','mod_roles','acl_a_roles && acl_a_mauth'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (80,1,1,'permission_roles','acp',19,199,200,'ACP_FORUM_ROLES','forum_roles','acl_a_roles && acl_a_fauth'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (81,1,1,'permissions','acp',16,168,169,'ACP_PERMISSIONS','intro','acl_a_authusers || acl_a_authgroups || acl_a_viewauth'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (82,1,0,'permissions','acp',20,203,204,'ACP_PERMISSION_TRACE','trace','acl_a_viewauth'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (83,1,1,'permissions','acp',18,181,182,'ACP_FORUM_PERMISSIONS','setting_forum_local','acl_a_fauth && (acl_a_authusers || acl_a_authgroups)'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (84,1,1,'permissions','acp',18,183,184,'ACP_FORUM_MODERATORS','setting_mod_local','acl_a_mauth && (acl_a_authusers || acl_a_authgroups)'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (85,1,1,'permissions','acp',17,171,172,'ACP_USERS_PERMISSIONS','setting_user_global','acl_a_authusers && (acl_a_aauth || acl_a_mauth || acl_a_uauth)'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (86,1,1,'permissions','acp',13,117,118,'ACP_USERS_PERMISSIONS','setting_user_global','acl_a_authusers && (acl_a_aauth || acl_a_mauth || acl_a_uauth)'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (87,1,1,'permissions','acp',18,185,186,'ACP_USERS_FORUM_PERMISSIONS','setting_user_local','acl_a_authusers && (acl_a_mauth || acl_a_fauth)'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (88,1,1,'permissions','acp',13,119,120,'ACP_USERS_FORUM_PERMISSIONS','setting_user_local','acl_a_authusers && (acl_a_mauth || acl_a_fauth)'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (89,1,1,'permissions','acp',17,173,174,'ACP_GROUPS_PERMISSIONS','setting_group_global','acl_a_authgroups && (acl_a_aauth || acl_a_mauth || acl_a_uauth)'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (90,1,1,'permissions','acp',14,149,150,'ACP_GROUPS_PERMISSIONS','setting_group_global','acl_a_authgroups && (acl_a_aauth || acl_a_mauth || acl_a_uauth)'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (91,1,1,'permissions','acp',18,187,188,'ACP_GROUPS_FORUM_PERMISSIONS','setting_group_local','acl_a_authgroups && (acl_a_mauth || acl_a_fauth)'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (92,1,1,'permissions','acp',14,151,152,'ACP_GROUPS_FORUM_PERMISSIONS','setting_group_local','acl_a_authgroups && (acl_a_mauth || acl_a_fauth)'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (93,1,1,'permissions','acp',17,175,176,'ACP_ADMINISTRATORS','setting_admin_global','acl_a_aauth && (acl_a_authusers || acl_a_authgroups)'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (94,1,1,'permissions','acp',17,177,178,'ACP_GLOBAL_MODERATORS','setting_mod_global','acl_a_mauth && (acl_a_authusers || acl_a_authgroups)'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (95,1,1,'permissions','acp',20,205,206,'ACP_VIEW_ADMIN_PERMISSIONS','view_admin_global','acl_a_viewauth'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (96,1,1,'permissions','acp',20,207,208,'ACP_VIEW_USER_PERMISSIONS','view_user_global','acl_a_viewauth'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (97,1,1,'permissions','acp',20,209,210,'ACP_VIEW_GLOBAL_MOD_PERMISSIONS','view_mod_global','acl_a_viewauth'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (98,1,1,'permissions','acp',20,211,212,'ACP_VIEW_FORUM_MOD_PERMISSIONS','view_mod_local','acl_a_viewauth'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (99,1,1,'permissions','acp',20,213,214,'ACP_VIEW_FORUM_PERMISSIONS','view_forum_local','acl_a_viewauth'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (100,1,1,'php_info','acp',29,263,264,'ACP_PHP_INFO','info','acl_a_phpinfo'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (101,1,1,'profile','acp',13,121,122,'ACP_CUSTOM_PROFILE_FIELDS','profile','acl_a_profile'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (102,1,1,'prune','acp',7,69,70,'ACP_PRUNE_FORUMS','forums','acl_a_prune'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (103,1,1,'prune','acp',15,163,164,'ACP_PRUNE_USERS','users','acl_a_userdel'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (104,1,1,'ranks','acp',13,123,124,'ACP_MANAGE_RANKS','ranks','acl_a_ranks'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (105,1,1,'reasons','acp',29,265,266,'ACP_MANAGE_REASONS','main','acl_a_reasons'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (106,1,1,'search','acp',5,59,60,'ACP_SEARCH_SETTINGS','settings','acl_a_search'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (107,1,1,'search','acp',26,247,248,'ACP_SEARCH_INDEX','index','acl_a_search'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (108,1,1,'styles','acp',22,219,220,'ACP_STYLES','style','acl_a_styles'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (109,1,1,'styles','acp',23,223,224,'ACP_TEMPLATES','template','acl_a_styles'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (110,1,1,'styles','acp',23,225,226,'ACP_THEMES','theme','acl_a_styles'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (111,1,1,'styles','acp',23,227,228,'ACP_IMAGESETS','imageset','acl_a_styles'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (112,1,1,'update','acp',28,253,254,'ACP_VERSION_CHECK','version_check','acl_a_board'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (113,1,1,'users','acp',13,113,114,'ACP_MANAGE_USERS','overview','acl_a_user'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (114,1,0,'users','acp',13,125,126,'ACP_USER_FEEDBACK','feedback','acl_a_user'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (115,1,0,'users','acp',13,127,128,'ACP_USER_PROFILE','profile','acl_a_user'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (116,1,0,'users','acp',13,129,130,'ACP_USER_PREFS','prefs','acl_a_user'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (117,1,0,'users','acp',13,131,132,'ACP_USER_AVATAR','avatar','acl_a_user'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (118,1,0,'users','acp',13,133,134,'ACP_USER_RANK','rank','acl_a_user'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (119,1,0,'users','acp',13,135,136,'ACP_USER_SIG','sig','acl_a_user'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (120,1,0,'users','acp',13,137,138,'ACP_USER_GROUPS','groups','acl_a_user && acl_a_group'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (121,1,0,'users','acp',13,139,140,'ACP_USER_PERM','perm','acl_a_user && acl_a_viewauth'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (122,1,0,'users','acp',13,141,142,'ACP_USER_ATTACH','attach','acl_a_user'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (123,1,1,'words','acp',10,97,98,'ACP_WORDS','words','acl_a_words'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (124,1,1,'users','acp',2,5,6,'ACP_MANAGE_USERS','overview','acl_a_user'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (125,1,1,'groups','acp',2,7,8,'ACP_GROUPS_MANAGE','manage','acl_a_group'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (126,1,1,'forums','acp',2,9,10,'ACP_MANAGE_FORUMS','manage','acl_a_forum'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (127,1,1,'logs','acp',2,11,12,'ACP_MOD_LOGS','mod','acl_a_viewlogs'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (128,1,1,'bots','acp',2,13,14,'ACP_BOTS','bots','acl_a_bots'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (129,1,1,'php_info','acp',2,15,16,'ACP_PHP_INFO','info','acl_a_phpinfo'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (130,1,1,'permissions','acp',8,73,74,'ACP_FORUM_PERMISSIONS','setting_forum_local','acl_a_fauth && (acl_a_authusers || acl_a_authgroups)'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (131,1,1,'permissions','acp',8,75,76,'ACP_FORUM_MODERATORS','setting_mod_local','acl_a_mauth && (acl_a_authusers || acl_a_authgroups)'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (132,1,1,'permissions','acp',8,77,78,'ACP_USERS_FORUM_PERMISSIONS','setting_user_local','acl_a_authusers && (acl_a_mauth || acl_a_fauth)'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (133,1,1,'permissions','acp',8,79,80,'ACP_GROUPS_FORUM_PERMISSIONS','setting_group_local','acl_a_authgroups && (acl_a_mauth || acl_a_fauth)'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (134,1,1,'','mcp',0,1,10,'MCP_MAIN','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (135,1,1,'','mcp',0,11,18,'MCP_QUEUE','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (136,1,1,'','mcp',0,19,32,'MCP_REPORTS','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (137,1,1,'','mcp',0,33,38,'MCP_NOTES','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (138,1,1,'','mcp',0,39,48,'MCP_WARN','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (139,1,1,'','mcp',0,49,56,'MCP_LOGS','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (140,1,1,'','mcp',0,57,64,'MCP_BAN','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (141,1,1,'ban','mcp',140,58,59,'MCP_BAN_USERNAMES','user','acl_m_ban'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (142,1,1,'ban','mcp',140,60,61,'MCP_BAN_IPS','ip','acl_m_ban'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (143,1,1,'ban','mcp',140,62,63,'MCP_BAN_EMAILS','email','acl_m_ban'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (144,1,1,'logs','mcp',139,50,51,'MCP_LOGS_FRONT','front','acl_m_ || aclf_m_'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (145,1,1,'logs','mcp',139,52,53,'MCP_LOGS_FORUM_VIEW','forum_logs','acl_m_,$id'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (146,1,1,'logs','mcp',139,54,55,'MCP_LOGS_TOPIC_VIEW','topic_logs','acl_m_,$id'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (147,1,1,'main','mcp',134,2,3,'MCP_MAIN_FRONT','front',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (148,1,1,'main','mcp',134,4,5,'MCP_MAIN_FORUM_VIEW','forum_view','acl_m_,$id'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (149,1,1,'main','mcp',134,6,7,'MCP_MAIN_TOPIC_VIEW','topic_view','acl_m_,$id'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (150,1,1,'main','mcp',134,8,9,'MCP_MAIN_POST_DETAILS','post_details','acl_m_,$id || (!$id && aclf_m_)'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (151,1,1,'notes','mcp',137,34,35,'MCP_NOTES_FRONT','front',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (152,1,1,'notes','mcp',137,36,37,'MCP_NOTES_USER','user_notes',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (153,1,1,'queue','mcp',135,12,13,'MCP_QUEUE_UNAPPROVED_TOPICS','unapproved_topics','aclf_m_approve'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (154,1,1,'queue','mcp',135,14,15,'MCP_QUEUE_UNAPPROVED_POSTS','unapproved_posts','aclf_m_approve'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (155,1,1,'queue','mcp',135,16,17,'MCP_QUEUE_APPROVE_DETAILS','approve_details','acl_m_approve,$id || (!$id && aclf_m_approve)'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (156,1,1,'reports','mcp',136,20,21,'MCP_REPORTS_OPEN','reports','aclf_m_report'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (157,1,1,'reports','mcp',136,22,23,'MCP_REPORTS_CLOSED','reports_closed','aclf_m_report'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (158,1,1,'reports','mcp',136,24,25,'MCP_REPORT_DETAILS','report_details','acl_m_report,$id || (!$id && aclf_m_report)'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (159,1,1,'warn','mcp',138,40,41,'MCP_WARN_FRONT','front','aclf_m_warn'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (160,1,1,'warn','mcp',138,42,43,'MCP_WARN_LIST','list','aclf_m_warn'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (161,1,1,'warn','mcp',138,44,45,'MCP_WARN_USER','warn_user','aclf_m_warn'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (162,1,1,'warn','mcp',138,46,47,'MCP_WARN_POST','warn_post','acl_m_warn,$id || (!$id && aclf_m_warn)'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (163,1,1,'','ucp',0,1,12,'UCP_MAIN','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (164,1,1,'','ucp',0,13,22,'UCP_PROFILE','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (165,1,1,'','ucp',0,23,30,'UCP_PREFS','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (166,1,1,'','ucp',0,31,42,'UCP_PM','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (167,1,1,'','ucp',0,43,48,'UCP_USERGROUPS','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (168,1,1,'','ucp',0,49,54,'UCP_ZEBRA','',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (169,1,1,'attachments','ucp',163,10,11,'UCP_MAIN_ATTACHMENTS','attachments','acl_u_attach'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (170,1,1,'groups','ucp',167,44,45,'UCP_USERGROUPS_MEMBER','membership',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (171,1,1,'groups','ucp',167,46,47,'UCP_USERGROUPS_MANAGE','manage',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (172,1,1,'main','ucp',163,2,3,'UCP_MAIN_FRONT','front',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (173,1,1,'main','ucp',163,4,5,'UCP_MAIN_SUBSCRIBED','subscribed',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (174,1,1,'main','ucp',163,6,7,'UCP_MAIN_BOOKMARKS','bookmarks','cfg_allow_bookmarks'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (175,1,1,'main','ucp',163,8,9,'UCP_MAIN_DRAFTS','drafts',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (176,1,0,'pm','ucp',166,32,33,'UCP_PM_VIEW','view','cfg_allow_privmsg'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (177,1,1,'pm','ucp',166,34,35,'UCP_PM_COMPOSE','compose','cfg_allow_privmsg'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (178,1,1,'pm','ucp',166,36,37,'UCP_PM_DRAFTS','drafts','cfg_allow_privmsg'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (179,1,1,'pm','ucp',166,38,39,'UCP_PM_OPTIONS','options','cfg_allow_privmsg'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (180,1,0,'pm','ucp',166,40,41,'UCP_PM_POPUP_TITLE','popup','cfg_allow_privmsg'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (181,1,1,'prefs','ucp',165,24,25,'UCP_PREFS_PERSONAL','personal',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (182,1,1,'prefs','ucp',165,26,27,'UCP_PREFS_POST','post',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (183,1,1,'prefs','ucp',165,28,29,'UCP_PREFS_VIEW','view',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (184,1,1,'profile','ucp',164,14,15,'UCP_PROFILE_PROFILE_INFO','profile_info',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (185,1,1,'profile','ucp',164,16,17,'UCP_PROFILE_SIGNATURE','signature','acl_u_sig'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (186,1,1,'profile','ucp',164,18,19,'UCP_PROFILE_AVATAR','avatar','cfg_allow_avatar && (cfg_allow_avatar_local || cfg_allow_avatar_remote || cfg_allow_avatar_upload || cfg_allow_avatar_remote_upload)'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (187,1,1,'profile','ucp',164,20,21,'UCP_PROFILE_REG_DETAILS','reg_details',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (188,1,1,'zebra','ucp',168,50,51,'UCP_ZEBRA_FRIENDS','friends',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (189,1,1,'zebra','ucp',168,52,53,'UCP_ZEBRA_FOES','foes',''); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (190,1,1,'board','acp',3,39,40,'ACP_FEED_SETTINGS','feed','acl_a_board'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (191,1,0,'users','acp',13,143,144,'ACP_USER_WARNINGS','warnings','acl_a_user'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (192,1,1,'send_statistics','acp',5,61,62,'ACP_SEND_STATISTICS','send_statistics','acl_a_server'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (193,1,1,'permissions','acp',8,81,82,'ACP_FORUM_PERMISSIONS_COPY','setting_forum_copy','acl_a_fauth && acl_a_authusers && acl_a_authgroups && acl_a_mauth'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (194,1,1,'permissions','acp',18,189,190,'ACP_FORUM_PERMISSIONS_COPY','setting_forum_copy','acl_a_fauth && acl_a_authusers && acl_a_authgroups && acl_a_mauth'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (195,1,1,'pm_reports','mcp',136,26,27,'MCP_PM_REPORTS_OPEN','pm_reports','aclf_m_report'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (196,1,1,'pm_reports','mcp',136,28,29,'MCP_PM_REPORTS_CLOSED','pm_reports_closed','aclf_m_report'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (197,1,1,'pm_reports','mcp',136,30,31,'MCP_PM_REPORT_DETAILS','pm_report_details','aclf_m_report'); +INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (198,1,1,'board','acp',10,91,92,'ACP_POST_SETTINGS','post','acl_a_board'); +INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, icon_id, poster_ip, post_time, post_approved, post_reported, enable_bbcode, enable_smilies, enable_magic_url, enable_sig, post_username, post_subject, post_text, post_checksum, post_attachment, bbcode_bitfield, bbcode_uid, post_postcount, post_edit_time, post_edit_reason, post_edit_user, post_edit_count, post_edit_locked) VALUES (1,1,2,2,0,'127.0.0.1',972086460,1,0,1,1,1,1,'','Test Toptic','First Post!','5dd683b17f641daf84c040bfefc58ce9',0,'','',1,0,'',0,0,0); +INSERT INTO phpbb_ranks (rank_id, rank_title, rank_min, rank_special, rank_image) VALUES (1,'Site Admin',0,1,''); +INSERT INTO phpbb_reports_reasons (reason_id, reason_title, reason_description, reason_order) VALUES (1,'warez','{L_REPORT_WAREZ}',1); +INSERT INTO phpbb_reports_reasons (reason_id, reason_title, reason_description, reason_order) VALUES (2,'spam','{L_REPORT_SPAM}',2); +INSERT INTO phpbb_reports_reasons (reason_id, reason_title, reason_description, reason_order) VALUES (3,'off_topic','{L_REPORT_OFF_TOPIC}',3); +INSERT INTO phpbb_reports_reasons (reason_id, reason_title, reason_description, reason_order) VALUES (4,'other','{L_REPORT_OTHER}',4); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (1,':D',':-D','icon_e_biggrin.gif',15,17,1,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (2,':-D',':-D','icon_e_biggrin.gif',15,17,2,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (3,':grin:',':-D','icon_e_biggrin.gif',15,17,3,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (4,':)',':-)','icon_e_smile.gif',15,17,4,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (5,':-)',':-)','icon_e_smile.gif',15,17,5,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (6,':smile:',':-)','icon_e_smile.gif',15,17,6,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (7,';)',';-)','icon_e_wink.gif',15,17,7,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (8,';-)',';-)','icon_e_wink.gif',15,17,8,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (9,':wink:',';-)','icon_e_wink.gif',15,17,9,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (10,':(',':-(','icon_e_sad.gif',15,17,10,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (11,':-(',':-(','icon_e_sad.gif',15,17,11,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (12,':sad:',':-(','icon_e_sad.gif',15,17,12,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (13,':o',':-O','icon_e_surprised.gif',15,19,13,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (14,':-o',':-O','icon_e_surprised.gif',15,19,14,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (15,':eek:',':-O','icon_e_surprised.gif',15,19,15,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (16,':shock:',':-O','icon_eek.gif',15,15,16,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (17,':?',':-/','icon_e_confused.gif',15,17,17,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (18,':-?',':-/','icon_e_confused.gif',15,17,18,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (19,':???:',':-/','icon_e_confused.gif',15,17,19,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (20,'8-)','8-)','icon_cool.gif',15,15,20,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (21,':cool:','8-)','icon_cool.gif',15,15,21,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (22,':lol:',':-D','icon_lol.gif',15,15,22,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (23,':x','>:-(','icon_mad.gif',15,15,23,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (24,':-x','>:-(','icon_mad.gif',15,15,24,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (25,':mad:','>:-(','icon_mad.gif',15,15,25,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (26,':P',':-P','icon_razz.gif',15,15,26,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (27,':-P',':-P','icon_razz.gif',15,15,27,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (28,':razz:',':-P','icon_razz.gif',15,15,28,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (29,':oops:',':-|','icon_redface.gif',15,15,29,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (30,':cry:',':~(','icon_cry.gif',15,15,30,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (31,':evil:','>:-)','icon_evil.gif',15,15,31,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (32,':twisted:','>:->','icon_twisted.gif',15,15,32,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (33,':roll:',':-/','icon_rolleyes.gif',15,15,33,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (34,':!:','!','icon_exclaim.gif',15,15,34,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (35,':?:','?','icon_question.gif',15,15,35,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (36,':idea:','(!)','icon_idea.gif',15,15,36,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (37,':arrow:','->','icon_arrow.gif',15,15,37,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (38,':|',':-|','icon_neutral.gif',15,15,38,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (39,':-|',':-|','icon_neutral.gif',15,15,39,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (40,':mrgreen:','8-D','icon_mrgreen.gif',15,15,40,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (41,':geek:','8-{','icon_e_geek.gif',17,17,41,1); +INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (42,':ugeek:','88-{','icon_e_ugeek.gif',19,18,42,1); +INSERT INTO phpbb_styles (style_id, style_name, style_copyright, style_active, template_id, theme_id, imageset_id) VALUES (1,'prosilver','© phpBB Group',1,1,1,1); +INSERT INTO phpbb_styles_imageset (imageset_id, imageset_name, imageset_copyright, imageset_path) VALUES (1,'prosilver','© phpBB Group','prosilver'); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (1,'site_logo','site_logo.gif','',52,139,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (2,'forum_link','forum_link.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (3,'forum_read','forum_read.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (4,'forum_read_locked','forum_read_locked.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (5,'forum_read_subforum','forum_read_subforum.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (6,'forum_unread','forum_unread.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (7,'forum_unread_locked','forum_unread_locked.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (8,'forum_unread_subforum','forum_unread_subforum.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (9,'topic_moved','topic_moved.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (10,'topic_read','topic_read.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (11,'topic_read_mine','topic_read_mine.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (12,'topic_read_hot','topic_read_hot.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (13,'topic_read_hot_mine','topic_read_hot_mine.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (14,'topic_read_locked','topic_read_locked.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (15,'topic_read_locked_mine','topic_read_locked_mine.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (16,'topic_unread','topic_unread.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (17,'topic_unread_mine','topic_unread_mine.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (18,'topic_unread_hot','topic_unread_hot.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (19,'topic_unread_hot_mine','topic_unread_hot_mine.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (20,'topic_unread_locked','topic_unread_locked.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (21,'topic_unread_locked_mine','topic_unread_locked_mine.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (22,'sticky_read','sticky_read.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (23,'sticky_read_mine','sticky_read_mine.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (24,'sticky_read_locked','sticky_read_locked.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (25,'sticky_read_locked_mine','sticky_read_locked_mine.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (26,'sticky_unread','sticky_unread.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (27,'sticky_unread_mine','sticky_unread_mine.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (28,'sticky_unread_locked','sticky_unread_locked.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (29,'sticky_unread_locked_mine','sticky_unread_locked_mine.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (30,'announce_read','announce_read.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (31,'announce_read_mine','announce_read_mine.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (32,'announce_read_locked','announce_read_locked.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (33,'announce_read_locked_mine','announce_read_locked_mine.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (34,'announce_unread','announce_unread.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (35,'announce_unread_mine','announce_unread_mine.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (36,'announce_unread_locked','announce_unread_locked.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (37,'announce_unread_locked_mine','announce_unread_locked_mine.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (38,'global_read','announce_read.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (39,'global_read_mine','announce_read_mine.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (40,'global_read_locked','announce_read_locked.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (41,'global_read_locked_mine','announce_read_locked_mine.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (42,'global_unread','announce_unread.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (43,'global_unread_mine','announce_unread_mine.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (44,'global_unread_locked','announce_unread_locked.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (45,'global_unread_locked_mine','announce_unread_locked_mine.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (46,'pm_read','topic_read.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (47,'pm_unread','topic_unread.gif','',27,27,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (48,'icon_back_top','icon_back_top.gif','',11,11,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (49,'icon_contact_aim','icon_contact_aim.gif','',20,20,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (50,'icon_contact_email','icon_contact_email.gif','',20,20,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (51,'icon_contact_icq','icon_contact_icq.gif','',20,20,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (52,'icon_contact_jabber','icon_contact_jabber.gif','',20,20,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (53,'icon_contact_msnm','icon_contact_msnm.gif','',20,20,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (54,'icon_contact_www','icon_contact_www.gif','',20,20,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (55,'icon_contact_yahoo','icon_contact_yahoo.gif','',20,20,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (56,'icon_post_delete','icon_post_delete.gif','',20,20,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (57,'icon_post_info','icon_post_info.gif','',20,20,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (58,'icon_post_report','icon_post_report.gif','',20,20,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (59,'icon_post_target','icon_post_target.gif','',9,11,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (60,'icon_post_target_unread','icon_post_target_unread.gif','',9,11,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (61,'icon_topic_attach','icon_topic_attach.gif','',10,7,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (62,'icon_topic_latest','icon_topic_latest.gif','',9,11,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (63,'icon_topic_newest','icon_topic_newest.gif','',9,11,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (64,'icon_topic_reported','icon_topic_reported.gif','',14,16,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (65,'icon_topic_unapproved','icon_topic_unapproved.gif','',14,16,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (66,'icon_user_warn','icon_user_warn.gif','',20,20,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (67,'subforum_read','subforum_read.gif','',9,11,1); +INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (68,'subforum_unread','subforum_unread.gif','',9,11,1); +INSERT INTO phpbb_styles_template (template_id, template_name, template_copyright, template_path, bbcode_bitfield, template_storedb, template_inherits_id, template_inherit_path) VALUES (1,'prosilver','© phpBB Group','prosilver','lNg=',0,0,''); +INSERT INTO phpbb_styles_theme (theme_id, theme_name, theme_copyright, theme_path, theme_storedb, theme_mtime, theme_data) VALUES (1,'prosilver','© phpBB Group','prosilver',1,0,''); +INSERT INTO phpbb_topics (topic_id, forum_id, icon_id, topic_attachment, topic_approved, topic_reported, topic_title, topic_poster, topic_time, topic_time_limit, topic_views, topic_replies, topic_replies_real, topic_status, topic_type, topic_first_post_id, topic_first_poster_name, topic_first_poster_colour, topic_last_post_id, topic_last_poster_id, topic_last_poster_name, topic_last_poster_colour, topic_last_post_subject, topic_last_post_time, topic_last_view_time, topic_moved_id, topic_bumped, topic_bumper, poll_title, poll_start, poll_length, poll_max_options, poll_last_vote, poll_vote_change) VALUES (1,2,0,0,1,0,'Test Topic',2,972086460,0,0,0,0,0,0,1,'Admin','AA0000',1,2,'Admin','AA0000','Test Topic',972086460,972086460,0,0,0,'',0,0,1,0,0); +INSERT INTO phpbb_topics_posted (user_id, topic_id, topic_posted) VALUES (2,1,1); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (1,1,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (2,2,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (4,2,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (5,2,1,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,3,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,4,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,5,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,6,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,7,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,8,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,9,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,10,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,11,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,12,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,13,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,14,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,15,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,16,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,17,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,18,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,19,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,20,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,21,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,22,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,23,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,24,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,25,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,26,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,28,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,31,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,32,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,34,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,35,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,36,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,37,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,38,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,39,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,41,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,42,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,43,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,44,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,45,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,46,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,48,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,49,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,50,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,51,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,52,0,0); +INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,53,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (1,2,1,'',0,'',1170765411,'Anonymous','anonymous','',0,0,'',0,'',0,0,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'d M Y H:i a',1,0,'',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,1,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (2,3,5,'',0,'',1170765411,'admin','admin','',0,0,'',0,'',0,0,0,'','',0,0,0,0,0,0,1,'en',0.00,0,'d M Y H:i a',1,1,'AA0000',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,1,1,1,1,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (3,2,6,'',0,'',1170765411,'AdsBot [Google]','adsbot [google]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (4,2,6,'',0,'',1170765411,'Alexa [Bot]','alexa [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (5,2,6,'',0,'',1170765411,'Alta Vista [Bot]','alta vista [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (6,2,6,'',0,'',1170765411,'Ask Jeeves [Bot]','ask jeeves [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (7,2,6,'',0,'',1170765411,'Baidu [Spider]','baidu [spider]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (8,2,6,'',0,'',1170765411,'Exabot [Bot]','exabot [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (9,2,6,'',0,'',1170765411,'FAST Enterprise [Crawler]','fast enterprise [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (10,2,6,'',0,'',1170765411,'FAST WebCrawler [Crawler]','fast webcrawler [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (11,2,6,'',0,'',1170765411,'Francis [Bot]','francis [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (12,2,6,'',0,'',1170765411,'Gigabot [Bot]','gigabot [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (13,2,6,'',0,'',1170765411,'Google Adsense [Bot]','google adsense [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (14,2,6,'',0,'',1170765411,'Google Desktop','google desktop','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (15,2,6,'',0,'',1170765411,'Google Feedfetcher','google feedfetcher','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (16,2,6,'',0,'',1170765411,'Google [Bot]','google [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (17,2,6,'',0,'',1170765411,'Heise IT-Markt [Crawler]','heise it-markt [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (18,2,6,'',0,'',1170765411,'Heritrix [Crawler]','heritrix [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (19,2,6,'',0,'',1170765411,'IBM Research [Bot]','ibm research [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (20,2,6,'',0,'',1170765411,'ICCrawler - ICjobs','iccrawler - icjobs','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (21,2,6,'',0,'',1170765411,'ichiro [Crawler]','ichiro [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (22,2,6,'',0,'',1170765411,'Majestic-12 [Bot]','majestic-12 [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (23,2,6,'',0,'',1170765411,'Metager [Bot]','metager [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (24,2,6,'',0,'',1170765411,'MSN NewsBlogs','msn newsblogs','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (25,2,6,'',0,'',1170765411,'MSN [Bot]','msn [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (26,2,6,'',0,'',1170765411,'MSNbot Media','msnbot media','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (28,2,6,'',0,'',1170765411,'Nutch [Bot]','nutch [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (31,2,6,'',0,'',1170765411,'Online link [Validator]','online link [validator]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (32,2,6,'',0,'',1170765411,'psbot [Picsearch]','psbot [picsearch]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (34,2,6,'',0,'',1170765411,'Sensis [Crawler]','sensis [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (35,2,6,'',0,'',1170765411,'SEO Crawler','seo crawler','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (36,2,6,'',0,'',1170765411,'Seoma [Crawler]','seoma [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (37,2,6,'',0,'',1170765411,'SEOSearch [Crawler]','seosearch [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (38,2,6,'',0,'',1170765411,'Snappy [Bot]','snappy [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (39,2,6,'',0,'',1170765411,'Steeler [Crawler]','steeler [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (41,2,6,'',0,'',1170765411,'Telekom [Bot]','telekom [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (42,2,6,'',0,'',1170765411,'TurnitinBot [Bot]','turnitinbot [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (43,2,6,'',0,'',1170765411,'Voyager [Bot]','voyager [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (44,2,6,'',0,'',1170765411,'W3 [Sitesearch]','w3 [sitesearch]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (45,2,6,'',0,'',1170765411,'W3C [Linkcheck]','w3c [linkcheck]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (46,2,6,'',0,'',1170765411,'W3C [Validator]','w3c [validator]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (48,2,6,'',0,'',1170765411,'Yacy [Bot]','yacy [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (49,2,6,'',0,'',1170765411,'Yahoo MMCrawler [Bot]','yahoo mmcrawler [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (50,2,6,'',0,'',1170765411,'Yahoo Slurp [Bot]','yahoo slurp [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (51,2,6,'',0,'',1170765411,'Yahoo [Bot]','yahoo [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (52,2,6,'',0,'',1170765411,'YahooSeeker [Bot]','yahooseeker [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); +INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (53,2,6,'',0,'',1321022106,'Bing [Bot]','bing [bot]','',1321022106,0,'',0,'',0,1321022106,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','e528469e2ef47bee',0,0,0); debian/maint-patches/007_database_update_php.diff0000644000000000000000000001715012235301315017117 0ustar --- ../install/database_update.php 2013-09-28 14:36:35.462359564 -0400 +++ database_update_debian.php 2013-09-28 16:04:35.046507402 -0400 @@ -1,3 +1,4 @@ +#!/usr/bin/php5 - - - - - - - - - -<?php echo $lang['UPDATING_TO_LATEST_STABLE']; ?> - - - - - - -
- - -
-
-
- -
-
- -

- -
- -

:: sql_layer; ?>
-' . $config['version'] . '
'; -echo $lang['UPDATED_VERSION'] . ' :: ' . $updates_to_version . '

'; - $current_version = str_replace('rc', 'RC', strtolower($config['version'])); $latest_version = str_replace('rc', 'RC', strtolower($updates_to_version)); $orig_version = $config['version']; @@ -243,79 +205,6 @@ set_config('dbms_version', $db->sql_server_info(true)); } -// Firebird update from Firebird 2.0 to 2.1+ required? -if ($db->sql_layer == 'firebird') -{ - // We do not trust any PHP5 function enabled, we will simply test for a function new in 2.1 - $db->sql_return_on_error(true); - - $sql = 'SELECT 1 FROM RDB$DATABASE - WHERE BIN_AND(10, 1) = 0'; - $result = $db->sql_query($sql); - - if (!$result || $db->sql_error_triggered) - { - echo '

'; - echo '

' . $lang['ERROR'] . '


'; - - echo '

' . $lang['FIREBIRD_DBMS_UPDATE_REQUIRED'] . '

'; - - _print_footer(); - - exit_handler(); - exit; - } - - $db->sql_freeresult($result); - $db->sql_return_on_error(false); -} - -// MySQL update from MySQL 3.x/4.x to > 4.1.x required? -if ($db->sql_layer == 'mysql' || $db->sql_layer == 'mysql4' || $db->sql_layer == 'mysqli') -{ - // Verify by fetching column... if the column type matches the new type we update dbms_version... - $sql = "SHOW COLUMNS FROM " . CONFIG_TABLE; - $result = $db->sql_query($sql); - - $column_type = ''; - while ($row = $db->sql_fetchrow($result)) - { - $field = strtolower($row['Field']); - - if ($field == 'config_value') - { - $column_type = strtolower($row['Type']); - break; - } - } - $db->sql_freeresult($result); - - // If column type is blob, but mysql version says we are on > 4.1.3, then the schema needs an update - if (strpos($column_type, 'blob') !== false && version_compare($db->sql_server_info(true), '4.1.3', '>=')) - { - echo '

'; - echo '

' . $lang['ERROR'] . '


'; - - echo '

' . sprintf($lang['MYSQL_SCHEMA_UPDATE_REQUIRED'], $config['dbms_version'], $db->sql_server_info(true)) . '

'; - - _print_footer(); - - exit_handler(); - exit; - } -} - -// Now check if the user wants to update from a version we no longer support updates from -if (version_compare($current_version, $oldest_from_version, '<')) -{ - echo '

' . $lang['ERROR'] . '


'; - echo '

' . sprintf($lang['DB_UPDATE_NOT_SUPPORTED'], $oldest_from_version, $current_version) . '

'; - - _print_footer(); - exit_handler(); - exit; -} - // If the latest version and the current version are 'unequal', we will update the version_update_from, else we do not update anything. if ($inline_update) { @@ -331,17 +220,6 @@ } // Schema updates -?> -

- -

- -
-

:: - - - -

-

-
-

:: - - - -

-

-
-

:: - - - -
-

- -
- - - -

- -

- - - -

- -

" class="button1">

- -purge(); -_print_footer(); +//_print_footer(); garbage_collection(); @@ -514,32 +340,9 @@ } /** -* Print out footer -*/ -function _print_footer() -{ - echo << -
- -
-
-
- - -
- - - -EOF; -} - -/** * Function for triggering an sql statement */ -function _sql($sql, &$errored, &$error_ary, $echo_dot = true) +function _sql($sql, &$errored, &$error_ary, $echo_dot = false) { global $db; @@ -582,6 +385,7 @@ function _write_result($no_updates, $errored, $error_ary) { + return true; global $lang; if ($no_updates) debian/copyright0000644000000000000000000010466412261414642011136 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: phpBB Source: http://www.phpbb.com/downloads/olympus.php http://www.phpbb.com/languages/ Files: * Copyright: 2000, 2002-2011 phpBB Group 2001, 2004 Tom Beddard, subBlue Design http://www.subblue.com/ License: GPL-2 X-Debian-Comment: phpBB team: http://www.phpbb.com/about/team phpBB Lead Developer: naderman (Nils Adermann) . phpBB Developers: bantu (Andreas Fischer) EXreaction (Nathan Guse) dhruv.goel92 (Dhruv Goel) imkingdavid (David King) nickvergessen (Joas Schilling) . Contributions by: leviatan21 (Gabriel Vazquez) Raimon (Raimon Meuldijk) Xore (Robert Hetzler) . -- Former Contributors -- . phpBB Project Manager: theFinn (James Atkinson) [Founder - 04/2007] SHS` (Jonathan Stanley) . phpBB Lead Developer: Acyd Burn (Meik Sievertsen) [09/2005 - 01/2010] psoTFX (Paul S. Owen) [2001 - 09/2005] . phpBB Developers: A_Jelly_Doughnut (Josh Woody) [01/2010 - 11/2010] Acyd Burn (Meik Sievertsen) [02/2003 - 09/2005] APTX (Marek A. Ruszczyński) [12/2007 - 04/2011] Arty (Vjacheslav Trushkin) [02/2012 - 07/2012] Ashe (Ludovic Arnaud) [10/2002 - 11/2003, 06/2006 - 10/2006] BartVB (Bart van Bragt) [11/2000 - 03/2006] ckwalsh (Cullen Walsh) [01/2010 - 07/2011] DavidMJ (David M.) [12/2005 - 08/2009] dhn (Dominik Dröscher) [05/2007 - 01/2011] GrahamJE (Graham Eames) [09/2005 - 11/2006] kellanved (Henry Sudhof) [04/2007 - 03/2011] igorw (Igor Wiedler) [08/2010 - 02/2013] Oleg (Oleg Pudeyev) [01/2011 - 05/2013] rxu (Ruslan Uzdenov) [04/2010 - 12/2012] TerraFrost (Jim Wigginton) [04/2009 - 01/2011] ToonArmy (Chris Smith) [06/2008 - 11/2011] Vic D'Elfant (Vic D'Elfant) [04/2007 - 04/2009] Files: */editor.js Copyright: 2005, 2007 phpBB Group 2004 Tom Beddard, subBlue Design http://www.subblue.com/ 2004, 2005 Jim Wigginton (TerraFrost) http://www.frostjedi.com/phpbb Christopher Jason Wetherell License: GPL-2 X-Debian-Comment: http://www.frostjedi.com/terra/scripts/demo/caretBug.html http://www.massless.org/mozedit/ http://www.faqts.com/knowledge_base/view.phtml/aid/1052/fid/130 Files: adm/style/tooltip.js Copyright: 2006 Alessandro Fulciniti http://web-graphics.com/mtarchive/001717.php phpBB Group License: GPL-2 Files: include/functions_compress.php Copyright: 2005 phpBB Group Zip creation class: 1998-2000 Tobias Ratschiller 2001, 2002 Olivier Müller 2001, 2002 Loïc Chapeaux 2001, 2002 Marc Delisle Zip extraction function: Alexandre Tedeschi, 2003 phpBB Group (psoTFX and DavidMJ) Eric Mueller and Denis125 Tar/tar.gz compression routine: 1994 Tom Horsley License: GPL-2 Files: include/functions_jabber.php Copyright: 2007 phpBB Group 2006 Flyspray.org - Florian Schmitz (floele) http://www.flyspray.org/ Hans Anderson http://www.hansanderson.com/php/xml License: GPL-2 Files: include/functions_messenger.php Copyright: 2005 phpBB Group 1997-2004 PHP Group, http://pear.php.net License: GPL-2 and PHP-3.01 X-Debian-Comment: http://pear.php.net/package/Net_SMTP maybe some BSD licenced authentication methods from 2002-2003 Richard Heyes http://pear.php.net/package/Auth_SASL/ Files: include/functions.php Copyright: 2005 phpBB Group 2004-2006 Solar Designer http://www.openwall.com/phpass 2006 Project Minerva Team - Chris Smith License: GPL-2 and PD Files: include/functions_template.php Copyright: 2005 phpBB Group 2001 ispi of Lincoln Inc PHPLib templates License: GPL-2 and LGPL-2.1 Files: include/functions_user.php Copyright: 2005 phpBB Group 2006 Flyspray.org http://www.flyspray.org/ License: GPL-2 Files: include/session.php Copyright: 2005 phpBB Group 2005-2006 satmd License: GPL-2 X-Debian-Comment: http://www.php.net/manual/en/function.checkdnsrr.php#61220 written by satmd, do what you want with it, but keep the author please Files: include/template.php Copyright: 2005 phpBB Group 2001 ispi of Lincoln Inc License: GPL-2 and LGPL-2.1 Files: includes/captcha/captcha_gd.php Copyright: 2006 phpBB Group 2009 Robert Hetzler (Xore) http://xore.ca License: GPL-2 Files: includes/captcha/plugins/phpbb_recaptcha_plugin.php Copyright: 2006, 2008 phpBB Group 2007 reCAPTCHA, Mike Crawford, Ben Maurer, http://recaptcha.net License: GPL-2 and MIT Files: include/diff/diff.php Copyright: 2006 phpBB Group 2004 Geoffrey T. Dairiki 2004-2008 The Horde Project http://www.horde.org License: GPL-2 and LGPL-2.1 Files: include/diff/engine.php Copyright: 2006 phpBB Group 2004 Geoffrey T. Dairiki 2004-2008 The Horde Project http://www.horde.org 2000-2002 Ned Konz 1988, 1989, 1992, 1993 Free Software Foundation, Inc. License: GPL-1+ or Artistic-1, and GPL-2 and LGPL-2.1 X-Debian-Comment: http://search.cpan.org/dist/Algorithm-Diff/lib/Algorithm/Diff.pm#LICENSE This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself (i.e. GPL-1+ or Artistic-1). Files: include/diff/renderer.php Copyright: 2006 phpBB Group 2004 Geoffrey T. Dairiki 2004-2008 The Horde Project http://www.horde.org 2000-2006 Chora http://horde.org/chora/ License: GPL-2 and LGPL-2.1 Files: include/questionnaire/questionnaire.php Copyright: 2006 phpBB Group 2007-2008 Johannes Schlueter License: GPL-2 Files: styles/prosilver/theme/buttons.css Copyright: 2005, 2007 phpBB Group 2004 Tom Beddard, subBlue Design http://www.subblue.com/ 2004 Petr Staníček http://www.pixy.cz License: GPL-2 X-Debian-Comment: http://wellstyled.com/css-nopreload-rollovers.html any technique, program code and example used on this page is free for use. Files: styles/prosilver/theme/tweaks.css Copyright: 2005, 2007 phpBB Group 2004 Tom Beddard, subBlue Design http://www.subblue.com/ 2004-2008 positioniseverything.net http://www.positioniseverything.net/easyclearing.html 2003-2009 Dustin Diaz http://www.dustindiaz.com/min-height-fast-hack License: GPL-2 and CC-BY-SA-2.5 X-Debian-Comment: stuff from positioniseverything commented out. Files: styles/prosilver/template/forum_fn.js Copyright: 2005, 2007 phpBB Group 2004 Tom Beddard, subBlue Design http://www.subblue.com/ 2005-2008 John Resig, Brandon Aaron & Jörn Zaefferer 2010 GreatWebGuy http://greatwebguy.com License: GPL-2 or MIT, and GPL-2 X-Debian-Comment: http://greatwebguy.com/programming/dom/default-html-button-submit-on-enter-with-jquery/ Files: l10n-be/* l10n-be-u?/* Copyright: 2005, 2006, 2009 phpBB Group 2010 Dionisiy License: GPL-2 Files: l10n-bg/* l10n-bg-u?/* Copyright: 2005, 2006, 2009 phpBB Group IoanFilipov SEO http://na4o.com License: GPL-2 Files: l10n-cs/* l10n-cs-u?/* Copyright: 2007, 2009, 2010 phpBB.cz http://www.phpbb.cz 2005, 2006, 2009 phpBB Group Ameeck JIRKAS Strongy! Ike_Blaster TCH christian seqwence Majkl vP. Preston License: GPL-2 Files: l10n-da/* Copyright: 2006-2009 Olympus DK Team http://www.phpBB3.dk 2005, 2006, 2009 phpBB Group License: GPL-2 Files: l10n-de/* l10n-de-x-sie/* Copyright: 2006 phpBB.de http://www.phpbb.de/go/ubersetzerteam 2005, 2006, 2009 phpBB Group License: GPL-2 Files: l10n-el/* Copyright: 2005, 2006, 2009 phpBB Group http://phpbbgr.com/team/ License: GPL-2 Files: l10n-en-us/* l10n-fr/* Copyright: 2005, 2006, 2009 phpBB Group Maël Soucaze License: GPL-2 Files: l10n-es/* l10n-es-u?/* Copyright: 2005-2007, 2009 phpBB Group 2007, Huan Manwe for www.phpbb-es.com ImagePack by Xoom http://www.muchografico.com License: GPL-2+ Files: l10n-es-x-tu/* l10n-es-x-tu-u?/* Copyright: 2005-2007, 2009, 2010 phpBB Group 2007, Huan Manwe for www.phpbb-es.com License: GPL-2+ Files: l10n-et/* Copyright: 2005-2009 phpBB Group 2007, 2008 Amphor - phpbb.ee License: GPL-2 Files: l10n-fa/* Copyright: 2005, 2006, 2008, 2009 phpBB Group 2005, 2008 www.Maghsad.net http://www.phpBB.Maghsad.com License: GPL-2 Files: l10n-fi/* Copyright: 2005, 2006, 2009 phpBB Group 2007 Martti Lokka License: GPL-2 Files: l10n-gl/* Copyright: 2005, 2006, 2009 phpBB Group 2007-2010 CiberIrmandade da Fala http://www.ciberirmandade.org/foros License: GPL-2 Files: l10n-he/* Copyright: 2005, 2006, 2007 phpBB Group 2007 phpBBHebrew Group License: GPL-2 Files: l10n-hu/* Copyright: 2007, 2009 Magyar phpBB Közösség fordítók http://phpbb.hu/ 2005, 2006, 2009 phpBB Group License: GPL-2 Files: l10n-id/* Copyright: 2009, 2010 Zourbuth Studio 2005, 2006 phpBB Group License: GPL-2 Files: l10n-it/* Copyright: 2011-2013 phpBBItalia.net 2010 phpBB.it 2005, 2006, 2009 phpBB Group License: GPL-2 Files: l10n-lt/* Copyright: 2003, 2005, 2007 Vilius Šumskas http://www.tekila.lt 2005-2013 phpBB Group License: GPL-2 Files: l10n-nl/* Copyright: 2005, 2006, 2009 phpBB Group 2007, 2009 phpBB.nl License: GPL-2 Files: l10n-nl-x-formal/* Copyright: 2005, 2006, 2008 phpBB Group 2007, 2009 phpBBservice.nl http://www.phpBBservice.nl/ License: GPL-2 Files: l10n-pl/* Copyright: 2006-2012 phpBB3.PL Group http://phpbb3.pl 2005 phpBB Group License: GPL-2 Files: l10n-pt-br/* Copyright: 2005, 2006 phpBB Group 2012 Suporte phpBB License: GPL-2 Files: l10n-sv/* l10n-sv-u?/* Copyright: 2006-2011 Peetra & phpBB Sweden http://www.phpbb-se.com/forum/viewtopic.php?t=6096 2006-2012 Swedish translation team http://www.phpbb-se.com 2008-2012 Petra Brandt 2006-2008 Jonathan Gulbrandsen 2005, 2006, 2009 phpBB Group License: GPL-2 Files: l10n-uk/* Copyright: 2005-2011 Українська підтримка phpBB http://phpbb.com.ua/ 2005, 2006, 2009 phpBB Group License: GPL-2 Files: l10n-vi/* l10n-vi-u?/* Copyright: 2009, 2010 ytuongsangtaovn.com 2009 phpBB Group 2006, 2007 phpBBVietNam Group License: GPL-2 Files: l10n-zh-cmn-hans/* Copyright: 2005, 2007, 2009 phpbbchina.com 2005, 2006 phpBB Group License: GPL-2 Files: debian/* Copyright: 2004-2008 Jeroen van Wolffelaar 2005-2009 Thijs Kinkhorst 2010, 2011 Jean-Marc Roth 2010-2013 David Prévot License: GPL-2 X-Debian-Comment: Thanks a lot to Paul Slootman who provided numerous tips and hints, and did lots of testing. Files: debian/po/cs.po Copyright: 2004, 2010 Miroslav Kure License: GPL-2 Files: debian/po/da.po Copyright: 2010 Joe Hansen License: GPL-2 Files: debian/po/de.po Copyright: 2006, 2010 Matthias Julius License: GPL-2 Files: debian/po/es.po Copyright: 2010 Software in the Public Interest 2010 Francisco Javier Cuadrado License: GPL-2 Files: debian/po/fr.po Copyright: 2004, 2010 Debian French l10n team 2004 Eric Madesclair 2010 David Prévot License: GPL-2 Files: debian/po/it.po Copyright: 2005, 2010 Luca Monducci License: GPL-2 Files: debian/po/ja.po Copyright: 2004, 2010 Hideki Yamane (Debian-JP) License: GPL-2 Files: debian/po/nl.po Copyright: 2006, 2010 Thijs Kinkhorst License: GPL-2 Files: debian/po/pt.po Copyright: 2008, 2010 Américo Monteiro License: GPL-2 Files: debian/po/ru.po Copyright: 2010 Yuri Kozlov 2006 Yuriy Talakan' License: GPL-2 Files: debian/po/sv.po Copyright: 2010 Martin Bagge 2010 Martin Ågren 2005 Daniel Nylander License: GPL-2 Files: debian/po/vi.po Copyright: 2005-2010 Clytie Siddall License: GPL-2 License: Artistic-1 On Debian systems, the full text of the Artistic License can be found in the file `/usr/share/common-licenses/Artistic'. License: CC-BY-SA-2.5 Attribution-ShareAlike 2.5 . CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE INFORMATION PROVIDED, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM ITS USE. . License . THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED. . BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS. . 1. Definitions . a. "Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License. . b. "Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License. . c. "Licensor" means the individual or entity that offers the Work under the terms of this License. . d. "Original Author" means the individual or entity who created the Work. . e. "Work" means the copyrightable work of authorship offered under the terms of this License. . f. "You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation. . g. "License Elements" means the following high-level license attributes as selected by Licensor and indicated in the title of this License: Attribution, ShareAlike. . 2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws. . 3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below: . a. to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works; . b. to create and reproduce Derivative Works; . c. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works; . d. to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works. . e. For the avoidance of doubt, where the work is a musical composition: . i. Performance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work. . ii. Mechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights society or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions). . f. Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions). . The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved. . 4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: . a. You may distribute, publicly display, publicly perform, or publicly digitally perform the Work only under the terms of this License, and You must include a copy of, or the Uniform Resource Identifier for, this License with every copy or phonorecord of the Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Work that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder. You may not sublicense the Work. You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Work itself to be made subject to the terms of this License. If You create a Collective Work, upon notice from any Licensor You must, to the extent practicable, remove from the Collective Work any credit as required by clause 4(c), as requested. If You create a Derivative Work, upon notice from any Licensor You must, to the extent practicable, remove from the Derivative Work any credit as required by clause 4(c), as requested. . b. You may distribute, publicly display, publicly perform, or publicly digitally perform a Derivative Work only under the terms of this License, a later version of this License with the same License Elements as this License, or a Creative Commons iCommons license that contains the same License Elements as this License (e.g. Attribution-ShareAlike 2.5 Japan). You must include a copy of, or the Uniform Resource Identifier for, this License or other license specified in the previous sentence with every copy or phonorecord of each Derivative Work You distribute, publicly display, publicly perform, or publicly digitally perform. You may not offer or impose any terms on the Derivative Works that alter or restrict the terms of this License or the recipients' exercise of the rights granted hereunder, and You must keep intact all notices that refer to this License and to the disclaimer of warranties. You may not distribute, publicly display, publicly perform, or publicly digitally perform the Derivative Work with any technological measures that control access or use of the Work in a manner inconsistent with the terms of this License Agreement. The above applies to the Derivative Work as incorporated in a Collective Work, but this does not require the Collective Work apart from the Derivative Work itself to be made subject to the terms of this License. . c. If you distribute, publicly display, publicly perform, or publicly digitally perform the Work or any Derivative Works or Collective Works, You must keep intact all copyright notices for the Work and provide, reasonable to the medium or means You are utilizing: (i) the name of the Original Author (or pseudonym, if applicable) if supplied, and/or (ii) if the Original Author and/or Licensor designate another party or parties (e.g. a sponsor institute, publishing entity, journal) for attribution in Licensor's copyright notice, terms of service or by other reasonable means, the name of such party or parties; the title of the Work if supplied; to the extent reasonably practicable, the Uniform Resource Identifier, if any, that Licensor specifies to be associated with the Work, unless such URI does not refer to the copyright notice or licensing information for the Work; and in the case of a Derivative Work, a credit identifying the use of the Work in the Derivative Work (e.g., "French translation of the Work by Original Author," or "Screenplay based on original Work by Original Author"). Such credit may be implemented in any reasonable manner; provided, however, that in the case of a Derivative Work or Collective Work, at a minimum such credit will appear where any other comparable authorship credit appears and in a manner at least as prominent as such other comparable authorship credit. . 5. Representations, Warranties and Disclaimer . UNLESS OTHERWISE AGREED TO BY THE PARTIES IN WRITING, LICENSOR OFFERS THE WORK AS-IS AND MAKES NO REPRESENTATIONS OR WARRANTIES OF ANY KIND CONCERNING THE MATERIALS, EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING, WITHOUT LIMITATION, WARRANTIES OF TITLE, MERCHANTIBILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR THE ABSENCE OF LATENT OR OTHER DEFECTS, ACCURACY, OR THE PRESENCE OF ABSENCE OF ERRORS, WHETHER OR NOT DISCOVERABLE. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES, SO SUCH EXCLUSION MAY NOT APPLY TO YOU. . 6. Limitation on Liability. EXCEPT TO THE EXTENT REQUIRED BY APPLICABLE LAW, IN NO EVENT WILL LICENSOR BE LIABLE TO YOU ON ANY LEGAL THEORY FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES ARISING OUT OF THIS LICENSE OR THE USE OF THE WORK, EVEN IF LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. . 7. Termination . a. This License and the rights granted hereunder will terminate automatically upon any breach by You of the terms of this License. Individuals or entities who have received Derivative Works or Collective Works from You under this License, however, will not have their licenses terminated provided such individuals or entities remain in full compliance with those licenses. Sections 1, 2, 5, 6, 7, and 8 will survive any termination of this License. . b. Subject to the above terms and conditions, the license granted here is perpetual (for the duration of the applicable copyright in the Work). Notwithstanding the above, Licensor reserves the right to release the Work under different license terms or to stop distributing the Work at any time; provided, however that any such election will not serve to withdraw this License (or any other license that has been, or is required to be, granted under the terms of this License), and this License will continue in full force and effect unless terminated as stated above. . 8. Miscellaneous . a. Each time You distribute or publicly digitally perform the Work or a Collective Work, the Licensor offers to the recipient a license to the Work on the same terms and conditions as the license granted to You under this License. . b. Each time You distribute or publicly digitally perform a Derivative Work, Licensor offers to the recipient a license to the original Work on the same terms and conditions as the license granted to You under this License. . c. If any provision of this License is invalid or unenforceable under applicable law, it shall not affect the validity or enforceability of the remainder of the terms of this License, and without further action by the parties to this agreement, such provision shall be reformed to the minimum extent necessary to make such provision valid and enforceable. . d. No term or provision of this License shall be deemed waived and no breach consented to unless such waiver or consent shall be in writing and signed by the party to be charged with such waiver or consent. . e. This License constitutes the entire agreement between the parties with respect to the Work licensed here. There are no understandings, agreements or representations with respect to the Work not specified here. Licensor shall not be bound by any additional provisions that may appear in any communication from You. This License may not be modified without the mutual written agreement of the Licensor and You. . Creative Commons is not a party to this License, and makes no warranty whatsoever in connection with the Work. Creative Commons will not be liable to You or any party on any legal theory for any damages whatsoever, including without limitation any general, special, incidental or consequential damages arising in connection to this license. Notwithstanding the foregoing two (2) sentences, if Creative Commons has expressly identified itself as the Licensor hereunder, it shall have all rights and obligations of Licensor. . Except for the limited purpose of indicating to the public that the Work is licensed under the CCPL, neither party will use the trademark "Creative Commons" or any related trademark or logo of Creative Commons without the prior written consent of Creative Commons. Any permitted use will be in compliance with Creative Commons' then-current trademark usage guidelines, as may be published on its website or otherwise made available upon request from time to time. . Creative Commons may be contacted at http://creativecommons.org/. License: GPL-1+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . On Debian systems, the full text of the GNU General Public License version 1 can be found in the file `/usr/share/common-licenses/GPL-1' License: GPL-2 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2 of the License. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . On Debian systems, the full text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. License: GPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . On Debian systems, the full text of the GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/GPL-2'. License: LGPL-2.1 Section 3 of the LGPL states that any code derived from an LGPL application may be relicenced under the GPL, this applies to this source . On Debian systems, the full text of the Lesser GNU General Public License version 2 can be found in the file `/usr/share/common-licenses/LGPL-2.1'. License: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. License: PD There's absolutely no warranty. . Please be sure to update the Version line if you edit this file in any way. It is suggested that you leave the main version number intact, but indicate your project name (after the slash) and add your own revision information. . Please do not change the "private" password hashing method implemented in here, thereby making your hashes incompatible. However, if you must, please change the hash type identifier (the "$P$") to something different. . Obviously, since this code is in the public domain, the above are not requirements (there can be none), but merely suggestions. License: PHP-3.01 -------------------------------------------------------------------- The PHP License, version 3.01 Copyright (c) 1999 - 2010 The PHP Group. All rights reserved. -------------------------------------------------------------------- . Redistribution and use in source and binary forms, with or without modification, is permitted provided that the following conditions are met: . 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . 3. The name "PHP" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact group@php.net. . 4. Products derived from this software may not be called "PHP", nor may "PHP" appear in their name, without prior written permission from group@php.net. You may indicate that your software works in conjunction with PHP by saying "Foo for PHP" instead of calling it "PHP Foo" or "phpfoo" . 5. The PHP Group may publish revised and/or new versions of the license from time to time. Each version will be given a distinguishing version number. Once covered code has been published under a particular version of the license, you may always continue to use it under the terms of that version. You may also choose to use such covered code under the terms of any subsequent version of the license published by the PHP Group. No one other than the PHP Group has the right to modify the terms applicable to covered code created under this License. . 6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes PHP software, freely available from ". . THIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PHP DEVELOPMENT TEAM OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. . -------------------------------------------------------------------- . This software consists of voluntary contributions made by many individuals on behalf of the PHP Group. . The PHP Group can be contacted via Email at group@php.net. . For more information on the PHP Group and the PHP project, please see . . PHP includes the Zend Engine, freely available at . debian/README.postgresql0000644000000000000000000000454511534725603012266 0ustar How to setup the postgresql database ==================================== As far as postgresql is concerned, dbconfig-common is still limited, meaning authentication to the postgresql server has to be setup manually. We show a typical postgresql default config (/etc/postgresql/x.y/zz/pg_hba.conf), where the line that is to be added and allows access to phpbb as it is configured by this package is prepended with a plus (+) sign. (The plus sign is NOT to be copied to the config!) # TYPE DATABASE USER CIDR-ADDRESS METHOD local all postgres ident sameuser +local phpbb3 phpbb3 md5 local all all ident sameuser host all all 127.0.0.1/32 md5 host all all ::1/128 md5 Note that the entry has to be made at the shown location and not simply at the end of the file. Reload postgresql for the changes to take effect. The password that you entered during installation will be used by phpbb to authenticate to the database; you don't need to put it anywhere else. To give more users access to more databases just add other lines like the above to the configuration. You can use the same user and the same database for different forums by specifying a different table_prefix for each installation in the phpBB config. Note that all users can however access all databases then. Further examples when adding more forums: # same user, different database: # let's hope they don't guess the name of the other databases local phpbb3-2 phpbb3 md5 # different user, same database: # only makes sense when you set table-specific privileges local phpbb3 phpbb3-2 md5 # different user, different database: # the way things should be local phpbb3-2 phpbb3-2 md5 Again: do not simply add any of these to the bottom of the config file, but at the location that was shown in the first example, i.e. before the authentication for "all" is defined for the connection method that you choose to employ (local=Unix-domain socket, host=TCP/IP). For further details about client authentication to PostgreSQL, please consult the excellent documentation at http://www.postgresql.org/docs/7.4/static/client-authentication.html. debian/po/0000755000000000000000000000000012261420726007606 5ustar debian/po/cs.po0000644000000000000000000001024011534725603010554 0ustar # # Translators, if you are not familiar with the PO format, gettext # documentation is worth reading, especially sections dedicated to # this format, e.g. by running: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # # Some information specific to po-debconf are available at # /usr/share/doc/po-debconf/README-trans # or http://www.debian.org/intl/l10n/po-debconf/README-trans # # Developers do not need to manually edit POT or PO files. # msgid "" msgstr "" "Project-Id-Version: phpbb3\n" "Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n" "POT-Creation-Date: 2010-05-27 20:41-0400\n" "PO-Revision-Date: 2010-05-30 16:51+0200\n" "Last-Translator: Miroslav Kure \n" "Language-Team: Czech \n" "Language: cs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "Web server to configure automatically:" msgstr "Webové servery, které se mají nastavit automaticky:" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "" "Please select any web server that should be configured automatically for " "phpBB." msgstr "Vyberte webové servery, které se mají automaticky nastavit pro phpBB." #. Type: boolean #. Description #: ../phpbb3.templates:2001 msgid "Configure the phpBB admin password?" msgstr "Nastavit správcovské heslo phpBB?" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Password for phpBB admin:" msgstr "Heslo pro správce phpBB:" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Please provide a password for the phpBB user \"admin\"." msgstr "Zadejte heslo pro phpBB uživatele „admin“." #. Type: password #. Description #. Type: error #. Description #: ../phpbb3.templates:3001 ../phpbb3.templates:7001 msgid "The password must be at least 6 characters long." msgstr "Heslo musí mít alespoň 6 znaků." #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "If the password is left blank, a random one will be generated." msgstr "Ponecháte-li prázdné, vygeneruje se náhodné heslo." #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Password confirmation:" msgstr "Potvrzení hesla:" #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Please confirm the password for the phpBB user \"admin\"." msgstr "Potvrďte heslo pro phpBB uživatele „admin“." #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "Password mismatch" msgstr "Hesla nesouhlasí" #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "The two passwords you entered were not the same. Please try again." msgstr "Zadaná hesla nejsou stejná. Zadejte je prosím znovu." #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Generation of random password" msgstr "Generování náhodného hesla" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "The following random password has been configured for the admin user:" msgstr "Uživateli „admin“ bylo vygenerováno následující náhodné heslo:" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Make sure you remember it, as it will not be stored in cleartext." msgstr "" "Heslo si zapamatujte, protože jeho čitelná podoba nebude nikde uložena." #. Type: error #. Description #: ../phpbb3.templates:7001 msgid "Password complexity requirements" msgstr "Požadavky na složitost hesla" #~ msgid "" #~ "phpBB runs on any webserver with PHP support. However, only Apache " #~ "variants are currently supported by this configuration script. Select the " #~ "one(s) you want to configure." #~ msgstr "" #~ "phpBB běží na libovolném webovém serveru s podporou PHP, ale konfigurační " #~ "skript momentálně podporuje pouze různé varianty Apache. Vyberte tu, " #~ "kterou chcete nastavit." #~ msgid "" #~ "Note: You will need to restart the server(s) yourself (typically by " #~ "running something like /etc/init.d/apache-??? reload)." #~ msgstr "" #~ "Poznámka: servery pak budete muset restartovat sami (obvykle příkazem " #~ "jako /etc/init.d/apache-??? reload)." debian/po/it.po0000644000000000000000000000645311534725603010576 0ustar # Italian (it) translation of debconf templates for phpbb3 # COPYRIGHT (C) 2010 THE PHPBB3'S COPYRIGHT HOLDER # This file is distributed under the same license as the phpbb3 package. # Luca Monducci , 2010. # msgid "" msgstr "" "Project-Id-Version: phpbb3 3.0.7-PL1-2 debconf templates\n" "Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n" "POT-Creation-Date: 2010-05-27 20:41-0400\n" "PO-Revision-Date: 2010-05-30 13:54+0200\n" "Last-Translator: Luca Monducci \n" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "Web server to configure automatically:" msgstr "Server web da configurare automaticamente:" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "" "Please select any web server that should be configured automatically for " "phpBB." msgstr "" "Selezionare tutti i server web che devono essere automaticamente configurati " "per phpBB." #. Type: boolean #. Description #: ../phpbb3.templates:2001 msgid "Configure the phpBB admin password?" msgstr "Configurare la password per phpBB admin?" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Password for phpBB admin:" msgstr "Password per phpBB admin:" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Please provide a password for the phpBB user \"admin\"." msgstr "Inserire la password per l'utente \"admin\" di phpBB." #. Type: password #. Description #. Type: error #. Description #: ../phpbb3.templates:3001 ../phpbb3.templates:7001 msgid "The password must be at least 6 characters long." msgstr "La password deve essere lunga almeno 6 caratteri." #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "If the password is left blank, a random one will be generated." msgstr "Lasciando vuota la password, ne verrà generata una casuale." #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Password confirmation:" msgstr "Conferma della password:" #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Please confirm the password for the phpBB user \"admin\"." msgstr "Confermare la password dell'utente \"admin\" di phpBB." #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "Password mismatch" msgstr "Password diverse" #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "The two passwords you entered were not the same. Please try again." msgstr "Le due password inserite sono diverse. Riprovare." #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Generation of random password" msgstr "Generazione di una password casuale" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "The following random password has been configured for the admin user:" msgstr "La seguente password casuale è stata assegnata all'utente admin:" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Make sure you remember it, as it will not be stored in cleartext." msgstr "Fare in modo di ricordarla, perché non verrà memorizzata in chiaro." #. Type: error #. Description #: ../phpbb3.templates:7001 msgid "Password complexity requirements" msgstr "Requisiti di complessità della password" debian/po/ru.po0000644000000000000000000001214211534725603010600 0ustar # translation of ru.po to Russian # # Translators, if you are not familiar with the PO format, gettext # documentation is worth reading, especially sections dedicated to # this format, e.g. by running: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # Some information specific to po-debconf are available at # /usr/share/doc/po-debconf/README-trans # or http://www.debian.org/intl/l10n/po-debconf/README-trans# # Developers do not need to manually edit POT or PO files. # # Yuriy Talakan' , 2006. # Yuri Kozlov , 2010. msgid "" msgstr "" "Project-Id-Version: phpbb3 3.0.7-PL1-2\n" "Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n" "POT-Creation-Date: 2010-05-27 20:41-0400\n" "PO-Revision-Date: 2010-06-06 21:53+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "Web server to configure automatically:" msgstr "Веб-сервер для автоматической настройки:" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "" "Please select any web server that should be configured automatically for " "phpBB." msgstr "" "Выберите веб-сервер, который нужно настроить автоматически для работы phpBB." #. Type: boolean #. Description #: ../phpbb3.templates:2001 msgid "Configure the phpBB admin password?" msgstr "Настроить пароль к admin для phpBB?" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Password for phpBB admin:" msgstr "Пароль к admin для phpBB:" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Please provide a password for the phpBB user \"admin\"." msgstr "Введите пароль пользователя \"admin\" для phpBB." #. Type: password #. Description #. Type: error #. Description #: ../phpbb3.templates:3001 ../phpbb3.templates:7001 msgid "The password must be at least 6 characters long." msgstr "Пароль должен быть не менее 6 символов." #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "If the password is left blank, a random one will be generated." msgstr "" "Если оставить пароль пустым, то будет сгенерирован произвольный пароль." #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Password confirmation:" msgstr "Повторный ввод пароля:" #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Please confirm the password for the phpBB user \"admin\"." msgstr "Введите пароль для пользователя \"admin\" к phpBB ещё раз." #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "Password mismatch" msgstr "Пароли не совпадают" #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "The two passwords you entered were not the same. Please try again." msgstr "Введены разные пароли. Попробуйте ещё раз." #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Generation of random password" msgstr "Генерация произвольного пароля" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "The following random password has been configured for the admin user:" msgstr "Для пользователя admin был создан следующий произвольный пароль:" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Make sure you remember it, as it will not be stored in cleartext." msgstr "Запомните его, он не будет храниться в открытом виде." #. Type: error #. Description #: ../phpbb3.templates:7001 msgid "Password complexity requirements" msgstr "Требования к сложности пароля" #~ msgid "" #~ "phpBB runs on any webserver with PHP support. However, only Apache " #~ "variants are currently supported by this configuration script. Select the " #~ "one(s) you want to configure." #~ msgstr "" #~ "phpBB работает на любом веб-сервере с поддержкой PHP. Однако данный " #~ "сценарий настройки поддерживает только варианты Apache. Выберите нужный " #~ "сервер для настройки." #~ msgid "" #~ "Note: You will need to restart the server(s) yourself (typically by " #~ "running something like /etc/init.d/apache-??? reload)." #~ msgstr "" #~ "Замечание: Вам надо перезапустить сервер(ы) самостоятельно (обычно, " #~ "набрав что-то вида /etc/init.d/apache-??? reload)." debian/po/de.po0000644000000000000000000000673211534725603010552 0ustar # translation of po-debconf template to German # This file is distributed under the same license as the phpbb3 package. # # Copyright ©: # Matthias Julius , 2006, 2010. msgid "" msgstr "" "Project-Id-Version: phpbb3 3.0.7-PL1-2\n" "Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n" "POT-Creation-Date: 2010-05-27 18:45-0400\n" "PO-Revision-Date: 2010-06-06 23:57-0400\n" "Last-Translator: Matthias Julius \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "Web server to configure automatically:" msgstr "Automatisch zu konfigurierende Webserver:" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "" "Please select any web server that should be configured automatically for " "phpBB." msgstr "" "Bitte wählen Sie die Webserver aus, die automatisch für phpBB konfiguriert " "werden sollen." #. Type: boolean #. Description #: ../phpbb3.templates:2001 msgid "Configure the phpBB admin password?" msgstr "Das Passwort für den phpBB-Administrator konfigurieren?" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Password for phpBB admin:" msgstr "Passwort für den phpBB-Administrator:" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Please provide a password for the phpBB user \"admin\"." msgstr "Bitte geben Sie ein Passwort für den phpBB-Benutzer »admin« ein." #. Type: password #. Description #. Type: error #. Description #: ../phpbb3.templates:3001 ../phpbb3.templates:7001 msgid "The password must be at least 6 characters long." msgstr "Das Passwort muss mindestens 6 Zeichen lang sein." #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "If the password is left blank, a random one will be generated." msgstr "Falls das Passwort frei gelassen wird, wird ein zufälliges erzeugt." #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Password confirmation:" msgstr "Passwortbestätigung:" #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Please confirm the password for the phpBB user \"admin\"." msgstr "Bitte bestätigen Sie das Passwort für den phpBB-Benutzer »admin«." #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "Password mismatch" msgstr "Passwörter stimmen nicht überein" #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "The two passwords you entered were not the same. Please try again." msgstr "" "Die beiden Passwörter, die Sie eingegeben haben, stimmen nicht überein. " "Bitte versuchen Sie es erneut." #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Generation of random password" msgstr "Erzeugen eines zufälligen Passwortes" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "The following random password has been configured for the admin user:" msgstr "Das folgende zufällige Passwort wurde für den Administrator erzeugt:" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Make sure you remember it, as it will not be stored in cleartext." msgstr "" "Merken Sie sich das Passwort, da es nicht im Klartext gespeichert wird." #. Type: error #. Description #: ../phpbb3.templates:7001 msgid "Password complexity requirements" msgstr "Anforderungen an die Passwort-Komplexität" debian/po/pt.po0000644000000000000000000001102611534725603010575 0ustar # translation of phpbb3 debconf to Portuguese # Copyright (C) 2008 the phpbb3's copyright holder # This file is distributed under the same license as the phpbb3 package. # # Américo Monteiro , 2008, 2010. msgid "" msgstr "" "Project-Id-Version: phpbb3 3.0.7-PL1-1\n" "Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n" "POT-Creation-Date: 2010-05-27 18:45-0400\n" "PO-Revision-Date: 2010-05-28 00:29+0100\n" "Last-Translator: Américo Monteiro \n" "Language-Team: Portuguese \n" "Language: pt\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "Web server to configure automatically:" msgstr "Servidor web para configurar automaticamente:" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "" "Please select any web server that should be configured automatically for " "phpBB." msgstr "" "Por favor seleccione qualquer servidor web que deverá ser configurado " "automaticamente para o phpBB." #. Type: boolean #. Description #: ../phpbb3.templates:2001 msgid "Configure the phpBB admin password?" msgstr "Configurar a palavra-passe do administrador do phpBB?" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Password for phpBB admin:" msgstr "Palavra-passe para o administrador do phpBB:" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Please provide a password for the phpBB user \"admin\"." msgstr "" "Por favor forneça uma palavra-passe para o utilizador \"admin\" do phpBB." #. Type: password #. Description #. Type: error #. Description #: ../phpbb3.templates:3001 ../phpbb3.templates:7001 msgid "The password must be at least 6 characters long." msgstr "A palavra-passe tem de ter pelo menos 6 caracteres." #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "If the password is left blank, a random one will be generated." msgstr "Se a palavra-passe for deixada em branco, será gerada uma aleatória." #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Password confirmation:" msgstr "Confirmação da palavra-passe:" #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Please confirm the password for the phpBB user \"admin\"." msgstr "" "Por favor confirme a palavra-passe para o utilizador \"admin\" do phpBB." #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "Password mismatch" msgstr "As palavras-passe não condizem" #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "The two passwords you entered were not the same. Please try again." msgstr "" "As duas palavras-passe que inseriu não são iguais. Por favor tente de novo." #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Generation of random password" msgstr "Geração de palavra-passe aleatória" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "The following random password has been configured for the admin user:" msgstr "" "A seguinte palavra-passe aleatória foi configurada para o utilizador admin:" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Make sure you remember it, as it will not be stored in cleartext." msgstr "" "Certifique-se que a memoriza, pois não vai ser guardada em texto normal." #. Type: error #. Description #: ../phpbb3.templates:7001 msgid "Password complexity requirements" msgstr "Requisitos de complexidade da palavra-passe" #~ msgid "The password must not be 'admin'." #~ msgstr "A palavra-passe não pode ser 'admin'." #~ msgid "The password and its confirmation do not match." #~ msgstr "A palavra-passe e a sua confirmação não condizem." #~ msgid "apache2" #~ msgstr "apache2" #~ msgid "lighttpd" #~ msgstr "lighttpd" #~ msgid "" #~ "phpBB runs on any webserver with PHP support. However, only Apache " #~ "variants are currently supported by this configuration script. Select the " #~ "one(s) you want to configure." #~ msgstr "" #~ "O phpBB corre em qualquer servidor web com suporte PHP. No entanto, " #~ "apenas as variantes Apache são actualmente suportadas por este script de " #~ "configuração. Seleccione aquele(s) que deseja configurar." #~ msgid "" #~ "Note: You will need to restart the server(s) yourself (typically by " #~ "running something like /etc/init.d/apache-??? reload)." #~ msgstr "" #~ "Nota: Terá que ser você a reiniciar o(s) servidor(es) (tipicamente " #~ "correndo algo como /etc/init.d/apache-??? reload)." debian/po/sv.po0000644000000000000000000000700211534725603010601 0ustar # translation of phpbb3_sv.po to Swedish # Translation of phpbb3 debconf template to Swedish # Copyright (C) 2010 Martin Bagge # This file is distributed under the same license as the phpbb3 package. # # Martin Ågren , 2010. # Martin Bagge , 2010. msgid "" msgstr "" "Project-Id-Version: phpbb3_sv\n" "Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n" "POT-Creation-Date: 2010-05-27 18:45-0400\n" "PO-Revision-Date: 2010-06-06 12:29+0200\n" "Last-Translator: Martin Ågren \n" "Language-Team: Swedish \n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Swedish\n" "X-Poedit-Country: Sweden\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: KBabel 1.11.4\n" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "Web server to configure automatically:" msgstr "Webbserver att konfigurera automatiskt:" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "Please select any web server that should be configured automatically for phpBB." msgstr "Välj webbserver som ska konfigureras automatiskt för phpBB." #. Type: boolean #. Description #: ../phpbb3.templates:2001 msgid "Configure the phpBB admin password?" msgstr "Ange lösenord för phpBB-administratör?" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Password for phpBB admin:" msgstr "Lösenord för phpBB-administratör:" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Please provide a password for the phpBB user \"admin\"." msgstr "Ange ett lösenord för phpBB-användaren \"admin\"." #. Type: password #. Description #. Type: error #. Description #: ../phpbb3.templates:3001 #: ../phpbb3.templates:7001 msgid "The password must be at least 6 characters long." msgstr "Lösenordet måste vara minst 6 tecken långt." #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "If the password is left blank, a random one will be generated." msgstr "Om lösenordsfältet lämnas tomt kommer ett slumpmässigt lösenord att användas." #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Password confirmation:" msgstr "Upprepa lösenord:" #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Please confirm the password for the phpBB user \"admin\"." msgstr "Upprepa lösenordet för phpBB-användaren \"admin\"." #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "Password mismatch" msgstr "Lösenorden stämmer inte överens" #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "The two passwords you entered were not the same. Please try again." msgstr "Lösenorden stämmer inte överens. Försök igen." #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Generation of random password" msgstr "Skapar slumpmässigt lösenord" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "The following random password has been configured for the admin user:" msgstr "Följande slumpmässiga lösenord har angivits för den administrativa användaren:" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Make sure you remember it, as it will not be stored in cleartext." msgstr "Lösenordet kommer inte att sparas i klartext, så se till att komma ihåg det." #. Type: error #. Description #: ../phpbb3.templates:7001 msgid "Password complexity requirements" msgstr "Krav på komplexitet för lösenord" debian/po/da.po0000644000000000000000000000650711534725603010546 0ustar # Danish translation for phpbb3. # Copyright (C) 2010 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the phpbb3 package. # Joe Hansen , 2010. # msgid "" msgstr "" "Project-Id-Version: phpbb3\n" "Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n" "POT-Creation-Date: 2010-05-27 18:45-0400\n" "PO-Revision-Date: 2010-05-30 17:30+01:00\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "Web server to configure automatically:" msgstr "Internetserver der skal konfigureres automatisk:" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "" "Please select any web server that should be configured automatically for " "phpBB." msgstr "" "Vælg venligst en internetserver, som skal konfigureres automatisk til " "phpBB." #. Type: boolean #. Description #: ../phpbb3.templates:2001 msgid "Configure the phpBB admin password?" msgstr "Konfigurer administratoradgangskoden til phpBB?" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Password for phpBB admin:" msgstr "Adgangskode til phpBB-administrator:" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Please provide a password for the phpBB user \"admin\"." msgstr "Angiv venligst en adgangskode til phpBB-brugeren »admin«." #. Type: password #. Description #. Type: error #. Description #: ../phpbb3.templates:3001 ../phpbb3.templates:7001 msgid "The password must be at least 6 characters long." msgstr "Adgangskoden skal være mindst 6 tegn lang." #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "If the password is left blank, a random one will be generated." msgstr "Hvis adgangskoden er uudfyldt, vil en tilfældig blive oprettet." #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Password confirmation:" msgstr "Bekræftelse af adgangskode:" #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Please confirm the password for the phpBB user \"admin\"." msgstr "Bekræft venligst adgangskoden for phpBB-brugeren »admin«." #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "Password mismatch" msgstr "Forskellige adgangskoder" #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "The two passwords you entered were not the same. Please try again." msgstr "De to adgangskoder, du indtastede, var ikke ens. Forsøg venligst igen." #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Generation of random password" msgstr "Oprettelse af tilfældig adgangskode" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "The following random password has been configured for the admin user:" msgstr "Den følgende tilfældige adgangskode er blevet konfigureret for administratorbrugeren:" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Make sure you remember it, as it will not be stored in cleartext." msgstr "Vær sikker på, at du husker den, da den ikke vil blive gemt i almindeligt tekstformat." #. Type: error #. Description #: ../phpbb3.templates:7001 msgid "Password complexity requirements" msgstr "Kompleksitetskrav for adgangskode" debian/po/nl.po0000644000000000000000000000712211534725603010565 0ustar # # Translators, if you are not familiar with the PO format, gettext # documentation is worth reading, especially sections dedicated to # this format, e.g. by running: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # # Some information specific to po-debconf are available at # /usr/share/doc/po-debconf/README-trans # or http://www.debian.org/intl/l10n/po-debconf/README-trans # # Developers do not need to manually edit POT or PO files. # msgid "" msgstr "" "Project-Id-Version: phpbb2 2.0.18-2\n" "Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n" "POT-Creation-Date: 2010-05-27 20:41-0400\n" "PO-Revision-Date: 2010-05-30 18:16+0200\n" "Last-Translator: Thijs Kinkhorst \n" "Language-Team: Dutch \n" "Language: nl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "Web server to configure automatically:" msgstr "Webserver(s) om in te stellen:" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "" "Please select any web server that should be configured automatically for " "phpBB." msgstr "" "Geef aan welke webserver(s) automatisch geconfigureerd moeten " "worden voor phpBB." #. Type: boolean #. Description #: ../phpbb3.templates:2001 msgid "Configure the phpBB admin password?" msgstr "phpBB beheerswachtwoord instellen?" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Password for phpBB admin:" msgstr "Wachtwoord voor de phpBB-beheerder:" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Please provide a password for the phpBB user \"admin\"." msgstr "Geef een wachtwoord voor de phpBB-gebruiker \"admin\"." #. Type: password #. Description #. Type: error #. Description #: ../phpbb3.templates:3001 ../phpbb3.templates:7001 msgid "The password must be at least 6 characters long." msgstr "Het wachtwoord moet minstens 6 karakters land zijn." #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "If the password is left blank, a random one will be generated." msgstr "" "Wordt het veld leeggelaten, dan zal een willekeurig wachtwoord worden " "gegenereerd." #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Password confirmation:" msgstr "Bevestig wachtwoord:" #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Please confirm the password for the phpBB user \"admin\"." msgstr "" "Geef ter bevestiging nogmaals het wachtwoord voor de phpBB-" "gebruiker \"admin\"." #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "Password mismatch" msgstr "Wachtwoorden komen niet overeen" #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "The two passwords you entered were not the same. Please try again." msgstr "" "De twee ingegeven wachtwoorden komen niet overeen. Probeer " "het s.v.p. opnieuw." #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Generation of random password" msgstr "Willekeurig wachtwoord gegenereerd" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "The following random password has been configured for the admin user:" msgstr "Het volgende wachtwoord is gegenereerd voor de beheerder:" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Make sure you remember it, as it will not be stored in cleartext." msgstr "Onthoud het goed, aangezien het niet in cleartext wordt opgeslagen." #. Type: error #. Description #: ../phpbb3.templates:7001 msgid "Password complexity requirements" msgstr "Eisen aan het wachtwoord" debian/po/POTFILES.in0000644000000000000000000000005311534725603011365 0ustar [type: gettext/rfc822deb] phpbb3.templates debian/po/pt_BR.po0000644000000000000000000000650511735702776011177 0ustar # Debconf translations for phpbb3. # Copyright (C) 2012 THE phpbb3'S COPYRIGHT HOLDER # This file is distributed under the same license as the phpbb3 package. # J.S.Júnior , 2012. # msgid "" msgstr "" "Project-Id-Version: phpbb3\n" "Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n" "POT-Creation-Date: 2010-05-27 20:41-0400\n" "PO-Revision-Date: 2012-02-25 02:15-0200\n" "Last-Translator: J.S.Júnior \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "Web server to configure automatically:" msgstr "Servidor web para configurar automaticamente:" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "" "Please select any web server that should be configured automatically for " "phpBB." msgstr "" "Por favor, selecione um servidor web para ser configurado automaticamente " "para o phpBB." #. Type: boolean #. Description #: ../phpbb3.templates:2001 msgid "Configure the phpBB admin password?" msgstr "Configurar a senha para o admin do phpBB?" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Password for phpBB admin:" msgstr "Senha para admin do phpBB:" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Please provide a password for the phpBB user \"admin\"." msgstr "Por favor, forneça uma senha para o usuário \"admin\" do phpBB." #. Type: password #. Description #. Type: error #. Description #: ../phpbb3.templates:3001 ../phpbb3.templates:7001 msgid "The password must be at least 6 characters long." msgstr "A senha deve ter pelo menos 6 caracteres." #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "If the password is left blank, a random one will be generated." msgstr "Se a senha for deixada em branco, uma senha aleatória será gerada." #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Password confirmation:" msgstr "Confirmação de senha:" #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Please confirm the password for the phpBB user \"admin\"." msgstr "Por favor, confirme a senha para o usuário \"admin\" do phpBB." #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "Password mismatch" msgstr "Senhas não conferem" #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "The two passwords you entered were not the same. Please try again." msgstr "" "As duas senhas que você digitou eram diferentes. Por favor, tente novamente." #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Generation of random password" msgstr "Geração de senha aleatória" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "The following random password has been configured for the admin user:" msgstr "A seguinte senha aleatória foi configurada para o usuário admin:" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Make sure you remember it, as it will not be stored in cleartext." msgstr "" "Certifique-se de lembrá-la, uma vez que não será armazenada em texto puro." #. Type: error #. Description #: ../phpbb3.templates:7001 msgid "Password complexity requirements" msgstr "Requisitos de complexidade de senha" debian/po/templates.pot0000644000000000000000000000500711654121135012327 0ustar # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n" "POT-Creation-Date: 2010-05-27 20:41-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "Web server to configure automatically:" msgstr "" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "" "Please select any web server that should be configured automatically for " "phpBB." msgstr "" #. Type: boolean #. Description #: ../phpbb3.templates:2001 msgid "Configure the phpBB admin password?" msgstr "" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Password for phpBB admin:" msgstr "" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Please provide a password for the phpBB user \"admin\"." msgstr "" #. Type: password #. Description #. Type: error #. Description #: ../phpbb3.templates:3001 ../phpbb3.templates:7001 msgid "The password must be at least 6 characters long." msgstr "" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "If the password is left blank, a random one will be generated." msgstr "" #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Password confirmation:" msgstr "" #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Please confirm the password for the phpBB user \"admin\"." msgstr "" #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "Password mismatch" msgstr "" #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "The two passwords you entered were not the same. Please try again." msgstr "" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Generation of random password" msgstr "" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "The following random password has been configured for the admin user:" msgstr "" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Make sure you remember it, as it will not be stored in cleartext." msgstr "" #. Type: error #. Description #: ../phpbb3.templates:7001 msgid "Password complexity requirements" msgstr "" debian/po/es.po0000644000000000000000000001172611534725603010570 0ustar # phpbb3 po-debconf translation to Spanish # Copyright (C) 2010 Software in the Public Interest # This file is distributed under the same license as the phpbb3 package. # # Changes: # - Initial translation # Francisco Javier Cuadrado , 2010 # # Traductores, si no conocen el formato PO, merece la pena leer la # documentación de gettext, especialmente las secciones dedicadas a este # formato, por ejemplo ejecutando: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # # Equipo de traducción al español, por favor lean antes de traducir # los siguientes documentos: # # - El proyecto de traducción de Debian al español # http://www.debian.org/intl/spanish/ # especialmente las notas y normas de traducción en # http://www.debian.org/intl/spanish/notas # # - La guía de traducción de po's de debconf: # /usr/share/doc/po-debconf/README-trans # o http://www.debian.org/intl/l10n/po-debconf/README-trans # msgid "" msgstr "" "Project-Id-Version: phpbb3 3.0.7-PL1-2\n" "Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n" "POT-Creation-Date: 2010-05-27 18:45-0400\n" "PO-Revision-Date: 2010-05-28 08:08+0100\n" "Last-Translator: Francisco Javier Cuadrado \n" "Language-Team: Debian l10n Spanish \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "Web server to configure automatically:" msgstr "Servidor web a configurar automáticamente:" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "Please select any web server that should be configured automatically for phpBB." msgstr "Escoja el servidor web que se debería configurar automáticamente para phpBB." #. Type: boolean #. Description #: ../phpbb3.templates:2001 msgid "Configure the phpBB admin password?" msgstr "¿Desea configurar la contraseña del usuario «admin» de phpBB?" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Password for phpBB admin:" msgstr "Contraseña del usuario «admin» de phpBB:" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Please provide a password for the phpBB user \"admin\"." msgstr "Introduzca una contraseña para el usuario «admin» de phpBB." #. Type: password #. Description #. Type: error #. Description #: ../phpbb3.templates:3001 #: ../phpbb3.templates:7001 msgid "The password must be at least 6 characters long." msgstr "La contraseña debe tener una longitud de al menos seis caracteres." #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "If the password is left blank, a random one will be generated." msgstr "Si la contraseña se deja en blanco, se generará una aleatoria." #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Password confirmation:" msgstr "Confirmación de la contraseña:" #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Please confirm the password for the phpBB user \"admin\"." msgstr "Confirme la contraseña del usuario «admin» de phpBB." #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "Password mismatch" msgstr "Las contraseñas no coinciden" #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "The two passwords you entered were not the same. Please try again." msgstr "Las dos contraseñas que ha introducido no son iguales. Por favor, inténtelo de nuevo." #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Generation of random password" msgstr "Generación de una contraseña aleatoria" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "The following random password has been configured for the admin user:" msgstr "Se ha configurado la siguiente contraseña aleatoria para el usuario «admin»." #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Make sure you remember it, as it will not be stored in cleartext." msgstr "Asegúrese de que la recuerda, ya que no se guardará en texto claro." #. Type: error #. Description #: ../phpbb3.templates:7001 msgid "Password complexity requirements" msgstr "Requisitos de la complejidad de la contraseña" #~ msgid "apache2" #~ msgstr "apache2" #~ msgid "lighttpd" #~ msgstr "lighttpd" #~ msgid "" #~ "phpBB runs on any webserver with PHP support. However, only Apache " #~ "variants are currently supported by this configuration script. Select the " #~ "one(s) you want to configure." #~ msgstr "" #~ "phpBB funciona sobre cualquier servidor web que pueda usar PHP. Sin " #~ "embargo, sólo las variantes de Apache se pueden usar con este script de " #~ "configuración. Escoja el/los que quiere configurar:" #~ msgid "" #~ "Note: You will need to restart the server(s) yourself (typically by " #~ "running something like /etc/init.d/apache-??? reload)." #~ msgstr "" #~ "Aviso: Necesitará reiniciar el/los servidor/es (normalmente ejecutando " #~ "algo similar a «/etc/init.d/apache-??? reload»)." debian/po/vi.po0000644000000000000000000000673411534725603010602 0ustar # Vietnamese translation for phpbb3. # Copyright © 2010 Free Software Foundation, Inc. # Clytie Siddall , 2005-2010. # msgid "" msgstr "" "Project-Id-Version: phpbb3 3.0.7-PL1-2\n" "Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n" "POT-Creation-Date: 2010-05-27 18:45-0400\n" "PO-Revision-Date: 2010-09-30 18:08+0930\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n" "Language: vi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: LocFactoryEditor 1.8\n" #: ../phpbb3.templates:1001 #. Type: multiselect #. Description msgid "Web server to configure automatically:" msgstr "Trình phục vụ Web cần tự động cấu hình:" #: ../phpbb3.templates:1001 #. Type: multiselect #. Description msgid "" "Please select any web server that should be configured automatically for " "phpBB." msgstr "Hãy chọn bất cứ trình phục vụ Web nào cần tự động cấu hình cho phpBB." #: ../phpbb3.templates:2001 #. Type: boolean #. Description msgid "Configure the phpBB admin password?" msgstr "Lập mật khẩu quản trị phpBB ?" #: ../phpbb3.templates:3001 #. Type: password #. Description msgid "Password for phpBB admin:" msgstr "Mật khẩu cho quản trị phpBB:" #: ../phpbb3.templates:3001 #. Type: password #. Description msgid "Please provide a password for the phpBB user \"admin\"." msgstr "Hãy cung cấp một mật khẩu cho người dùng phpBB « admin » (quản trị)." #: ../phpbb3.templates:3001 #: ../phpbb3.templates:7001 #. Type: password #. Description #. Type: error #. Description msgid "The password must be at least 6 characters long." msgstr "Mật khẩu này phải có chiều dài ít nhất 6 ký tự." #: ../phpbb3.templates:3001 #. Type: password #. Description msgid "If the password is left blank, a random one will be generated." msgstr "Bỏ trống trường mật khẩu này thì tự động tạo ra một mật khẩu ngẫu nhiên." #: ../phpbb3.templates:4001 #. Type: password #. Description msgid "Password confirmation:" msgstr "Xác nhận mật khẩu :" #: ../phpbb3.templates:4001 #. Type: password #. Description msgid "Please confirm the password for the phpBB user \"admin\"." msgstr "Hãy gõ lại mật khẩu cho người dùng phpBB « admin » (quản trị)." #: ../phpbb3.templates:5001 #. Type: error #. Description msgid "Password mismatch" msgstr "Sai khớp mật khẩu" #: ../phpbb3.templates:5001 #. Type: error #. Description msgid "The two passwords you entered were not the same. Please try again." msgstr "Bạn đã gõ hai mật khẩu khác nhau. Hãy thử lại." #: ../phpbb3.templates:6001 #. Type: note #. Description msgid "Generation of random password" msgstr "Tạo ra mật khẩu ngẫu nhiên" #: ../phpbb3.templates:6001 #. Type: note #. Description msgid "The following random password has been configured for the admin user:" msgstr "Mật khẩu ngẫu nhiên theo đây đã được lập cho người dùng quản trị:" #: ../phpbb3.templates:6001 #. Type: note #. Description msgid "Make sure you remember it, as it will not be stored in cleartext." msgstr "Ghi nhớ nhé, vì mật khẩu này không phải được cất giữ như văn bản rõ." #: ../phpbb3.templates:7001 #. Type: error #. Description msgid "Password complexity requirements" msgstr "Yêu cầu mức phức tạp mật khẩu" debian/po/ja.po0000644000000000000000000000734711534725603010557 0ustar # # Translators, if you are not familiar with the PO format, gettext # documentation is worth reading, especially sections dedicated to # this format, e.g. by running: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # # Some information specific to po-debconf are available at # /usr/share/doc/po-debconf/README-trans # or http://www.debian.org/intl/l10n/po-debconf/README-trans # # Developers do not need to manually edit POT or PO files. # # msgid "" msgstr "" "Project-Id-Version: phpbb3 3.0.7-PL1-2\n" "Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n" "POT-Creation-Date: 2010-05-27 18:45-0400\n" "PO-Revision-Date: 2010-07-29 15:58+0900\n" "Last-Translator: Hideki Yamane \n" "Language-Team: Japanese\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "Web server to configure automatically:" msgstr "自動的に設定する Web サーバ:" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "" "Please select any web server that should be configured automatically for " "phpBB." msgstr "phpBB 用に自動的に設定するウェブサーバを選んでください。" #. Type: boolean #. Description #: ../phpbb3.templates:2001 msgid "Configure the phpBB admin password?" msgstr "phpBB admin のパスワードを設定しますか?" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Password for phpBB admin:" msgstr "phpBB admin のパスワード:" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Please provide a password for the phpBB user \"admin\"." msgstr "phpBBの「admin」ユーザのパスワードを入力してください。" #. Type: password #. Description #. Type: error #. Description #: ../phpbb3.templates:3001 ../phpbb3.templates:7001 msgid "The password must be at least 6 characters long." msgstr "パスワードは最低 6 文字の長さが必要です。" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "If the password is left blank, a random one will be generated." msgstr "パスワードを空のままにすると、ランダムなパスワードが生成されます。" #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Password confirmation:" msgstr "パスワードの確認:" #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Please confirm the password for the phpBB user \"admin\"." msgstr "phpBBの「admin」ユーザのパスワードを再度入力してください。" #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "Password mismatch" msgstr "パスワードが一致しません" #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "The two passwords you entered were not the same. Please try again." msgstr "入力された二つのパスワードが同じではありません。再度入力してください。" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Generation of random password" msgstr "ランダムなパスワードの生成" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "The following random password has been configured for the admin user:" msgstr "以下のランダムパスワードが admin ユーザに対して設定されました:" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Make sure you remember it, as it will not be stored in cleartext." msgstr "これは平文で保存されませんので、きちんと覚えておいてください。" #. Type: error #. Description #: ../phpbb3.templates:7001 msgid "Password complexity requirements" msgstr "パスワードの複雑性要件" debian/po/fr.po0000644000000000000000000000733211534725603010566 0ustar # Translation of phpbb3 debconf templates to French # Copyright (C) 2004, 2010 Debian French l10n team # This file is distributed under the same license as the phpbb3 package. # # Translators: # Éric Madesclair , 2004. # David Prévot , 2010. msgid "" msgstr "" "Project-Id-Version: phpbb3 3.0.7-PL1-1\n" "Report-Msgid-Bugs-To: phpbb3@packages.debian.org\n" "POT-Creation-Date: 2010-05-27 19:57-0400\n" "PO-Revision-Date: 2010-05-27 20:26-0400\n" "Last-Translator: David Prévot \n" "Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "Web server to configure automatically:" msgstr "Serveur web à configurer automatiquement :" #. Type: multiselect #. Description #: ../phpbb3.templates:1001 msgid "" "Please select any web server that should be configured automatically for " "phpBB." msgstr "" "Veuillez choisir chaque serveur web à configurer automatiquement pour phpBB." #. Type: boolean #. Description #: ../phpbb3.templates:2001 msgid "Configure the phpBB admin password?" msgstr "Faut-il configurer le mot de passe de l'administrateur de phpBB ?" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Password for phpBB admin:" msgstr "Mot de passe pour l'administrateur de phpBB :" #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "Please provide a password for the phpBB user \"admin\"." msgstr "Veuillez fournir le mot de passe de l'identifiant « admin » de phpBB." #. Type: password #. Description #. Type: error #. Description #: ../phpbb3.templates:3001 ../phpbb3.templates:7001 msgid "The password must be at least 6 characters long." msgstr "Le mot de passe doit être composé d'au moins six caractères." #. Type: password #. Description #: ../phpbb3.templates:3001 msgid "If the password is left blank, a random one will be generated." msgstr "Si le champ est laissé vide, un mot de passe aléatoire sera créé." #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Password confirmation:" msgstr "Confirmation du mot de passe :" #. Type: password #. Description #: ../phpbb3.templates:4001 msgid "Please confirm the password for the phpBB user \"admin\"." msgstr "" "Veuillez confirmer le mot de passe de l'identifiant « admin » de phpBB." #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "Password mismatch" msgstr "Mots de passe différents" #. Type: error #. Description #: ../phpbb3.templates:5001 msgid "The two passwords you entered were not the same. Please try again." msgstr "" "Les deux mots de passes saisis ne correspondent pas. Veuillez recommencer." #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Generation of random password" msgstr "Création d'un mot de passe aléatoire" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "The following random password has been configured for the admin user:" msgstr "" "Le mot de passe aléatoire suivant a été configuré pour l'identifiant " "« admin » :" #. Type: note #. Description #: ../phpbb3.templates:6001 msgid "Make sure you remember it, as it will not be stored in cleartext." msgstr "" "Il est important de le retenir immédiatement, car il ne sera pas conservé en " "clair." #. Type: error #. Description #: ../phpbb3.templates:7001 msgid "Password complexity requirements" msgstr "Exigences de complexité pour le mot de passe" #~ msgid "apache2" #~ msgstr "Apache 2" #~ msgid "lighttpd" #~ msgstr "Lighttpd" debian/upstream/0000755000000000000000000000000012261414104011021 5ustar debian/upstream/phpbb3_l10n-eu.info0000644000000000000000000000017212261413646014327 0ustar Url=https://www.phpbb.com/customise/db/download/id_84782 Md5=e3630aefa9a81caa343dc4c829bd2fa2 Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-el.info0000644000000000000000000000017212261413703014310 0ustar Url=https://www.phpbb.com/customise/db/download/id_82608 Md5=719ebd991d5da61dead6066c1ca5473d Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-sl.info0000644000000000000000000000017212261413763014334 0ustar Url=https://www.phpbb.com/customise/db/download/id_91736 Md5=160ade5914ae83d2bd1b5abd0d7efe0e Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-ro.info0000644000000000000000000000017212261413751014333 0ustar Url=https://www.phpbb.com/customise/db/download/id_84641 Md5=9d34b11b60a3743af5bf1629fc14f6e3 Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-es-mx.info0000644000000000000000000000022612261414104014735 0ustar Url=https://www.phpbb.com/customise/db/download/id_92146 Md5=e89db8a2982e0a2e9730333d823ad76c Copyright=GPL-2 Include=yes RepackDirectoryStructure=-2 debian/upstream/phpbb3_l10n-sv.info0000644000000000000000000000022612261414104014334 0ustar Url=https://www.phpbb.com/customise/db/download/id_94846 Md5=e0044422e5fc5436169eff2a9e726eb0 Copyright=GPL-2 Include=yes RepackDirectoryStructure=-2 debian/upstream/phpbb3_l10n-nl-x-formal.info0000644000000000000000000000022612261414104016040 0ustar Url=https://www.phpbb.com/customise/db/download/id_91666 Md5=186577da55926e6061d06310cebfa11c Copyright=GPL-2 Include=yes RepackDirectoryStructure=-2 debian/upstream/phpbb3_l10n-it.info0000644000000000000000000000017212261413713014325 0ustar Url=https://www.phpbb.com/customise/db/download/id_91861 Md5=156de7eba20d9496790d2df228d40bd4 Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-bg.info0000644000000000000000000000017212261413654014305 0ustar Url=https://www.phpbb.com/customise/db/download/id_85730 Md5=5d406d182217b6ee13ff69e8aa2c7b56 Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-et.info0000644000000000000000000000017212261413667014331 0ustar Url=https://www.phpbb.com/customise/db/download/id_82848 Md5=83e5c48ca29c06ea0be981b7ae721670 Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-sr-latn.info0000644000000000000000000000017212261413757015301 0ustar Url=https://www.phpbb.com/customise/db/download/id_84606 Md5=faa0aacbb84942d63a32e791677d5416 Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-sk.info0000644000000000000000000000017212261413761014331 0ustar Url=https://www.phpbb.com/customise/db/download/id_93561 Md5=a6246724c3c68271cfb3e3b28db5d679 Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-zh-cmn-hans.info0000644000000000000000000000022612261414104016027 0ustar Url=https://www.phpbb.com/customise/db/download/id_91456 Md5=5076b8da3eb05291603bbf447e3e8404 Copyright=GPL-2 Include=yes RepackDirectoryStructure=-2 debian/upstream/phpbb3_l10n-ur.info0000644000000000000000000000017212261414001014326 0ustar Url=https://www.phpbb.com/customise/db/download/id_81743 Md5=ed2a625f2f32cb9be969b9e38c043b99 Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-ar.info0000644000000000000000000000017212261413643014315 0ustar Url=https://www.phpbb.com/customise/db/download/id_92651 Md5=299f6f3f16eb98ae1193140198ae8212 Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-fr.info0000644000000000000000000000017212261413673014325 0ustar Url=https://www.phpbb.com/customise/db/download/id_91611 Md5=27d2cf5daef6ffed0ef6bfc3871fb150 Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-hr.info0000644000000000000000000000017212261413660014323 0ustar Url=https://www.phpbb.com/customise/db/download/id_85022 Md5=41b34f7dfe99657503e54ed3eb1e0c51 Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-th.info0000644000000000000000000000017212261413773014332 0ustar Url=https://www.phpbb.com/customise/db/download/id_92706 Md5=dda8732b184c219d7a8f3fa5cce8306f Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-ja.info0000644000000000000000000000017212261413714014304 0ustar Url=https://www.phpbb.com/customise/db/download/id_92251 Md5=72298944125f1bffc3ab89cd783f9e21 Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-vi.info0000644000000000000000000000017212261414002014317 0ustar Url=https://www.phpbb.com/customise/db/download/id_84900 Md5=a5b7ac3cf050d36993efc3e3b72f72c7 Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-zh_cmn_hant.info0000644000000000000000000000022612261414104016174 0ustar Url=https://www.phpbb.com/customise/db/download/id_91411 Md5=88807f76df162315bad3c1f83ad6dfb7 Copyright=GPL-2 Include=yes RepackDirectoryStructure=-2 debian/upstream/phpbb3_l10n-nl.info0000644000000000000000000000022612261414104014315 0ustar Url=https://www.phpbb.com/customise/db/download/id_91751 Md5=af2c50989e1fe6b46f3dc3f105553eb0 Copyright=GPL-2 Include=yes RepackDirectoryStructure=-2 debian/upstream/phpbb3_l10n-mk.info0000644000000000000000000000017212261413731014320 0ustar Url=https://www.phpbb.com/customise/db/download/id_83006 Md5=a379dde609588adff0c44ac0170c307d Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-es-ar.info0000644000000000000000000000022612261414104014713 0ustar Url=https://www.phpbb.com/customise/db/download/id_91866 Md5=57a47e583f0359eb4609b908ca7ac7be Copyright=GPL-2 Include=yes RepackDirectoryStructure=-2 debian/upstream/phpbb3_l10n-fa.info0000644000000000000000000000017212261413742014301 0ustar Url=https://www.phpbb.com/customise/db/download/id_84784 Md5=521f44316085b7957c4f3d214a57e46e Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-be.info0000644000000000000000000000017212261413647014305 0ustar Url=https://www.phpbb.com/customise/db/download/id_85375 Md5=492eb2050196087d358a74f0c2714755 Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-da.info0000644000000000000000000000017212261413663014301 0ustar Url=https://www.phpbb.com/customise/db/download/id_91386 Md5=25bec01312eef1127ee0403c6602527d Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-pl.info0000644000000000000000000000017212261413745014331 0ustar Url=https://www.phpbb.com/customise/db/download/id_84758 Md5=6c702dc70fdceaebd2c2c1b73e518629 Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-id.info0000644000000000000000000000017212261413710014302 0ustar Url=https://www.phpbb.com/customise/db/download/id_81607 Md5=3a57cfe19d07c25953a91fa84bf44cab Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-pt-br.info0000644000000000000000000000017212261413651014736 0ustar Url=https://www.phpbb.com/customise/db/download/id_91801 Md5=0e9cf55cf2d3428fab4fcd535c4b7d05 Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-pt.info0000644000000000000000000000017212261413747014343 0ustar Url=https://www.phpbb.com/customise/db/download/id_91501 Md5=e4af74ad5cbfb07de71f1086f71154e2 Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-hu.info0000644000000000000000000000017212261413707014330 0ustar Url=https://www.phpbb.com/customise/db/download/id_82916 Md5=27f523fe7cde58108c135dbff8c0f00e Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-de.info0000644000000000000000000000022612261414104014274 0ustar Url=https://www.phpbb.com/customise/db/download/id_91416 Md5=9b06cdad852e61779775c0288e65fa7c Copyright=GPL-2 Include=yes RepackDirectoryStructure=-2 debian/upstream/phpbb3_l10n-he.info0000644000000000000000000000017212261413705014306 0ustar Url=https://www.phpbb.com/customise/db/download/id_93006 Md5=359b030ff73f3fc69820026fa1378a21 Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-gl.info0000644000000000000000000000017212261413674014321 0ustar Url=https://www.phpbb.com/customise/db/download/id_84646 Md5=6af4228ba94f35539ab4da1aab06dd4d Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-tr.info0000644000000000000000000000017212261413774014345 0ustar Url=https://www.phpbb.com/customise/db/download/id_91371 Md5=08f28eebd5e0c15363dd48650fdf0ca5 Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-en.info0000644000000000000000000000017112261414104014305 0ustar Url=https://www.phpbb.com/customise/db/download/id_91156 Md5=f58f74f391379ecaae2d8338d95c5f62 Copyright=GPL-2 Include=no debian/upstream/phpbb3_l10n-es.info0000644000000000000000000000022612261414104014313 0ustar Url=https://www.phpbb.com/customise/db/download/id_92601 Md5=a4181c508c0631441a5105fd632b94e3 Copyright=GPL-2 Include=yes RepackDirectoryStructure=-2 debian/upstream/phpbb3_l10n-ru.info0000644000000000000000000000017212261413752014342 0ustar Url=https://www.phpbb.com/customise/db/download/id_91291 Md5=45aa4adc3f7bdd1b79cd67d8e6a52c2e Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-uk.info0000644000000000000000000000017212261413776014341 0ustar Url=https://www.phpbb.com/customise/db/download/id_92276 Md5=ede3238ac332e28a9651aead37437da2 Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-fi.info0000644000000000000000000000017212261413671014312 0ustar Url=https://www.phpbb.com/customise/db/download/id_92961 Md5=22ebc703ae2ff309fd7f40a7c707eab2 Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-cs.info0000644000000000000000000000017212261413661014320 0ustar Url=https://www.phpbb.com/customise/db/download/id_85593 Md5=0ca9e75e123d47b60020062a03f814b6 Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-ca.info0000644000000000000000000000017212261413656014302 0ustar Url=https://www.phpbb.com/customise/db/download/id_91531 Md5=f031f043d351ced667c83f7b20f5384a Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-ku.info0000644000000000000000000000017212261413722014330 0ustar Url=https://www.phpbb.com/customise/db/download/id_84789 Md5=cf764f5fe4da460d6c618767368e69bc Copyright=GPL-2 Include=yes debian/upstream/phpbb3_l10n-es-x-tu.info0000644000000000000000000000022612261414104015206 0ustar Url=https://www.phpbb.com/customise/db/download/id_92696 Md5=2ae2238ebcd70af6f05beaeaa52e35d9 Copyright=GPL-2 Include=yes RepackDirectoryStructure=-2 debian/upstream/phpbb3_l10n-de-x-sie.info0000644000000000000000000000022612261414104015317 0ustar Url=https://www.phpbb.com/customise/db/download/id_91421 Md5=d209f53d73e9843096e62115b40531eb Copyright=GPL-2 Include=yes RepackDirectoryStructure=-2 debian/upstream/phpbb3_l10n-sr.info0000644000000000000000000000022612261414104014330 0ustar Url=https://www.phpbb.com/customise/db/download/id_92921 Md5=fb71189616786ccdce2a0be9404eb933 Copyright=GPL-2 Include=yes RepackDirectoryStructure=-2 debian/upstream/README0000644000000000000000000000014312235301264011702 0ustar This directory is ONLY used for debian/rules get-orig-source, and NOT in any other rule. --Jeroen debian/upstream/phpbb3_l10n-lt.info0000644000000000000000000000017212261413730014327 0ustar Url=https://www.phpbb.com/customise/db/download/id_94446 Md5=24c7fa38b541ba76dbaf257affa4ef50 Copyright=GPL-2 Include=yes debian/upstream/phpbb3.info0000644000000000000000000000021712235262740013064 0ustar Version=3.0.12 Md5=b841460cd4247e240e1b80d989e5fe4f Copyright=GPL-2 Include=yes Url=http://www.phpbb.com/files/release/phpBB-$Version.tar.bz2 debian/upstream/phpbb3_l10n-en-us.info0000644000000000000000000000017212261413641014740 0ustar Url=https://www.phpbb.com/customise/db/download/id_91116 Md5=24f7ac6977b46051b1af782f42d2545c Copyright=GPL-2 Include=yes debian/examples/0000755000000000000000000000000012221601105010772 5ustar debian/examples/lighttpd.conf0000644000000000000000000000006511534725603013501 0ustar alias.url += ("/phpbb/" => "/usr/share/phpbb3/www/") debian/examples/apache2.conf0000644000000000000000000000223012221601106013142 0ustar # Note: order matters Alias /phpbb/images /var/lib/phpbb3/images Alias /phpbb /usr/share/phpbb3/www php_flag register_globals off Options -Indexes +FollowSymlinks DirectoryIndex index.php = 2.3> Require all granted AllowOverride None order allow,deny allow from all ### Multisite examples (see README.multiboard for details) # For a second board on the same server using aliases: # #Alias /second_board/images /var/lib/phpbb3/images ### create! #Alias /second_board /usr/share/phpbb3/www # # php_value auto_prepend_file /etc/phpbb3/alternative_config.php # # For virtual host: # # # For using an alternative database (for multiple boards for example) # php_value auto_prepend_file /etc/phpbb3/virtualhost_config.php # # ServerName forum.example.com # DocumentRoot /usr/share/phpbb3/www # # You may need to workaround the global /images/ alias in your apache # # configuration, your mileage may vary # Alias /images /var/lib/phpbb3/images # debian/examples/config.php0000644000000000000000000000135511534725603012774 0ustar &2 fi if [ "$PB3DEBUG" = "sh" ]; then set -x fi if [ -f /usr/share/debconf/confmodule ]; then . /usr/share/debconf/confmodule fi if [ -f /usr/share/dbconfig-common/dpkg/postrm ]; then . /usr/share/dbconfig-common/dpkg/postrm dbc_go phpbb3 $@ fi if [ "$1" = "purge" ]; then for c in /etc/phpbb3/database.inc.php /etc/phpbb3/*.conf ; do if [ -x /usr/bin/ucf ]; then ucf --purge $c fi if [ -x /usr/bin/ucfr ]; then ucfr --purge phpbb3 $c fi rm -f $c done rm -Rf /etc/phpbb3 /var/cache/phpbb3 /var/lib/phpbb3 # remove other files generated manually via maintainer scripts rm /usr/share/phpbb3/www/images fi rm -Rf /usr/share/phpbb3/www/install-* rm -Rf /usr/share/dbconfig-common/data/phpbb3 #DEBHELPER# debian/README.svn0000644000000000000000000000550512235503170010656 0ustar To build a new upstream source release from just the contents of the Subversion repository, proceed as follows: - get the original tar.bz2 file phpBB-$VERSION.tar.bz2, where e.g. $VERSION=3.0.7-PL1 -- this can be achieved by running debian/rules get-orig-source if the changelog is up to date, and the upstream/phpbb3.info and upstream/phpbb3-l10n-*.info files as well (the second ones can be automatically updated using the update_languages scripts). - rename it phpbb3_$VERSION.orig.tar.bz2 (the script will do that for you) - do NOT just extract it to phpBB3, but into phpbb3-: mkdir phpbb3-$VERSION && cd phpbb3-$VERSION && \ tar -xj --strip 1 -f ../phpbb3_$VERSION.orig.tar.bz2 - move the debian folder in there, - get the language packs, which should already have been fetched by the script, which in fact calls debian/get-orig-source $VERSION l10n which is a wrapper for getting package components, - make sure the downloaded stuff is NOT inside the phpbb directory . |-- phpbb3-3.0.7-PL1 | |-- adm | |-- cache | |-- common.php | |-- config.php | |-- cron.php | |-- debian | |-- docs | |-- download | |-- faq.php | |-- feed.php | |-- files | |-- images | |-- includes | |-- index.php | |-- install | |-- l10n-ar [...] | |-- l10n-zh-cmn-hant | |-- language | |-- mcp.php | |-- memberlist.php | |-- posting.php | |-- report.php | |-- search.php | |-- store | |-- style.php | |-- styles | |-- ucp.php | |-- viewforum.php | |-- viewonline.php | `-- viewtopic.php |-- phpbb3_3.0.7-PL1.orig-l10n-ar.tar.gz [...] |-- phpbb3_3.0.7-PL1.orig-l10n-zh-cmn-hant.tar.gz `-- phpbb3_3.0.7-PL1.orig.tar.bz2 - inside phpbb3-$VERSION, extract the components e.g. like this (for .tar.xz only): for i in ../*orig-*.tar.xz; do dir=$(basename $i | sed 's/.*orig-\(.*\).tar.xz/\1/') mkdir $dir && tar -xa --strip 1 -C $dir -f $i done Note that the (sole) leading directory is stripped, just as dpkg-source would do. - Several files need to be taken care of, in case of a new upstream release (see also README.source): + debian/schema_data_debian.sql <- install/schemas/schema_data.sql + debian/database_update_debian.php <- install/database_update.php must be produced. The patches in maint-paches might come in handy. - build using your favorite tool: pdebuild, debuild -i [-us -uc] [--lintian-opts --pedantic], ... .info files in upstream ======================= get-orig-source will look at the filename of the info file in order to determine the .orig-XXX.tar.gz's name. The files have to be named _.info and must contain: - Url - Md5 Optionally they may contain: - Copyright - Include (yes/no, default: yes) - RepackDirectoryStructure (+/-, default:0) adds or strips trailing directories -- J.M. Roth, April 2010 debian/source/0000755000000000000000000000000011534725603010474 5ustar debian/source/format0000644000000000000000000000001411534725603011702 0ustar 3.0 (quilt) debian/phpbb3.links0000644000000000000000000000122212016560227011404 0ustar # target <- link_name var/cache/phpbb3/cache usr/share/phpbb3/www/cache var/lib/phpbb3/files usr/share/phpbb3/www/files var/lib/phpbb3/store usr/share/phpbb3/www/store #var/lib/phpbb3/images usr/share/phpbb3/www/images # see {pre,post}inst etc/phpbb3/styles usr/share/phpbb3/www/styles usr/share/phpbb3/styles/prosilver etc/phpbb3/styles/prosilver usr/share/phpbb3/styles/subsilver2 etc/phpbb3/styles/subsilver2 #usr/share/phpbb3/schemas usr/share/doc/phpbb3/schemas usr/share/doc/phpbb3/README.templates usr/share/phpbb3/styles/README usr/share/phpbb3/docs usr/share/doc/phpbb3/html usr/share/phpbb3/webserver-examples usr/share/doc/phpbb3/examples debian/patches/0000755000000000000000000000000012235301264010613 5ustar debian/patches/022_multisite_installer.patch0000644000000000000000000001265712235301264016326 0ustar Author: J.M. Roth Description: Modifies the newly shipped installer to - NOT show convert tab - be able to run even though config.php is there (which in Debian, it is always) - remove output that has no meaning/is confusing here or links to unexisting files Last-Update: 2013-09-28 --- a/install/database_update.php +++ b/install/database_update.php @@ -67,7 +67,7 @@ if (!defined('PHPBB_INSTALLED') || empty($dbms) || empty($acm_type)) { - die("Please read: INSTALL.html before attempting to update."); + die("Make sure you have a running board before trying to upgrade anything."); } // Load Extensions --- a/install/index.php +++ b/install/index.php @@ -244,14 +244,14 @@ } $setmodules = 1; - while (($file = readdir($dir)) !== false) + while (($file = readdir()) !== false) { if (preg_match('#^install_(.*?)\.' . $phpEx . '$#', $file)) { include($file); } } - closedir($dir); + closedir(); unset($setmodules); --- a/install/install_convert.php +++ b/install/install_convert.php @@ -10,7 +10,7 @@ /** */ - +return; if (!defined('IN_INSTALL')) { // Someone has tried to access the file direct. This is not a good idea, so exit --- a/install/install_install.php +++ b/install/install_install.php @@ -23,7 +23,7 @@ { include_once($phpbb_root_path . 'config.' . $phpEx); - if (defined('PHPBB_INSTALLED')) + if (empty($GLOBALS['dbhost'])) { return; } @@ -947,8 +947,8 @@ if (isset($_POST['dlconfig'])) { // They want a copy of the file to download, so send the relevant headers and dump out the data - header("Content-Type: text/x-delimtext; name=\"config.$phpEx\""); - header("Content-disposition: attachment; filename=config.$phpEx"); + header("Content-Type: text/x-delimtext; name=\"alternate_config.$phpEx\""); + header("Content-disposition: attachment; filename=alternate_config.$phpEx"); echo $config_data; exit; } @@ -1026,6 +1026,7 @@ // Replace backslashes and doubled slashes (could happen on some proxy setups) $name = str_replace(array('\\', '//'), '/', $name); + $name = preg_replace('#/-\w*?/#', '/', $name); $data['script_path'] = trim(dirname(dirname($name))); } @@ -1366,6 +1367,19 @@ WHERE config_name = 'captcha_gd'"; } + $db_debian = array( // config table (name,value) pairs + 'sitename' => 'Your new phpBB board', + 'site_desc' => 'Powered by Debian', + 'board_disable' => '1', + 'captcha_gd_x_grid' => rand(11,24), + 'captcha_gd_y_grid' => rand(6,24), + ); + foreach ($db_debian as $n => $v) { + $sql_ary[] = 'UPDATE ' . $data['table_prefix'] . "config + SET config_value = '$v' + WHERE config_name = '$n'"; + } + $ref = substr($referer, strpos($referer, '://') + 3); if (!(stripos($ref, $server_name) === 0)) @@ -1939,7 +1953,7 @@ $template->assign_vars(array( 'TITLE' => $lang['INSTALL_CONGRATS'], - 'BODY' => sprintf($lang['INSTALL_CONGRATS_EXPLAIN'], $config['version'], append_sid($phpbb_root_path . 'install/index.' . $phpEx, 'mode=convert&language=' . $data['language']), '../docs/README.html'), + 'BODY' => '', 'L_SUBMIT' => $lang['INSTALL_LOGIN'], 'U_ACTION' => append_sid($phpbb_root_path . 'adm/index.' . $phpEx, 'i=send_statistics&mode=send_statistics'), )); --- a/install/install_main.php +++ b/install/install_main.php @@ -24,7 +24,7 @@ 'module_title' => 'OVERVIEW', 'module_filename' => substr(basename(__FILE__), 0, -strlen($phpEx)-1), 'module_order' => 0, - 'module_subs' => array('INTRO', 'LICENSE', 'SUPPORT'), + 'module_subs' => array('INTRO'), 'module_stages' => '', 'module_reqs' => '' ); --- a/language/en/install.php +++ b/language/en/install.php @@ -288,7 +288,7 @@ 'NO_LOCATION' => 'Cannot determine location. If you know Imagemagick is installed, you may specify the location later within your administration control panel', 'NO_TABLES_FOUND' => 'No tables found.', - 'OVERVIEW_BODY' => 'Welcome to phpBB3!

phpBB® is the most widely used open source bulletin board solution in the world. phpBB3 is the latest installment in a package line started in 2000. Like its predecessors, phpBB3 is feature-rich, user-friendly, and fully supported by the phpBB Team. phpBB3 greatly improves on what made phpBB2 popular, and adds commonly requested features that were not present in previous versions. We hope it exceeds your expectations.

This installation system will guide you through installing phpBB3, updating to the latest version of phpBB3 from past releases, as well as converting to phpBB3 from a different discussion board system (including phpBB2). For more information, we encourage you to read the installation guide.

To read the phpBB3 license or learn about obtaining support and our stance on it, please select the respective options from the side menu. To continue, please select the appropriate tab above.', + 'OVERVIEW_BODY' => 'Welcome to phpBB3!

If you want to use the Database Updater to update your (multisite) database manually, click here. Remember that you have to do this for each one of your forums after each application update.', 'PCRE_UTF_SUPPORT' => 'PCRE UTF-8 support', 'PCRE_UTF_SUPPORT_EXPLAIN' => 'phpBB will not run if your PHP installation is not compiled with UTF-8 support in the PCRE extension.', debian/patches/031_fix_installer.patch0000644000000000000000000000227612027477517015107 0ustar Author: David Prévot Description: Fix PHPBB_ROOT_PATH in install-XXX (used in multiboard). Bug-Debian: http://bugs.debian.org/644276 Last-Update: 2011-11-11 --- a/install/database_update.php +++ b/install/database_update.php @@ -31,6 +31,8 @@ define('IN_PHPBB', true); define('IN_INSTALL', true); +define('PHPBB_ROOT_PATH', '/usr/share/phpbb3/www/'); + $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './../'; $phpEx = substr(strrchr(__FILE__, '.'), 1); --- a/install/index.php +++ b/install/index.php @@ -15,6 +15,8 @@ define('IN_INSTALL', true); /**#@-*/ +define('PHPBB_ROOT_PATH', '/usr/share/phpbb3/www/'); + $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './../'; $phpEx = substr(strrchr(__FILE__, '.'), 1); @@ -191,8 +193,8 @@ 'load_tplcompile' => '1' ); -$template->set_custom_template('../adm/style', 'admin'); -$template->assign_var('T_TEMPLATE_PATH', '../adm/style'); +$template->set_custom_template('/usr/share/phpbb3/www/adm/style', 'admin'); +$template->assign_var('T_TEMPLATE_PATH', '/usr/share/phpbb3/www/adm/style'); // the acp template is never stored in the database $user->theme['template_storedb'] = false; debian/patches/series0000644000000000000000000000023012221601111012010 0ustar 011_fix_version_display.patch 012_disable_version_check.patch 021_multisite.patch 022_multisite_installer.patch 031_fix_installer.patch fix_chown.patch debian/patches/011_fix_version_display.patch0000644000000000000000000000743112235301264016302 0ustar Author: Jeroen van Wolffelaar Description: Overrides the version display, such that it is clear a Debian package is used. Last-Update: 2013-09-28 --- a/adm/index.php +++ b/adm/index.php @@ -200,7 +200,7 @@ 'TRANSLATION_INFO' => (!empty($user->lang['TRANSLATION_INFO'])) ? $user->lang['TRANSLATION_INFO'] : '', 'S_COPYRIGHT_HTML' => $copyright_html, 'CREDIT_LINE' => $user->lang('POWERED_BY', 'phpBB® Forum Software © phpBB Group'), - 'VERSION' => $config['version']) + 'VERSION' => PHPBB_VERSION) ); $template->display('body'); --- a/common.php +++ b/common.php @@ -16,6 +16,8 @@ exit; } +define('PHPBB_VERSION', '@VERSION@'); + require($phpbb_root_path . 'includes/startup.' . $phpEx); if (file_exists($phpbb_root_path . 'config.' . $phpEx)) --- a/includes/acp/acp_styles.php +++ b/includes/acp/acp_styles.php @@ -2034,7 +2034,7 @@ if ($mode == 'style') { - $style_cfg = str_replace(array('{MODE}', '{NAME}', '{COPYRIGHT}', '{VERSION}'), array($mode, $style_row['style_name'], $style_row['style_copyright'], $config['version']), $this->style_cfg); + $style_cfg = str_replace(array('{MODE}', '{NAME}', '{COPYRIGHT}', '{VERSION}'), array($mode, $style_row['style_name'], $style_row['style_copyright'], PHPBB_VERSION), $this->style_cfg); $style_cfg .= (!$inc_template) ? "\nrequired_template = {$style_row['template_name']}" : ''; $style_cfg .= (!$inc_theme) ? "\nrequired_theme = {$style_row['theme_name']}" : ''; @@ -2065,7 +2065,7 @@ $db->sql_freeresult($result); } - $template_cfg = str_replace(array('{MODE}', '{NAME}', '{COPYRIGHT}', '{VERSION}', '{INHERIT_FROM}'), array($mode, $style_row['template_name'], $style_row['template_copyright'], $config['version'], $use_template_name), $this->template_cfg); + $template_cfg = str_replace(array('{MODE}', '{NAME}', '{COPYRIGHT}', '{VERSION}', '{INHERIT_FROM}'), array($mode, $style_row['template_name'], $style_row['template_copyright'], PHPBB_VERSION, $use_template_name), $this->template_cfg); $template_cfg .= "\n\nbbcode_bitfield = {$style_row['bbcode_bitfield']}"; @@ -2106,7 +2106,7 @@ // Export theme core code if ($mode == 'theme' || $inc_theme) { - $theme_cfg = str_replace(array('{MODE}', '{NAME}', '{COPYRIGHT}', '{VERSION}'), array($mode, $style_row['theme_name'], $style_row['theme_copyright'], $config['version']), $this->theme_cfg); + $theme_cfg = str_replace(array('{MODE}', '{NAME}', '{COPYRIGHT}', '{VERSION}'), array($mode, $style_row['theme_name'], $style_row['theme_copyright'], PHPBB_VERSION), $this->theme_cfg); // Read old cfg file $items = $cache->obtain_cfg_items($style_row); @@ -2145,7 +2145,7 @@ // Export imageset core code if ($mode == 'imageset' || $inc_imageset) { - $imageset_cfg = str_replace(array('{MODE}', '{NAME}', '{COPYRIGHT}', '{VERSION}'), array($mode, $style_row['imageset_name'], $style_row['imageset_copyright'], $config['version']), $this->imageset_cfg); + $imageset_cfg = str_replace(array('{MODE}', '{NAME}', '{COPYRIGHT}', '{VERSION}'), array($mode, $style_row['imageset_name'], $style_row['imageset_copyright'], PHPBB_VERSION), $this->imageset_cfg); $imageset_main = array(); @@ -2214,7 +2214,7 @@ foreach ($imageset_lang as $lang => $imageset_localized) { - $imageset_cfg = str_replace(array('{MODE}', '{NAME}', '{COPYRIGHT}', '{VERSION}'), array($mode, $style_row['imageset_name'], $style_row['imageset_copyright'], $config['version']), $this->imageset_cfg); + $imageset_cfg = str_replace(array('{MODE}', '{NAME}', '{COPYRIGHT}', '{VERSION}'), array($mode, $style_row['imageset_name'], $style_row['imageset_copyright'], PHPBB_VERSION), $this->imageset_cfg); foreach ($this->imageset_keys as $topic => $key_array) { debian/patches/012_disable_version_check.patch0000644000000000000000000000471612235301264016533 0ustar Author: Jeroen van Wolffelaar Description: Disables upstream version check. Last-Update: 2013-09-28 --- a/includes/acp/acp_update.php +++ b/includes/acp/acp_update.php @@ -32,7 +32,7 @@ $this->tpl_name = 'acp_update'; $this->page_title = 'ACP_VERSION_CHECK'; - +/* // Get current and latest version $errstr = ''; $errno = 0; @@ -68,20 +68,20 @@ $db->sql_freeresult($result); $current_version = (!empty($version_update_from)) ? $version_update_from : $config['version']; - +*/ $template->assign_vars(array( - 'S_UP_TO_DATE' => phpbb_version_compare($latest_version, $config['version'], '<='), - 'S_UP_TO_DATE_AUTO' => phpbb_version_compare($latest_version, $current_version, '<='), + 'S_UP_TO_DATE' => true, + 'S_UP_TO_DATE_AUTO' => true, 'S_VERSION_CHECK' => true, 'U_ACTION' => $this->u_action, 'U_VERSIONCHECK_FORCE' => append_sid($this->u_action . '&versioncheck_force=1'), - 'LATEST_VERSION' => $latest_version, - 'CURRENT_VERSION' => $config['version'], - 'AUTO_VERSION' => $version_update_from, + 'LATEST_VERSION' => 'See Debian Packages', + 'CURRENT_VERSION' => PHPBB_VERSION, + 'AUTO_VERSION' => 'See Debian Packages', 'NEXT_FEATURE_VERSION' => $next_feature_version, - 'UPDATE_INSTRUCTIONS' => sprintf($user->lang['UPDATE_INSTRUCTIONS'], $announcement_url, $update_link), + 'UPDATE_INSTRUCTIONS' => 'You are using the Debian package of phpBB. Check packages.debian.org for updates.', 'UPGRADE_INSTRUCTIONS' => $next_feature_version ? $user->lang('UPGRADE_INSTRUCTIONS', $next_feature_version, $next_feature_announcement_url) : false, )); } --- a/includes/acp/acp_main.php +++ b/includes/acp/acp_main.php @@ -405,7 +405,7 @@ 'L_PHP_VERSION_OLD' => sprintf($user->lang['PHP_VERSION_OLD'], '', ''), )); } - +/* $latest_version_info = false; if (($latest_version_info = obtain_latest_version_info(request_var('versioncheck_force', false))) === false) { @@ -419,6 +419,10 @@ 'S_VERSION_UP_TO_DATE' => phpbb_version_compare(trim($latest_version_info[0]), $config['version'], '<='), )); } +*/ + $template->assign_vars(array( + 'S_VERSION_UP_TO_DATE' => true, + )); // Get forum statistics $total_posts = $config['num_posts']; debian/patches/021_multisite.patch0000644000000000000000000004132612235301264014243 0ustar Author: David Prévot Reviewed-by: J.M. Roth Description: Makes caches, file uploads, etc. work when multiple forums use the same codebase. Bug-Debian: http://bugs.debian.org/437836 Last-Update: 2013-09-28 --- a/cron.php +++ b/cron.php @@ -72,7 +72,9 @@ { case 'queue': - if (time() - $config['queue_interval'] <= $config['last_queue_run'] || !file_exists($phpbb_root_path . 'cache/queue.' . $phpEx)) + global $url_forum; + + if (time() - $config['queue_interval'] <= $config['last_queue_run'] || !file_exists($phpbb_root_path . 'cache/' . $url_forum . '/queue.' . $phpEx)) { break; } --- a/includes/acm/acm_file.php +++ b/includes/acm/acm_file.php @@ -35,8 +35,16 @@ */ function acm() { - global $phpbb_root_path; - $this->cache_dir = $phpbb_root_path . 'cache/'; + global $phpbb_root_path, $url_forum; + + $cache = $phpbb_root_path . 'cache/' . $url_forum . '/'; + + if (!file_exists($cache)) { + mkdir($cache); + } + @chmod($cache, 0750); + + $this->cache_dir = $cache; } /** --- a/includes/acp/acp_database.php +++ b/includes/acp/acp_database.php @@ -27,7 +27,11 @@ function main($id, $mode) { global $cache, $db, $user, $auth, $template, $table_prefix; - global $config, $phpbb_root_path, $phpbb_admin_path, $phpEx; + global $config, $phpbb_root_path, $phpbb_admin_path, $phpEx, $url_forum; + + if (!file_exists("$phpbb_root_path/store/$url_forum")) { + mkdir("$phpbb_root_path/store/$url_forum", 0750); + } if (!class_exists('phpbb_db_tools')) { @@ -234,7 +238,7 @@ trigger_error($user->lang['BACKUP_INVALID'] . adm_back_link($this->u_action), E_USER_WARNING); } - $file_name = $phpbb_root_path . 'store/' . $matches[0]; + $file_name = $phpbb_root_path . 'store/'. $url_forum. '/' . $matches[0]; if (!file_exists($file_name) || !is_readable($file_name)) { @@ -434,7 +438,7 @@ $methods[] = $type; } - $dir = $phpbb_root_path . 'store/'; + $dir = $phpbb_root_path . 'store/'. $url_forum. '/'; $dh = @opendir($dir); $backup_files = array(); @@ -553,8 +557,8 @@ if ($store == true) { - global $phpbb_root_path; - $file = $phpbb_root_path . 'store/' . $filename . $ext; + global $phpbb_root_path, $url_forum; + $file = $phpbb_root_path . 'store/'. $url_forum. '/' . $filename . $ext; $this->fp = $open($file, 'w'); --- a/includes/acp/acp_language.php +++ b/includes/acp/acp_language.php @@ -34,6 +34,7 @@ global $config, $db, $user, $auth, $template, $cache; global $phpbb_root_path, $phpbb_admin_path, $phpEx, $table_prefix; global $safe_mode, $file_uploads; + global $url_forum; include_once($phpbb_root_path . 'includes/functions_user.' . $phpEx); @@ -269,15 +270,15 @@ foreach ($mkdir_ary as $dir) { - $dir = $phpbb_root_path . 'store/' . $dir; + $dir = $phpbb_root_path . 'store/' . $url_forum . '/' . $dir; if (!is_dir($dir)) { - if (!@mkdir($dir, 0777)) + if (!@mkdir($dir, 0777, true)) { trigger_error("Could not create directory $dir", E_USER_ERROR); } - @chmod($dir, 0777); + @chmod($dir, 0750); } } } @@ -398,7 +399,7 @@ } $transfer->rename($lang_path . $file, $lang_path . $file . '.bak'); - $result = $transfer->copy_file('store/' . $lang_path . $file, $lang_path . $file); + $result = $transfer->copy_file('store/' . $url_forum . '/' . $lang_path . $file, $lang_path . $file); if ($result === false) { @@ -412,9 +413,9 @@ $transfer->close_session(); // Remove from storage folder - if (file_exists($phpbb_root_path . 'store/' . $lang_path . $file)) + if (file_exists($phpbb_root_path . 'store/' . $url_forum . '/' . $lang_path . $file)) { - @unlink($phpbb_root_path . 'store/' . $lang_path . $file); + @unlink($phpbb_root_path . 'store/' . $url_forum . '/' . $lang_path . $file); } add_log('admin', 'LOG_LANGUAGE_FILE_REPLACED', $file); @@ -1016,13 +1017,18 @@ include_once($phpbb_root_path . 'includes/functions_compress.' . $phpEx); + // create subdir in store before writing to it + if (!@mkdir($phpbb_root_path . 'store/' . $url_forum, 0750, true)) + { + trigger_error("Could not create directory store/$url_forum", E_USER_ERROR); + } if ($use_method == '.zip') { - $compress = new compress_zip('w', $phpbb_root_path . 'store/lang_' . $row['lang_iso'] . $use_method); + $compress = new compress_zip('w', $phpbb_root_path . 'store/' . $url_forum . '/' . 'lang_' . $row['lang_iso'] . $use_method); } else { - $compress = new compress_tar('w', $phpbb_root_path . 'store/lang_' . $row['lang_iso'] . $use_method, $use_method); + $compress = new compress_tar('w', $phpbb_root_path . 'store/' . $url_forum . '/' . 'lang_' . $row['lang_iso'] . $use_method, $use_method); } // Get email templates @@ -1075,7 +1081,7 @@ $compress->close(); $compress->download('lang_' . $row['lang_iso']); - @unlink($phpbb_root_path . 'store/lang_' . $row['lang_iso'] . $use_method); + @unlink($phpbb_root_path . 'store/' . $url_forum . '/' . 'lang_' . $row['lang_iso'] . $use_method); exit; @@ -1232,13 +1238,13 @@ */ function get_filename($lang_iso, $directory, $filename, $check_store = false, $only_return_filename = false) { - global $phpbb_root_path, $safe_mode; + global $phpbb_root_path, $safe_mode, $url_forum; $check_filename = "language/$lang_iso/" . (($directory) ? $directory . '/' : '') . $filename; if ($check_store) { - $check_store_filename = ($safe_mode) ? "store/langfile_{$lang_iso}" . (($directory) ? '_' . $directory : '') . "_{$filename}" : "store/language/$lang_iso/" . (($directory) ? $directory . '/' : '') . $filename; + $check_store_filename = ($safe_mode) ? "store/$url_forum/langfile_{$lang_iso}" . (($directory) ? '_' . $directory : '') . "_{$filename}" : "store/$url_forum/language/$lang_iso/" . (($directory) ? $directory . '/' : '') . $filename; if (!$only_return_filename && file_exists($phpbb_root_path . $check_store_filename)) { --- a/includes/acp/acp_styles.php +++ b/includes/acp/acp_styles.php @@ -953,7 +953,7 @@ */ function template_cache($template_id) { - global $phpbb_root_path, $phpEx, $config, $db, $cache, $user, $template; + global $phpbb_root_path, $phpEx, $config, $db, $cache, $user, $template, $url_forum; $source = str_replace('/', '.', request_var('source', '')); $file_ary = array_diff(request_var('delete', array('')), array('')); @@ -983,7 +983,7 @@ // Someone wants to see the cached source ... so we'll highlight it, // add line numbers and indent it appropriately. This could be nasty // on larger source files ... - if ($source && file_exists("{$phpbb_root_path}cache/{$cache_prefix}_$source.html.$phpEx")) + if ($source && file_exists("{$phpbb_root_path}cache/$url_forum/{$cache_prefix}_$source.html.$phpEx")) { adm_page_header($user->lang['TEMPLATE_CACHE']); @@ -995,7 +995,7 @@ 'FILENAME' => str_replace('.', '/', $source) . '.html') ); - $code = str_replace(array("\r\n", "\r"), array("\n", "\n"), file_get_contents("{$phpbb_root_path}cache/{$cache_prefix}_$source.html.$phpEx")); + $code = str_replace(array("\r\n", "\r"), array("\n", "\n"), file_get_contents("{$phpbb_root_path}cache/$url_forum/{$cache_prefix}_$source.html.$phpEx")); $conf = array('highlight.bg', 'highlight.comment', 'highlight.default', 'highlight.html', 'highlight.keyword', 'highlight.string'); foreach ($conf as $ini_var) @@ -1070,7 +1070,7 @@ $filename = "{$cache_prefix}_$file.html.$phpEx"; - if (!file_exists("{$phpbb_root_path}cache/$filename")) + if (!file_exists("{$phpbb_root_path}cache/$url_forum/$filename")) { continue; } @@ -1107,10 +1107,10 @@ $template->assign_block_vars('file', array( 'U_VIEWSOURCE' => $this->u_action . "&action=cache&id=$template_id&source=$file", - 'CACHED' => $user->format_date(filemtime("{$phpbb_root_path}cache/$filename")), + 'CACHED' => $user->format_date(filemtime("{$phpbb_root_path}cache/$url_forum/$filename")), 'FILENAME' => $file, 'FILENAME_PATH' => $file_tpl, - 'FILESIZE' => get_formatted_filesize(filesize("{$phpbb_root_path}cache/$filename")), + 'FILESIZE' => get_formatted_filesize(filesize("{$phpbb_root_path}cache/$url_forum/$filename")), 'MODIFIED' => $user->format_date((!$template_row['template_storedb']) ? filemtime($file_tpl) : $filemtime[$file . '.html'])) ); } @@ -1926,7 +1926,7 @@ */ function export($mode, $style_id) { - global $db, $template, $user, $phpbb_root_path, $cache, $phpEx, $config; + global $db, $template, $user, $phpbb_root_path, $cache, $phpEx, $config, $url_forum; $update = (isset($_POST['update'])) ? true : false; @@ -2271,13 +2271,17 @@ $path = $style_row[$mode . '_path']; } + if (!file_exists("$phpbb_root_path/store/$url_forum")) { + mkdir("$phpbb_root_path/store/$url_forum", 0750); + } + if ($format == 'zip') { - $compress = new compress_zip('w', $phpbb_root_path . "store/$path$ext"); + $compress = new compress_zip('w', $phpbb_root_path . "store/$url_forum/$path$ext"); } else { - $compress = new compress_tar('w', $phpbb_root_path . "store/$path$ext", $ext); + $compress = new compress_tar('w', $phpbb_root_path . "store/$url_forum/$path$ext", $ext); } if (sizeof($files)) @@ -2303,11 +2307,11 @@ if (!$store) { $compress->download($path); - @unlink("{$phpbb_root_path}store/$path$ext"); + @unlink("{$phpbb_root_path}store/$url_forum/$path$ext"); exit; } - trigger_error(sprintf($user->lang[$l_prefix . '_EXPORTED'], "store/$path$ext") . adm_back_link($this->u_action)); + trigger_error(sprintf($user->lang[$l_prefix . '_EXPORTED'], "store/$url_forum/$path$ext") . adm_back_link($this->u_action)); } } @@ -2835,11 +2839,11 @@ */ function template_cache_filelist($template_path) { - global $phpbb_root_path, $phpEx, $user; + global $phpbb_root_path, $phpEx, $user, $url_forum; $cache_prefix = 'tpl_' . str_replace('_', '-', $template_path); - if (!($dp = @opendir("{$phpbb_root_path}cache"))) + if (!($dp = @opendir("{$phpbb_root_path}cache/$url_forum"))) { trigger_error($user->lang['TEMPLATE_ERR_CACHE_READ'] . adm_back_link($this->u_action), E_USER_WARNING); } @@ -2852,7 +2856,7 @@ continue; } - if (is_file($phpbb_root_path . 'cache/' . $file) && (strpos($file, $cache_prefix) === 0)) + if (is_file($phpbb_root_path . 'cache/' . $url_forum . '/' . $file) && (strpos($file, $cache_prefix) === 0)) { $file_ary[] = str_replace('.', '/', preg_replace('#^' . preg_quote($cache_prefix, '#') . '_(.*?)\.html\.' . $phpEx . '$#i', '\1', $file)); } @@ -2871,7 +2875,7 @@ */ function clear_template_cache($template_row, $file_ary = false) { - global $phpbb_root_path, $phpEx, $user; + global $phpbb_root_path, $phpEx, $user, $url_forum; $cache_prefix = 'tpl_' . str_replace('_', '-', $template_row['template_path']); @@ -2889,7 +2893,7 @@ { $file = str_replace('/', '.', $file); - $file = "{$phpbb_root_path}cache/{$cache_prefix}_$file.html.$phpEx"; + $file = "{$phpbb_root_path}cache/$url_forum/{$cache_prefix}_$file.html.$phpEx"; if (file_exists($file) && is_file($file)) { @unlink($file); --- a/includes/functions.php +++ b/includes/functions.php @@ -4769,7 +4769,7 @@ */ function page_footer($run_cron = true) { - global $db, $config, $template, $user, $auth, $cache, $starttime, $phpbb_root_path, $phpEx; + global $db, $config, $template, $user, $auth, $cache, $starttime, $phpbb_root_path, $phpEx, $url_forum; // Output page creation time if (defined('DEBUG')) @@ -4835,7 +4835,7 @@ { $cron_type = ''; - if ($time_now - $config['queue_interval'] > $config['last_queue_run'] && !defined('IN_ADMIN') && file_exists($phpbb_root_path . 'cache/queue.' . $phpEx)) + if ($time_now - $config['queue_interval'] > $config['last_queue_run'] && !defined('IN_ADMIN') && file_exists($phpbb_root_path . 'cache/' . $url_forum . '/queue.' . $phpEx)) { // Process email queue $cron_type = 'queue'; --- a/includes/functions_compress.php +++ b/includes/functions_compress.php @@ -462,7 +462,7 @@ */ function download($filename, $download_name = false) { - global $phpbb_root_path; + global $phpbb_root_path, $url_forum; if ($download_name === false) { @@ -475,7 +475,7 @@ header("Content-Type: $mimetype; name=\"$download_name.zip\""); header("Content-disposition: attachment; filename=$download_name.zip"); - $fp = @fopen("{$phpbb_root_path}store/$filename.zip", 'rb'); + $fp = @fopen("{$phpbb_root_path}store/$url_forum/$filename.zip", 'rb'); if ($fp) { while ($buffer = fread($fp, 1024)) @@ -694,7 +694,7 @@ */ function download($filename, $download_name = false) { - global $phpbb_root_path; + global $phpbb_root_path, $url_forum; if ($download_name === false) { @@ -724,7 +724,7 @@ header("Content-Type: $mimetype; name=\"$download_name$this->type\""); header("Content-disposition: attachment; filename=$download_name$this->type"); - $fp = @fopen("{$phpbb_root_path}store/$filename$this->type", 'rb'); + $fp = @fopen("{$phpbb_root_path}store/$url_forum/$filename$this->type", 'rb'); if ($fp) { while ($buffer = fread($fp, 1024)) --- a/includes/functions_messenger.php +++ b/includes/functions_messenger.php @@ -641,10 +641,10 @@ */ function queue() { - global $phpEx, $phpbb_root_path; + global $phpEx, $phpbb_root_path, $url_forum; $this->data = array(); - $this->cache_file = "{$phpbb_root_path}cache/queue.$phpEx"; + $this->cache_file = "{$phpbb_root_path}cache/$url_forum/queue.$phpEx"; // Determine EOL character (\n for UNIX, \r\n for Windows and \r for Mac) $this->eol = (!defined('PHP_EOL')) ? (($eol = strtolower(substr(PHP_OS, 0, 3))) == 'win') ? "\r\n" : (($eol == 'mac') ? "\r" : "\n") : PHP_EOL; --- a/includes/functions_posting.php +++ b/includes/functions_posting.php @@ -453,6 +453,7 @@ $no_image = ($cat_id == ATTACHMENT_CATEGORY_IMAGE) ? false : true; $file->move_file($config['upload_path'], false, $no_image); + chmod($config['upload_path'].'/'.$file->realname, 0640); if (sizeof($file->error)) { --- a/includes/functions_transfer.php +++ b/includes/functions_transfer.php @@ -38,13 +38,13 @@ */ function transfer() { - global $phpbb_root_path; + global $phpbb_root_path, $url_forum; $this->file_perms = 0644; $this->dir_perms = 0777; // We use the store directory as temporary path to circumvent open basedir restrictions - $this->tmp_path = $phpbb_root_path . 'store/'; + $this->tmp_path = $phpbb_root_path . 'store/'. $url_forum. '/'; } /** --- a/includes/functions_user.php +++ b/includes/functions_user.php @@ -2091,6 +2091,7 @@ // Move file and overwrite any existing image $file->move_file($destination, true); + chmod("$destination/".$file->realname, 0640); if (sizeof($file->error)) { --- a/includes/template.php +++ b/includes/template.php @@ -51,12 +51,12 @@ */ function set_template() { - global $phpbb_root_path, $user; + global $phpbb_root_path, $user, $url_forum; if (file_exists($phpbb_root_path . 'styles/' . $user->theme['template_path'] . '/template')) { $this->root = $phpbb_root_path . 'styles/' . $user->theme['template_path'] . '/template'; - $this->cachepath = $phpbb_root_path . 'cache/tpl_' . str_replace('_', '-', $user->theme['template_path']) . '_'; + $this->cachepath = $phpbb_root_path . 'cache/' . $url_forum . '/tpl_' . str_replace('_', '-', $user->theme['template_path']) . '_'; if ($this->orig_tpl_storedb === null) { @@ -92,7 +92,7 @@ */ function set_custom_template($template_path, $template_name, $fallback_template_path = false) { - global $phpbb_root_path, $user; + global $phpbb_root_path, $user, $url_forum; // Make sure $template_path has no ending slash if (substr($template_path, -1) == '/') @@ -101,7 +101,7 @@ } $this->root = $template_path; - $this->cachepath = $phpbb_root_path . 'cache/ctpl_' . str_replace('_', '-', $template_name) . '_'; + $this->cachepath = $phpbb_root_path . 'cache/' . $url_forum . '/ctpl_' . str_replace('_', '-', $template_name) . '_'; if ($fallback_template_path !== false) { --- a/includes/acm/acm_memory.php +++ b/includes/acm/acm_memory.php @@ -36,9 +36,9 @@ */ function acm_memory() { - global $phpbb_root_path, $dbname, $table_prefix; + global $phpbb_root_path, $dbname, $table_prefix, $url_forum; - $this->cache_dir = $phpbb_root_path . 'cache/'; + $this->cache_dir = $phpbb_root_path . 'cache/' . $url_forum . '/'; $this->key_prefix = substr(md5($dbname . $table_prefix), 0, 8) . '_'; if (!isset($this->extension) || !extension_loaded($this->extension)) debian/patches/fix_chown.patch0000644000000000000000000000353412235301264013625 0ustar Description: Fix chown in cache Ensure files in cache belong to www-data. phpBB tries to set them to the same owner than common.php, that belongs to root under Debian, and then set them world writable because it can’t change the owner (nor group) to root. Author: David Prévot Bug-Debian: http://bugs.debian.org/711172 Forwarded: not-needed Last-Update: 2013-09-28 --- a/includes/functions.php +++ b/includes/functions.php @@ -725,16 +725,16 @@ { global $phpbb_root_path, $phpEx; - // Determine owner/group of common.php file and the filename we want to change here - $common_php_owner = @fileowner($phpbb_root_path . 'common.' . $phpEx); - $common_php_group = @filegroup($phpbb_root_path . 'common.' . $phpEx); + // Determine owner/group of the filename we want to change here + $common_php_owner = (function_exists('posix_getpwnam')) ? @posix_getpwnam('www-data') : false; + $common_php_group = (function_exists('posix_getgrnam')) ? @posix_getgrnam('www-data') : false; // And the owner and the groups PHP is running under. $php_uid = (function_exists('posix_getuid')) ? @posix_getuid() : false; $php_gids = (function_exists('posix_getgroups')) ? @posix_getgroups() : false; // If we are unable to get owner/group, then do not try to set them by guessing - if (!$php_uid || empty($php_gids) || !$common_php_owner || !$common_php_group) + if (!$php_uid || empty($php_gids) || empty($common_php_owner) || empty($common_php_group)) { $_chmod_info['process'] = false; } @@ -742,8 +742,8 @@ { $_chmod_info = array( 'process' => true, - 'common_owner' => $common_php_owner, - 'common_group' => $common_php_group, + 'common_owner' => $common_php_owner[uid], + 'common_group' => $common_php_group[gid], 'php_uid' => $php_uid, 'php_gids' => $php_gids, ); debian/phpbb3-l10n.install0000644000000000000000000000032612261414642012507 0ustar l10n-*/language/* /usr/share/phpbb3/www/language/ l10n-*/styles/prosilver/imageset/* /usr/share/phpbb3/styles/prosilver/imageset/ l10n-*/styles/subsilver2/imageset/* /usr/share/phpbb3/styles/subsilver2/imageset/ debian/control0000644000000000000000000000302312261415413010566 0ustar Source: phpbb3 Section: web Priority: optional Maintainer: Jeroen van Wolffelaar Uploaders: Jean-Marc Roth , David Prévot Build-Depends: debhelper (>= 7.0.50~), po-debconf Standards-Version: 3.9.5 Homepage: http://www.phpbb.com Vcs-Svn: http://svn.wolffelaar.nl/phpbb/trunk/phpbb3 Vcs-Browser: http://svn.wolffelaar.nl/wsvn/phpbb/trunk/phpbb3/ Package: phpbb3 Architecture: all Depends: apache2 | httpd, dbconfig-common, libapache2-mod-php5 | php5-cgi | php5, mysql-client | virtual-mysql-client | postgresql-client | sqlite, php5-cli, php5-gd, php5-mysql | php5-pgsql | php5-sqlite | php5-odbc | php5-sybase, ucf, ${misc:Depends} Recommends: exim4 | mail-transport-agent, php5-imagick Suggests: mysql-server | virtual-mysql-server | postgresql, phpbb3-l10n Description: full-featured, skinnable non-threaded web forum phpBB is a high powered, fully scalable, and highly customizable bulletin board, with a user-friendly interface, simple and straightforward administration panel, and helpful FAQ. . It supports a choice of database back-ends. Package: phpbb3-l10n Architecture: all Section: localization Depends: phpbb3, ${misc:Depends} Description: additional language files for phpBB phpBB is a high powered, fully scalable, and highly customizable bulletin board, with a user-friendly interface, simple and straightforward administration panel, and helpful FAQ. . This package contains phpBB language files. debian/sqliteconv2.pl0000755000000000000000000000025711534725603012011 0ustar #!/usr/bin/perl # converts extended SQL inserts to single statements if (/^(INSERT.+?VALUES.*?)\(/) { $a=$1; s/\\'\''/'\'\''/g; s/\\n/\n/g; s/\),\(/\);\n$a\(/g; } debian/database_update_debian.php0000755000000000000000000016645312235301315014324 0ustar #!/usr/bin/php5 obtain_hooks() as $hook) { @include($phpbb_root_path . 'includes/hooks/' . $hook . '.' . $phpEx); } } else { $phpbb_hook = false; } // Connect to DB $db->sql_connect($dbhost, $dbuser, $dbpasswd, $dbname, $dbport, false, false); // We do not need this any longer, unset for safety purposes unset($dbpasswd); $user->ip = (!empty($_SERVER['REMOTE_ADDR'])) ? htmlspecialchars($_SERVER['REMOTE_ADDR']) : ''; $user->ip = (stripos($user->ip, '::ffff:') === 0) ? substr($user->ip, 7) : $user->ip; $sql = "SELECT config_value FROM " . CONFIG_TABLE . " WHERE config_name = 'default_lang'"; $result = $db->sql_query($sql); $row = $db->sql_fetchrow($result); $db->sql_freeresult($result); $language = basename(request_var('language', '')); if (!$language) { $language = $row['config_value']; } if (!file_exists($phpbb_root_path . 'language/' . $language)) { die('No language found!'); } // And finally, load the relevant language files include($phpbb_root_path . 'language/' . $language . '/common.' . $phpEx); include($phpbb_root_path . 'language/' . $language . '/acp/common.' . $phpEx); include($phpbb_root_path . 'language/' . $language . '/install.' . $phpEx); // Set PHP error handler to ours //set_error_handler('msg_handler'); // Define some variables for the database update $inline_update = true; // To let set_config() calls succeed, we need to make the config array available globally $config = array(); $sql = 'SELECT * FROM ' . CONFIG_TABLE; $result = $db->sql_query($sql); while ($row = $db->sql_fetchrow($result)) { $config[$row['config_name']] = $row['config_value']; } $db->sql_freeresult($result); // phpbb_db_tools will be taken from new files (under install/update/new) // if possible, falling back to the board's copy. $db_tools = new phpbb_db_tools($db, true); $database_update_info = database_update_info(); $error_ary = array(); $errored = false; if ($debug_from_version !== false) { $config['version'] = $debug_from_version; } $current_version = str_replace('rc', 'RC', strtolower($config['version'])); $latest_version = str_replace('rc', 'RC', strtolower($updates_to_version)); $orig_version = $config['version']; // Fill DB version if (empty($config['dbms_version'])) { set_config('dbms_version', $db->sql_server_info(true)); } // If the latest version and the current version are 'unequal', we will update the version_update_from, else we do not update anything. if ($inline_update) { if ($current_version !== $latest_version) { set_config('version_update_from', $orig_version); } } else { // If not called from the update script, we will actually remove the traces $db->sql_query('DELETE FROM ' . CONFIG_TABLE . " WHERE config_name = 'version_update_from'"); } // Schema updates // We go through the schema changes from the lowest to the highest version // We try to also include versions 'in-between'... $no_updates = true; $versions = array_keys($database_update_info); for ($i = 0; $i < sizeof($versions); $i++) { $version = $versions[$i]; $schema_changes = $database_update_info[$version]; $next_version = (isset($versions[$i + 1])) ? $versions[$i + 1] : $updates_to_version; // If the installed version to be updated to is < than the current version, and if the current version is >= as the version to be updated to next, we will skip the process if (version_compare($version, $current_version, '<') && version_compare($current_version, $next_version, '>=')) { continue; } if (!sizeof($schema_changes)) { continue; } $no_updates = false; // We run one index after the other... to be consistent with schema changes... foreach ($schema_changes as $key => $changes) { $statements = $db_tools->perform_schema_changes(array($key => $changes)); foreach ($statements as $sql) { _sql($sql, $errored, $error_ary); } } } _write_result($no_updates, $errored, $error_ary); // Data updates $error_ary = array(); $errored = $no_updates = false; $no_updates = true; $versions = array_keys($database_update_info); // some code magic for ($i = 0; $i < sizeof($versions); $i++) { $version = $versions[$i]; $next_version = (isset($versions[$i + 1])) ? $versions[$i + 1] : $updates_to_version; // If the installed version to be updated to is < than the current version, and if the current version is >= as the version to be updated to next, we will skip the process if (version_compare($version, $current_version, '<') && version_compare($current_version, $next_version, '>=')) { continue; } change_database_data($no_updates, $version); } _write_result($no_updates, $errored, $error_ary); $error_ary = array(); $errored = $no_updates = false; if ($debug_from_version === false) { // update the version $sql = "UPDATE " . CONFIG_TABLE . " SET config_value = '$updates_to_version' WHERE config_name = 'version'"; _sql($sql, $errored, $error_ary); } // Reset permissions $sql = 'UPDATE ' . USERS_TABLE . " SET user_permissions = '', user_perm_from = 0"; _sql($sql, $errored, $error_ary); // Update the dbms version if everything is ok... set_config('dbms_version', $db->sql_server_info(true)); /* Optimize/vacuum analyze the tables where appropriate // this should be done for each version in future along with // the version number update switch ($db->sql_layer) { case 'mysql': case 'mysqli': case 'mysql4': $sql = 'OPTIMIZE TABLE ' . $table_prefix . 'auth_access, ' . $table_prefix . 'banlist, ' . $table_prefix . 'categories, ' . $table_prefix . 'config, ' . $table_prefix . 'disallow, ' . $table_prefix . 'forum_prune, ' . $table_prefix . 'forums, ' . $table_prefix . 'groups, ' . $table_prefix . 'posts, ' . $table_prefix . 'posts_text, ' . $table_prefix . 'privmsgs, ' . $table_prefix . 'privmsgs_text, ' . $table_prefix . 'ranks, ' . $table_prefix . 'search_results, ' . $table_prefix . 'search_wordlist, ' . $table_prefix . 'search_wordmatch, ' . $table_prefix . 'sessions_keys' . $table_prefix . 'smilies, ' . $table_prefix . 'themes, ' . $table_prefix . 'themes_name, ' . $table_prefix . 'topics, ' . $table_prefix . 'topics_watch, ' . $table_prefix . 'user_group, ' . $table_prefix . 'users, ' . $table_prefix . 'vote_desc, ' . $table_prefix . 'vote_results, ' . $table_prefix . 'vote_voters, ' . $table_prefix . 'words'; _sql($sql, $errored, $error_ary); break; case 'postgresql': _sql("VACUUM ANALYZE", $errored, $error_ary); break; } */ _write_result($no_updates, $errored, $error_ary); // Add database update to log add_log('admin', 'LOG_UPDATE_DATABASE', $orig_version, $updates_to_version); // Now we purge the session table as well as all cache files $cache->purge(); //_print_footer(); garbage_collection(); if (function_exists('exit_handler')) { exit_handler(); } /** * Function for triggering an sql statement */ function _sql($sql, &$errored, &$error_ary, $echo_dot = false) { global $db; if (defined('DEBUG_EXTRA')) { echo "
\n{$sql}\n
"; } $db->sql_return_on_error(true); if ($sql === 'begin') { $result = $db->sql_transaction('begin'); } else if ($sql === 'commit') { $result = $db->sql_transaction('commit'); } else { $result = $db->sql_query($sql); if ($db->sql_error_triggered) { $errored = true; $error_ary['sql'][] = $db->sql_error_sql; $error_ary['error_code'][] = $db->sql_error_returned; } } $db->sql_return_on_error(false); if ($echo_dot) { echo ". \n"; flush(); } return $result; } function _write_result($no_updates, $errored, $error_ary) { return true; global $lang; if ($no_updates) { echo ' ' . $lang['NO_UPDATES_REQUIRED'] . '

'; } else { echo ' ' . $lang['DONE'] . '

' . $lang['RESULT'] . ' :: '; if ($errored) { echo ' ' . $lang['SOME_QUERIES_FAILED'] . '
    '; for ($i = 0; $i < sizeof($error_ary['sql']); $i++) { echo '
  • ' . $lang['ERROR'] . ' :: ' . htmlspecialchars($error_ary['error_code'][$i]['message']) . '
    '; echo $lang['SQL'] . ' :: ' . htmlspecialchars($error_ary['sql'][$i]) . '

  • '; } echo '


' . $lang['SQL_FAILURE_EXPLAIN'] . '

'; } else { echo '' . $lang['NO_ERRORS'] . '

'; } } } function _add_modules($modules_to_install) { global $phpbb_root_path, $phpEx, $db; include_once($phpbb_root_path . 'includes/acp/acp_modules.' . $phpEx); $_module = new acp_modules(); foreach ($modules_to_install as $module_mode => $module_data) { $_module->module_class = $module_data['class']; // Determine parent id first $sql = 'SELECT module_id FROM ' . MODULES_TABLE . " WHERE module_class = '" . $db->sql_escape($module_data['class']) . "' AND module_langname = '" . $db->sql_escape($module_data['cat']) . "' AND module_mode = '' AND module_basename = ''"; $result = $db->sql_query($sql); // There may be more than one categories with the same name $categories = array(); while ($row = $db->sql_fetchrow($result)) { $categories[] = (int) $row['module_id']; } $db->sql_freeresult($result); if (!sizeof($categories)) { continue; } // Add the module to all categories found foreach ($categories as $parent_id) { // Check if the module already exists $sql = 'SELECT * FROM ' . MODULES_TABLE . " WHERE module_basename = '" . $db->sql_escape($module_data['base']) . "' AND module_class = '" . $db->sql_escape($module_data['class']) . "' AND module_langname = '" . $db->sql_escape($module_data['title']) . "' AND module_mode = '" . $db->sql_escape($module_mode) . "' AND module_auth = '" . $db->sql_escape($module_data['auth']) . "' AND parent_id = {$parent_id}"; $result = $db->sql_query($sql); $row = $db->sql_fetchrow($result); $db->sql_freeresult($result); // If it exists, we simply continue with the next category if ($row) { continue; } // Build the module sql row $module_row = array( 'module_basename' => $module_data['base'], 'module_enabled' => (isset($module_data['enabled'])) ? (int) $module_data['enabled'] : 1, 'module_display' => (isset($module_data['display'])) ? (int) $module_data['display'] : 1, 'parent_id' => $parent_id, 'module_class' => $module_data['class'], 'module_langname' => $module_data['title'], 'module_mode' => $module_mode, 'module_auth' => $module_data['auth'], ); $_module->update_module_data($module_row, true); // Ok, do we need to re-order the module, move it up or down? if (!isset($module_data['after'])) { continue; } $after_mode = $module_data['after'][0]; $after_langname = $module_data['after'][1]; // First of all, get the module id for the module this one has to be placed after $sql = 'SELECT left_id FROM ' . MODULES_TABLE . " WHERE module_class = '" . $db->sql_escape($module_data['class']) . "' AND module_basename = '" . $db->sql_escape($module_data['base']) . "' AND module_langname = '" . $db->sql_escape($after_langname) . "' AND module_mode = '" . $db->sql_escape($after_mode) . "' AND parent_id = '{$parent_id}'"; $result = $db->sql_query($sql); $first_left_id = (int) $db->sql_fetchfield('left_id'); $db->sql_freeresult($result); if (!$first_left_id) { continue; } // Ok, count the number of modules between $after_mode and the added module $sql = 'SELECT COUNT(module_id) as num_modules FROM ' . MODULES_TABLE . " WHERE module_class = '" . $db->sql_escape($module_data['class']) . "' AND parent_id = {$parent_id} AND left_id BETWEEN {$first_left_id} AND {$module_row['left_id']}"; $result = $db->sql_query($sql); $steps = (int) $db->sql_fetchfield('num_modules'); $db->sql_freeresult($result); // We need to substract 2 $steps -= 2; if ($steps <= 0) { continue; } // Ok, move module up $num_modules times. ;) $_module->move_module_by($module_row, 'move_up', $steps); } } $_module->remove_cache_file(); } /**************************************************************************** * ADD YOUR DATABASE SCHEMA CHANGES HERE * *****************************************************************************/ function database_update_info() { return array( // Changes from 3.0.0 to the next version '3.0.0' => array( // Add the following columns 'add_columns' => array( FORUMS_TABLE => array( 'display_subforum_list' => array('BOOL', 1), ), SESSIONS_TABLE => array( 'session_forum_id' => array('UINT', 0), ), ), 'drop_keys' => array( GROUPS_TABLE => array('group_legend'), ), 'add_index' => array( SESSIONS_TABLE => array( 'session_forum_id' => array('session_forum_id'), ), GROUPS_TABLE => array( 'group_legend_name' => array('group_legend', 'group_name'), ), ), ), // No changes from 3.0.1-RC1 to 3.0.1 '3.0.1-RC1' => array(), // No changes from 3.0.1 to 3.0.2-RC1 '3.0.1' => array(), // Changes from 3.0.2-RC1 to 3.0.2-RC2 '3.0.2-RC1' => array( 'change_columns' => array( DRAFTS_TABLE => array( 'draft_subject' => array('STEXT_UNI', ''), ), FORUMS_TABLE => array( 'forum_last_post_subject' => array('STEXT_UNI', ''), ), POSTS_TABLE => array( 'post_subject' => array('STEXT_UNI', '', 'true_sort'), ), PRIVMSGS_TABLE => array( 'message_subject' => array('STEXT_UNI', ''), ), TOPICS_TABLE => array( 'topic_title' => array('STEXT_UNI', '', 'true_sort'), 'topic_last_post_subject' => array('STEXT_UNI', ''), ), ), 'drop_keys' => array( SESSIONS_TABLE => array('session_forum_id'), ), 'add_index' => array( SESSIONS_TABLE => array( 'session_fid' => array('session_forum_id'), ), ), ), // No changes from 3.0.2-RC2 to 3.0.2 '3.0.2-RC2' => array(), // Changes from 3.0.2 to 3.0.3-RC1 '3.0.2' => array( // Add the following columns 'add_columns' => array( STYLES_TEMPLATE_TABLE => array( 'template_inherits_id' => array('UINT:4', 0), 'template_inherit_path' => array('VCHAR', ''), ), GROUPS_TABLE => array( 'group_max_recipients' => array('UINT', 0), ), ), ), // No changes from 3.0.3-RC1 to 3.0.3 '3.0.3-RC1' => array(), // Changes from 3.0.3 to 3.0.4-RC1 '3.0.3' => array( 'add_columns' => array( PROFILE_FIELDS_TABLE => array( 'field_show_profile' => array('BOOL', 0), ), ), 'change_columns' => array( STYLES_TABLE => array( 'style_id' => array('UINT', NULL, 'auto_increment'), 'template_id' => array('UINT', 0), 'theme_id' => array('UINT', 0), 'imageset_id' => array('UINT', 0), ), STYLES_IMAGESET_TABLE => array( 'imageset_id' => array('UINT', NULL, 'auto_increment'), ), STYLES_IMAGESET_DATA_TABLE => array( 'image_id' => array('UINT', NULL, 'auto_increment'), 'imageset_id' => array('UINT', 0), ), STYLES_THEME_TABLE => array( 'theme_id' => array('UINT', NULL, 'auto_increment'), ), STYLES_TEMPLATE_TABLE => array( 'template_id' => array('UINT', NULL, 'auto_increment'), ), STYLES_TEMPLATE_DATA_TABLE => array( 'template_id' => array('UINT', 0), ), FORUMS_TABLE => array( 'forum_style' => array('UINT', 0), ), USERS_TABLE => array( 'user_style' => array('UINT', 0), ), ), ), // Changes from 3.0.4-RC1 to 3.0.4 '3.0.4-RC1' => array(), // Changes from 3.0.4 to 3.0.5-RC1 '3.0.4' => array( 'change_columns' => array( FORUMS_TABLE => array( 'forum_style' => array('UINT', 0), ), ), ), // No changes from 3.0.5-RC1 to 3.0.5 '3.0.5-RC1' => array(), // Changes from 3.0.5 to 3.0.6-RC1 '3.0.5' => array( 'add_columns' => array( CONFIRM_TABLE => array( 'attempts' => array('UINT', 0), ), USERS_TABLE => array( 'user_new' => array('BOOL', 1), 'user_reminded' => array('TINT:4', 0), 'user_reminded_time'=> array('TIMESTAMP', 0), ), GROUPS_TABLE => array( 'group_skip_auth' => array('BOOL', 0, 'after' => 'group_founder_manage'), ), PRIVMSGS_TABLE => array( 'message_reported' => array('BOOL', 0), ), REPORTS_TABLE => array( 'pm_id' => array('UINT', 0), ), PROFILE_FIELDS_TABLE => array( 'field_show_on_vt' => array('BOOL', 0), ), FORUMS_TABLE => array( 'forum_options' => array('UINT:20', 0), ), ), 'change_columns' => array( USERS_TABLE => array( 'user_options' => array('UINT:11', 230271), ), ), 'add_index' => array( REPORTS_TABLE => array( 'post_id' => array('post_id'), 'pm_id' => array('pm_id'), ), POSTS_TABLE => array( 'post_username' => array('post_username:255'), ), ), ), // No changes from 3.0.6-RC1 to 3.0.6-RC2 '3.0.6-RC1' => array(), // No changes from 3.0.6-RC2 to 3.0.6-RC3 '3.0.6-RC2' => array(), // No changes from 3.0.6-RC3 to 3.0.6-RC4 '3.0.6-RC3' => array(), // No changes from 3.0.6-RC4 to 3.0.6 '3.0.6-RC4' => array(), // Changes from 3.0.6 to 3.0.7-RC1 '3.0.6' => array( 'drop_keys' => array( LOG_TABLE => array('log_time'), ), 'add_index' => array( TOPICS_TRACK_TABLE => array( 'topic_id' => array('topic_id'), ), ), ), // No changes from 3.0.7-RC1 to 3.0.7-RC2 '3.0.7-RC1' => array(), // No changes from 3.0.7-RC2 to 3.0.7 '3.0.7-RC2' => array(), // No changes from 3.0.7 to 3.0.7-PL1 '3.0.7' => array(), // No changes from 3.0.7-PL1 to 3.0.8-RC1 '3.0.7-PL1' => array(), // No changes from 3.0.8-RC1 to 3.0.8 '3.0.8-RC1' => array(), // Changes from 3.0.8 to 3.0.9-RC1 '3.0.8' => array( 'add_tables' => array( LOGIN_ATTEMPT_TABLE => array( 'COLUMNS' => array( // this column was removed from the database updater // after 3.0.9-RC3 was released. It might still exist // in 3.0.9-RCX installations and has to be dropped in // 3.0.13 after the db_tools class is capable of properly // removing a primary key. // 'attempt_id' => array('UINT', NULL, 'auto_increment'), 'attempt_ip' => array('VCHAR:40', ''), 'attempt_browser' => array('VCHAR:150', ''), 'attempt_forwarded_for' => array('VCHAR:255', ''), 'attempt_time' => array('TIMESTAMP', 0), 'user_id' => array('UINT', 0), 'username' => array('VCHAR_UNI:255', 0), 'username_clean' => array('VCHAR_CI', 0), ), //'PRIMARY_KEY' => 'attempt_id', 'KEYS' => array( 'att_ip' => array('INDEX', array('attempt_ip', 'attempt_time')), 'att_for' => array('INDEX', array('attempt_forwarded_for', 'attempt_time')), 'att_time' => array('INDEX', array('attempt_time')), 'user_id' => array('INDEX', 'user_id'), ), ), ), 'change_columns' => array( BBCODES_TABLE => array( 'bbcode_id' => array('USINT', 0), ), ), ), // No changes from 3.0.9-RC1 to 3.0.9-RC2 '3.0.9-RC1' => array(), // No changes from 3.0.9-RC2 to 3.0.9-RC3 '3.0.9-RC2' => array(), // No changes from 3.0.9-RC3 to 3.0.9-RC4 '3.0.9-RC3' => array(), // No changes from 3.0.9-RC4 to 3.0.9 '3.0.9-RC4' => array(), // No changes from 3.0.9 to 3.0.10-RC1 '3.0.9' => array(), // No changes from 3.0.10-RC1 to 3.0.10-RC2 '3.0.10-RC1' => array(), // No changes from 3.0.10-RC2 to 3.0.10-RC3 '3.0.10-RC2' => array(), // No changes from 3.0.10-RC3 to 3.0.10 '3.0.10-RC3' => array(), // No changes from 3.0.10 to 3.0.11-RC1 '3.0.10' => array(), // Changes from 3.0.11-RC1 to 3.0.11-RC2 '3.0.11-RC1' => array( 'add_columns' => array( PROFILE_FIELDS_TABLE => array( 'field_show_novalue' => array('BOOL', 0), ), ), ), // No changes from 3.0.11-RC2 to 3.0.11 '3.0.11-RC2' => array(), // No changes from 3.0.11 to 3.0.12-RC1 '3.0.11' => array(), // No changes from 3.0.12-RC1 to 3.0.12-RC2 '3.0.12-RC1' => array(), // No changes from 3.0.12-RC2 to 3.0.12-RC3 '3.0.12-RC2' => array(), // No changes from 3.0.12-RC3 to 3.0.12 '3.0.12-RC3' => array(), /** @todo DROP LOGIN_ATTEMPT_TABLE.attempt_id in 3.0.13-RC1 */ ); } /**************************************************************************** * ADD YOUR DATABASE DATA CHANGES HERE * * REMEMBER: You NEED to enter a schema array above and a data array here, * * even if both or one of them are empty. * *****************************************************************************/ function change_database_data(&$no_updates, $version) { global $db, $db_tools, $errored, $error_ary, $config, $table_prefix, $phpbb_root_path, $phpEx; switch ($version) { case '3.0.0': $sql = 'UPDATE ' . TOPICS_TABLE . " SET topic_last_view_time = topic_last_post_time WHERE topic_last_view_time = 0"; _sql($sql, $errored, $error_ary); // Update smiley sizes $smileys = array('icon_e_surprised.gif', 'icon_eek.gif', 'icon_cool.gif', 'icon_lol.gif', 'icon_mad.gif', 'icon_razz.gif', 'icon_redface.gif', 'icon_cry.gif', 'icon_evil.gif', 'icon_twisted.gif', 'icon_rolleyes.gif', 'icon_exclaim.gif', 'icon_question.gif', 'icon_idea.gif', 'icon_arrow.gif', 'icon_neutral.gif', 'icon_mrgreen.gif', 'icon_e_ugeek.gif'); foreach ($smileys as $smiley) { if (file_exists($phpbb_root_path . 'images/smilies/' . $smiley)) { list($width, $height) = getimagesize($phpbb_root_path . 'images/smilies/' . $smiley); $sql = 'UPDATE ' . SMILIES_TABLE . ' SET smiley_width = ' . $width . ', smiley_height = ' . $height . " WHERE smiley_url = '" . $db->sql_escape($smiley) . "'"; _sql($sql, $errored, $error_ary); } } $no_updates = false; break; // No changes from 3.0.1-RC1 to 3.0.1 case '3.0.1-RC1': break; // changes from 3.0.1 to 3.0.2-RC1 case '3.0.1': set_config('referer_validation', '1'); set_config('check_attachment_content', '1'); set_config('mime_triggers', 'body|head|html|img|plaintext|a href|pre|script|table|title'); $no_updates = false; break; // No changes from 3.0.2-RC1 to 3.0.2-RC2 case '3.0.2-RC1': break; // No changes from 3.0.2-RC2 to 3.0.2 case '3.0.2-RC2': break; // Changes from 3.0.2 to 3.0.3-RC1 case '3.0.2': set_config('enable_queue_trigger', '0'); set_config('queue_trigger_posts', '3'); set_config('pm_max_recipients', '0'); // Set maximum number of recipients for the registered users, bots, guests group $sql = 'UPDATE ' . GROUPS_TABLE . ' SET group_max_recipients = 5 WHERE ' . $db->sql_in_set('group_name', array('GUESTS', 'REGISTERED', 'REGISTERED_COPPA', 'BOTS')); _sql($sql, $errored, $error_ary); // Not prefilling yet set_config('dbms_version', ''); // Add new permission u_masspm_group and duplicate settings from u_masspm include_once($phpbb_root_path . 'includes/acp/auth.' . $phpEx); $auth_admin = new auth_admin(); // Only add the new permission if it does not already exist if (empty($auth_admin->acl_options['id']['u_masspm_group'])) { $auth_admin->acl_add_option(array('global' => array('u_masspm_group'))); // Now the tricky part, filling the permission $old_id = $auth_admin->acl_options['id']['u_masspm']; $new_id = $auth_admin->acl_options['id']['u_masspm_group']; $tables = array(ACL_GROUPS_TABLE, ACL_ROLES_DATA_TABLE, ACL_USERS_TABLE); foreach ($tables as $table) { $sql = 'SELECT * FROM ' . $table . ' WHERE auth_option_id = ' . $old_id; $result = _sql($sql, $errored, $error_ary); $sql_ary = array(); while ($row = $db->sql_fetchrow($result)) { $row['auth_option_id'] = $new_id; $sql_ary[] = $row; } $db->sql_freeresult($result); if (sizeof($sql_ary)) { $db->sql_multi_insert($table, $sql_ary); } } // Remove any old permission entries $auth_admin->acl_clear_prefetch(); } /** * Do not resync post counts here. An admin may do this later from the ACP $start = 0; $step = ($config['num_posts']) ? (max((int) ($config['num_posts'] / 5), 20000)) : 20000; $sql = 'UPDATE ' . USERS_TABLE . ' SET user_posts = 0'; _sql($sql, $errored, $error_ary); do { $sql = 'SELECT COUNT(post_id) AS num_posts, poster_id FROM ' . POSTS_TABLE . ' WHERE post_id BETWEEN ' . ($start + 1) . ' AND ' . ($start + $step) . ' AND post_postcount = 1 AND post_approved = 1 GROUP BY poster_id'; $result = _sql($sql, $errored, $error_ary); if ($row = $db->sql_fetchrow($result)) { do { $sql = 'UPDATE ' . USERS_TABLE . " SET user_posts = user_posts + {$row['num_posts']} WHERE user_id = {$row['poster_id']}"; _sql($sql, $errored, $error_ary); } while ($row = $db->sql_fetchrow($result)); $start += $step; } else { $start = 0; } $db->sql_freeresult($result); } while ($start); */ $sql = 'UPDATE ' . MODULES_TABLE . ' SET module_auth = \'acl_a_email && cfg_email_enable\' WHERE module_class = \'acp\' AND module_basename = \'email\''; _sql($sql, $errored, $error_ary); $no_updates = false; break; // Changes from 3.0.3-RC1 to 3.0.3 case '3.0.3-RC1': if ($db->sql_layer == 'oracle') { // log_operation is CLOB - but we can change this later $sql = 'UPDATE ' . LOG_TABLE . " SET log_operation = 'LOG_DELETE_TOPIC' WHERE log_operation LIKE 'LOG_TOPIC_DELETED'"; _sql($sql, $errored, $error_ary); } else { $sql = 'UPDATE ' . LOG_TABLE . " SET log_operation = 'LOG_DELETE_TOPIC' WHERE log_operation = 'LOG_TOPIC_DELETED'"; _sql($sql, $errored, $error_ary); } $no_updates = false; break; // Changes from 3.0.3 to 3.0.4-RC1 case '3.0.3': // Update the Custom Profile Fields based on previous settings to the new format $sql = 'SELECT field_id, field_required, field_show_on_reg, field_hide FROM ' . PROFILE_FIELDS_TABLE; $result = _sql($sql, $errored, $error_ary); while ($row = $db->sql_fetchrow($result)) { $sql_ary = array( 'field_required' => 0, 'field_show_on_reg' => 0, 'field_hide' => 0, 'field_show_profile'=> 0, ); if ($row['field_required']) { $sql_ary['field_required'] = $sql_ary['field_show_on_reg'] = $sql_ary['field_show_profile'] = 1; } else if ($row['field_show_on_reg']) { $sql_ary['field_show_on_reg'] = $sql_ary['field_show_profile'] = 1; } else if ($row['field_hide']) { // Only administrators and moderators can see this CPF, if the view is enabled, they can see it, otherwise just admins in the acp_users module $sql_ary['field_hide'] = 1; } else { // equivelant to "none", which is the "Display in user control panel" option $sql_ary['field_show_profile'] = 1; } _sql('UPDATE ' . PROFILE_FIELDS_TABLE . ' SET ' . $db->sql_build_array('UPDATE', $sql_ary) . ' WHERE field_id = ' . $row['field_id'], $errored, $error_ary); } $no_updates = false; break; // Changes from 3.0.4-RC1 to 3.0.4 case '3.0.4-RC1': break; // Changes from 3.0.4 to 3.0.5-RC1 case '3.0.4': // Captcha config variables set_config('captcha_gd_wave', 0); set_config('captcha_gd_3d_noise', 1); set_config('captcha_gd_fonts', 1); set_config('confirm_refresh', 1); // Maximum number of keywords set_config('max_num_search_keywords', 10); // Remove static config var and put it back as dynamic variable $sql = 'UPDATE ' . CONFIG_TABLE . " SET is_dynamic = 1 WHERE config_name = 'search_indexing_state'"; _sql($sql, $errored, $error_ary); // Hash old MD5 passwords $sql = 'SELECT user_id, user_password FROM ' . USERS_TABLE . ' WHERE user_pass_convert = 1'; $result = _sql($sql, $errored, $error_ary); while ($row = $db->sql_fetchrow($result)) { if (strlen($row['user_password']) == 32) { $sql_ary = array( 'user_password' => phpbb_hash($row['user_password']), ); _sql('UPDATE ' . USERS_TABLE . ' SET ' . $db->sql_build_array('UPDATE', $sql_ary) . ' WHERE user_id = ' . $row['user_id'], $errored, $error_ary); } } $db->sql_freeresult($result); // Adjust bot entry $sql = 'UPDATE ' . BOTS_TABLE . " SET bot_agent = 'ichiro/' WHERE bot_agent = 'ichiro/2'"; _sql($sql, $errored, $error_ary); // Before we are able to add a unique key to auth_option, we need to remove duplicate entries // We get duplicate entries first $sql = 'SELECT auth_option FROM ' . ACL_OPTIONS_TABLE . ' GROUP BY auth_option HAVING COUNT(*) >= 2'; $result = $db->sql_query($sql); $auth_options = array(); while ($row = $db->sql_fetchrow($result)) { $auth_options[] = $row['auth_option']; } $db->sql_freeresult($result); // Remove specific auth options if (!empty($auth_options)) { foreach ($auth_options as $option) { // Select auth_option_ids... the largest id will be preserved $sql = 'SELECT auth_option_id FROM ' . ACL_OPTIONS_TABLE . " WHERE auth_option = '" . $db->sql_escape($option) . "' ORDER BY auth_option_id DESC"; // sql_query_limit not possible here, due to bug in postgresql layer $result = $db->sql_query($sql); // Skip first row, this is our original auth option we want to preserve $row = $db->sql_fetchrow($result); while ($row = $db->sql_fetchrow($result)) { // Ok, remove this auth option... _sql('DELETE FROM ' . ACL_OPTIONS_TABLE . ' WHERE auth_option_id = ' . $row['auth_option_id'], $errored, $error_ary); _sql('DELETE FROM ' . ACL_ROLES_DATA_TABLE . ' WHERE auth_option_id = ' . $row['auth_option_id'], $errored, $error_ary); _sql('DELETE FROM ' . ACL_GROUPS_TABLE . ' WHERE auth_option_id = ' . $row['auth_option_id'], $errored, $error_ary); _sql('DELETE FROM ' . ACL_USERS_TABLE . ' WHERE auth_option_id = ' . $row['auth_option_id'], $errored, $error_ary); } $db->sql_freeresult($result); } } // Now make auth_option UNIQUE, by dropping the old index and adding a UNIQUE one. $changes = array( 'drop_keys' => array( ACL_OPTIONS_TABLE => array('auth_option'), ), ); $statements = $db_tools->perform_schema_changes($changes); foreach ($statements as $sql) { _sql($sql, $errored, $error_ary); } $changes = array( 'add_unique_index' => array( ACL_OPTIONS_TABLE => array( 'auth_option' => array('auth_option'), ), ), ); $statements = $db_tools->perform_schema_changes($changes); foreach ($statements as $sql) { _sql($sql, $errored, $error_ary); } $no_updates = false; break; // No changes from 3.0.5-RC1 to 3.0.5 case '3.0.5-RC1': break; // Changes from 3.0.5 to 3.0.6-RC1 case '3.0.5': // Let's see if the GD Captcha can be enabled... we simply look for what *is* enabled... if (!empty($config['captcha_gd']) && !isset($config['captcha_plugin'])) { set_config('captcha_plugin', 'phpbb_captcha_gd'); } else if (!isset($config['captcha_plugin'])) { set_config('captcha_plugin', 'phpbb_captcha_nogd'); } // Entries for the Feed Feature set_config('feed_enable', '0'); set_config('feed_limit', '10'); set_config('feed_overall_forums', '1'); set_config('feed_overall_forums_limit', '15'); set_config('feed_overall_topics', '0'); set_config('feed_overall_topics_limit', '15'); set_config('feed_forum', '1'); set_config('feed_topic', '1'); set_config('feed_item_statistics', '1'); // Entries for smiley pagination set_config('smilies_per_page', '50'); // Entry for reporting PMs set_config('allow_pm_report', '1'); // Install modules $modules_to_install = array( 'feed' => array( 'base' => 'board', 'class' => 'acp', 'title' => 'ACP_FEED_SETTINGS', 'auth' => 'acl_a_board', 'cat' => 'ACP_BOARD_CONFIGURATION', 'after' => array('signature', 'ACP_SIGNATURE_SETTINGS') ), 'warnings' => array( 'base' => 'users', 'class' => 'acp', 'title' => 'ACP_USER_WARNINGS', 'auth' => 'acl_a_user', 'display' => 0, 'cat' => 'ACP_CAT_USERS', 'after' => array('feedback', 'ACP_USER_FEEDBACK') ), 'send_statistics' => array( 'base' => 'send_statistics', 'class' => 'acp', 'title' => 'ACP_SEND_STATISTICS', 'auth' => 'acl_a_server', 'cat' => 'ACP_SERVER_CONFIGURATION' ), 'setting_forum_copy' => array( 'base' => 'permissions', 'class' => 'acp', 'title' => 'ACP_FORUM_PERMISSIONS_COPY', 'auth' => 'acl_a_fauth && acl_a_authusers && acl_a_authgroups && acl_a_mauth', 'cat' => 'ACP_FORUM_BASED_PERMISSIONS', 'after' => array('setting_forum_local', 'ACP_FORUM_PERMISSIONS') ), 'pm_reports' => array( 'base' => 'pm_reports', 'class' => 'mcp', 'title' => 'MCP_PM_REPORTS_OPEN', 'auth' => 'aclf_m_report', 'cat' => 'MCP_REPORTS' ), 'pm_reports_closed' => array( 'base' => 'pm_reports', 'class' => 'mcp', 'title' => 'MCP_PM_REPORTS_CLOSED', 'auth' => 'aclf_m_report', 'cat' => 'MCP_REPORTS' ), 'pm_report_details' => array( 'base' => 'pm_reports', 'class' => 'mcp', 'title' => 'MCP_PM_REPORT_DETAILS', 'auth' => 'aclf_m_report', 'cat' => 'MCP_REPORTS' ), ); _add_modules($modules_to_install); // Add newly_registered group... but check if it already exists (we always supported running the updater on any schema) $sql = 'SELECT group_id FROM ' . GROUPS_TABLE . " WHERE group_name = 'NEWLY_REGISTERED'"; $result = $db->sql_query($sql); $group_id = (int) $db->sql_fetchfield('group_id'); $db->sql_freeresult($result); if (!$group_id) { $sql = 'INSERT INTO ' . GROUPS_TABLE . " (group_name, group_type, group_founder_manage, group_colour, group_legend, group_avatar, group_desc, group_desc_uid, group_max_recipients) VALUES ('NEWLY_REGISTERED', 3, 0, '', 0, '', '', '', 5)"; _sql($sql, $errored, $error_ary); $group_id = $db->sql_nextid(); } // Insert new user role... at the end of the chain $sql = 'SELECT role_id FROM ' . ACL_ROLES_TABLE . " WHERE role_name = 'ROLE_USER_NEW_MEMBER' AND role_type = 'u_'"; $result = $db->sql_query($sql); $u_role = (int) $db->sql_fetchfield('role_id'); $db->sql_freeresult($result); if (!$u_role) { $sql = 'SELECT MAX(role_order) as max_order_id FROM ' . ACL_ROLES_TABLE . " WHERE role_type = 'u_'"; $result = $db->sql_query($sql); $next_order_id = (int) $db->sql_fetchfield('max_order_id'); $db->sql_freeresult($result); $next_order_id++; $sql = 'INSERT INTO ' . ACL_ROLES_TABLE . " (role_name, role_description, role_type, role_order) VALUES ('ROLE_USER_NEW_MEMBER', 'ROLE_DESCRIPTION_USER_NEW_MEMBER', 'u_', $next_order_id)"; _sql($sql, $errored, $error_ary); $u_role = $db->sql_nextid(); if (!$errored) { // Now add the correct data to the roles... // The standard role says that new users are not able to send a PM, Mass PM, are not able to PM groups $sql = 'INSERT INTO ' . ACL_ROLES_DATA_TABLE . " (role_id, auth_option_id, auth_setting) SELECT $u_role, auth_option_id, 0 FROM " . ACL_OPTIONS_TABLE . " WHERE auth_option LIKE 'u_%' AND auth_option IN ('u_sendpm', 'u_masspm', 'u_masspm_group')"; _sql($sql, $errored, $error_ary); // Add user role to group $sql = 'INSERT INTO ' . ACL_GROUPS_TABLE . " (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES ($group_id, 0, 0, $u_role, 0)"; _sql($sql, $errored, $error_ary); } } // Insert new forum role $sql = 'SELECT role_id FROM ' . ACL_ROLES_TABLE . " WHERE role_name = 'ROLE_FORUM_NEW_MEMBER' AND role_type = 'f_'"; $result = $db->sql_query($sql); $f_role = (int) $db->sql_fetchfield('role_id'); $db->sql_freeresult($result); if (!$f_role) { $sql = 'SELECT MAX(role_order) as max_order_id FROM ' . ACL_ROLES_TABLE . " WHERE role_type = 'f_'"; $result = $db->sql_query($sql); $next_order_id = (int) $db->sql_fetchfield('max_order_id'); $db->sql_freeresult($result); $next_order_id++; $sql = 'INSERT INTO ' . ACL_ROLES_TABLE . " (role_name, role_description, role_type, role_order) VALUES ('ROLE_FORUM_NEW_MEMBER', 'ROLE_DESCRIPTION_FORUM_NEW_MEMBER', 'f_', $next_order_id)"; _sql($sql, $errored, $error_ary); $f_role = $db->sql_nextid(); if (!$errored) { $sql = 'INSERT INTO ' . ACL_ROLES_DATA_TABLE . " (role_id, auth_option_id, auth_setting) SELECT $f_role, auth_option_id, 0 FROM " . ACL_OPTIONS_TABLE . " WHERE auth_option LIKE 'f_%' AND auth_option IN ('f_noapprove')"; _sql($sql, $errored, $error_ary); } } // Set every members user_new column to 0 (old users) only if there is no one yet (this makes sure we do not execute this more than once) $sql = 'SELECT 1 FROM ' . USERS_TABLE . ' WHERE user_new = 0'; $result = $db->sql_query_limit($sql, 1); $row = $db->sql_fetchrow($result); $db->sql_freeresult($result); if (!$row) { $sql = 'UPDATE ' . USERS_TABLE . ' SET user_new = 0'; _sql($sql, $errored, $error_ary); } // Newly registered users limit if (!isset($config['new_member_post_limit'])) { set_config('new_member_post_limit', (!empty($config['enable_queue_trigger'])) ? $config['queue_trigger_posts'] : 0); } if (!isset($config['new_member_group_default'])) { set_config('new_member_group_default', 0); } // To mimick the old "feature" we will assign the forum role to every forum, regardless of the setting (this makes sure there are no "this does not work!!!! YUO!!!" posts... // Check if the role is already assigned... $sql = 'SELECT forum_id FROM ' . ACL_GROUPS_TABLE . ' WHERE group_id = ' . $group_id . ' AND auth_role_id = ' . $f_role; $result = $db->sql_query($sql); $is_options = (int) $db->sql_fetchfield('forum_id'); $db->sql_freeresult($result); // Not assigned at all... :/ if (!$is_options) { // Get postable forums $sql = 'SELECT forum_id FROM ' . FORUMS_TABLE . ' WHERE forum_type != ' . FORUM_LINK; $result = $db->sql_query($sql); while ($row = $db->sql_fetchrow($result)) { _sql('INSERT INTO ' . ACL_GROUPS_TABLE . ' (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (' . $group_id . ', ' . (int) $row['forum_id'] . ', 0, ' . $f_role . ', 0)', $errored, $error_ary); } $db->sql_freeresult($result); } // Clear permissions... include_once($phpbb_root_path . 'includes/acp/auth.' . $phpEx); $auth_admin = new auth_admin(); $auth_admin->acl_clear_prefetch(); if (!isset($config['allow_avatar'])) { if ($config['allow_avatar_upload'] || $config['allow_avatar_local'] || $config['allow_avatar_remote']) { set_config('allow_avatar', '1'); } else { set_config('allow_avatar', '0'); } } if (!isset($config['allow_avatar_remote_upload'])) { if ($config['allow_avatar_remote'] && $config['allow_avatar_upload']) { set_config('allow_avatar_remote_upload', '1'); } else { set_config('allow_avatar_remote_upload', '0'); } } // Minimum number of characters if (!isset($config['min_post_chars'])) { set_config('min_post_chars', '1'); } if (!isset($config['allow_quick_reply'])) { set_config('allow_quick_reply', '1'); } // Set every members user_options column to enable // bbcode, smilies and URLs for signatures by default $sql = 'SELECT user_options FROM ' . USERS_TABLE . ' WHERE user_type IN (' . USER_NORMAL . ', ' . USER_FOUNDER . ')'; $result = $db->sql_query_limit($sql, 1); $user_option = (int) $db->sql_fetchfield('user_options'); $db->sql_freeresult($result); // Check if we already updated the database by checking bit 15 which we used to store the sig_bbcode option if (!($user_option & 1 << 15)) { // 229376 is the added value to enable all three signature options $sql = 'UPDATE ' . USERS_TABLE . ' SET user_options = user_options + 229376'; _sql($sql, $errored, $error_ary); } if (!isset($config['delete_time'])) { set_config('delete_time', $config['edit_time']); } $no_updates = false; break; // No changes from 3.0.6-RC1 to 3.0.6-RC2 case '3.0.6-RC1': break; // Changes from 3.0.6-RC2 to 3.0.6-RC3 case '3.0.6-RC2': // Update the Custom Profile Fields based on previous settings to the new format $sql = 'UPDATE ' . PROFILE_FIELDS_TABLE . ' SET field_show_on_vt = 1 WHERE field_hide = 0 AND (field_required = 1 OR field_show_on_reg = 1 OR field_show_profile = 1)'; _sql($sql, $errored, $error_ary); $no_updates = false; break; // No changes from 3.0.6-RC3 to 3.0.6-RC4 case '3.0.6-RC3': break; // No changes from 3.0.6-RC4 to 3.0.6 case '3.0.6-RC4': break; // Changes from 3.0.6 to 3.0.7-RC1 case '3.0.6': // ATOM Feeds set_config('feed_overall', '1'); set_config('feed_http_auth', '0'); set_config('feed_limit_post', (string) (isset($config['feed_limit']) ? (int) $config['feed_limit'] : 15)); set_config('feed_limit_topic', (string) (isset($config['feed_overall_topics_limit']) ? (int) $config['feed_overall_topics_limit'] : 10)); set_config('feed_topics_new', (!empty($config['feed_overall_topics']) ? '1' : '0')); set_config('feed_topics_active', (!empty($config['feed_overall_topics']) ? '1' : '0')); // Delete all text-templates from the template_data $sql = 'DELETE FROM ' . STYLES_TEMPLATE_DATA_TABLE . ' WHERE template_filename ' . $db->sql_like_expression($db->any_char . '.txt'); _sql($sql, $errored, $error_ary); $no_updates = false; break; // Changes from 3.0.7-RC1 to 3.0.7-RC2 case '3.0.7-RC1': $sql = 'SELECT user_id, user_email, user_email_hash FROM ' . USERS_TABLE . ' WHERE user_type <> ' . USER_IGNORE . " AND user_email <> ''"; $result = $db->sql_query($sql); $i = 0; while ($row = $db->sql_fetchrow($result)) { // Snapshot of the phpbb_email_hash() function // We cannot call it directly because the auto updater updates the DB first. :/ $user_email_hash = sprintf('%u', crc32(strtolower($row['user_email']))) . strlen($row['user_email']); if ($user_email_hash != $row['user_email_hash']) { $sql_ary = array( 'user_email_hash' => $user_email_hash, ); $sql = 'UPDATE ' . USERS_TABLE . ' SET ' . $db->sql_build_array('UPDATE', $sql_ary) . ' WHERE user_id = ' . (int) $row['user_id']; _sql($sql, $errored, $error_ary, ($i % 100 == 0)); ++$i; } } $db->sql_freeresult($result); $no_updates = false; break; // No changes from 3.0.7-RC2 to 3.0.7 case '3.0.7-RC2': break; // No changes from 3.0.7 to 3.0.7-PL1 case '3.0.7': break; // Changes from 3.0.7-PL1 to 3.0.8-RC1 case '3.0.7-PL1': // Update file extension group names to use language strings. $sql = 'SELECT lang_dir FROM ' . LANG_TABLE; $result = $db->sql_query($sql); $extension_groups_updated = array(); while ($lang_dir = $db->sql_fetchfield('lang_dir')) { $lang_dir = basename($lang_dir); // The language strings we need are either in language/.../acp/attachments.php // in the update package if we're updating to 3.0.8-RC1 or later, // or they are in language/.../install.php when we're updating from 3.0.7-PL1 or earlier. // On an already updated board, they can also already be in language/.../acp/attachments.php // in the board root. $lang_files = array( "{$phpbb_root_path}install/update/new/language/$lang_dir/acp/attachments.$phpEx", "{$phpbb_root_path}language/$lang_dir/install.$phpEx", "{$phpbb_root_path}language/$lang_dir/acp/attachments.$phpEx", ); foreach ($lang_files as $lang_file) { if (!file_exists($lang_file)) { continue; } $lang = array(); include($lang_file); foreach($lang as $lang_key => $lang_val) { if (isset($extension_groups_updated[$lang_key]) || strpos($lang_key, 'EXT_GROUP_') !== 0) { continue; } $sql_ary = array( 'group_name' => substr($lang_key, 10), // Strip off 'EXT_GROUP_' ); $sql = 'UPDATE ' . EXTENSION_GROUPS_TABLE . ' SET ' . $db->sql_build_array('UPDATE', $sql_ary) . " WHERE group_name = '" . $db->sql_escape($lang_val) . "'"; _sql($sql, $errored, $error_ary); $extension_groups_updated[$lang_key] = true; } } } $db->sql_freeresult($result); // Install modules $modules_to_install = array( 'post' => array( 'base' => 'board', 'class' => 'acp', 'title' => 'ACP_POST_SETTINGS', 'auth' => 'acl_a_board', 'cat' => 'ACP_MESSAGES', 'after' => array('message', 'ACP_MESSAGE_SETTINGS') ), ); _add_modules($modules_to_install); // update $sql = 'UPDATE ' . MODULES_TABLE . ' SET module_auth = \'cfg_allow_avatar && (cfg_allow_avatar_local || cfg_allow_avatar_remote || cfg_allow_avatar_upload || cfg_allow_avatar_remote_upload)\' WHERE module_class = \'ucp\' AND module_basename = \'profile\' AND module_mode = \'avatar\''; _sql($sql, $errored, $error_ary); // add Bing Bot $bot_name = 'Bing [Bot]'; $bot_name_clean = utf8_clean_string($bot_name); $sql = 'SELECT user_id FROM ' . USERS_TABLE . " WHERE username_clean = '" . $db->sql_escape($bot_name_clean) . "'"; $result = $db->sql_query($sql); $bing_already_added = (bool) $db->sql_fetchfield('user_id'); $db->sql_freeresult($result); if (!$bing_already_added) { $bot_agent = 'bingbot/'; $bot_ip = ''; $sql = 'SELECT group_id, group_colour FROM ' . GROUPS_TABLE . " WHERE group_name = 'BOTS'"; $result = $db->sql_query($sql); $group_row = $db->sql_fetchrow($result); $db->sql_freeresult($result); if (!$group_row) { // default fallback, should never get here $group_row['group_id'] = 6; $group_row['group_colour'] = '9E8DA7'; } if (!function_exists('user_add')) { include($phpbb_root_path . 'includes/functions_user.' . $phpEx); } $user_row = array( 'user_type' => USER_IGNORE, 'group_id' => $group_row['group_id'], 'username' => $bot_name, 'user_regdate' => time(), 'user_password' => '', 'user_colour' => $group_row['group_colour'], 'user_email' => '', 'user_lang' => $config['default_lang'], 'user_style' => $config['default_style'], 'user_timezone' => 0, 'user_dateformat' => $config['default_dateformat'], 'user_allow_massemail' => 0, ); $user_id = user_add($user_row); $sql = 'INSERT INTO ' . BOTS_TABLE . ' ' . $db->sql_build_array('INSERT', array( 'bot_active' => 1, 'bot_name' => (string) $bot_name, 'user_id' => (int) $user_id, 'bot_agent' => (string) $bot_agent, 'bot_ip' => (string) $bot_ip, )); _sql($sql, $errored, $error_ary); } // end Bing Bot addition // Delete shadow topics pointing to not existing topics $batch_size = 500; // Set of affected forums we have to resync $sync_forum_ids = array(); do { $sql_array = array( 'SELECT' => 't1.topic_id, t1.forum_id', 'FROM' => array( TOPICS_TABLE => 't1', ), 'LEFT_JOIN' => array( array( 'FROM' => array(TOPICS_TABLE => 't2'), 'ON' => 't1.topic_moved_id = t2.topic_id', ), ), 'WHERE' => 't1.topic_moved_id <> 0 AND t2.topic_id IS NULL', ); $sql = $db->sql_build_query('SELECT', $sql_array); $result = $db->sql_query_limit($sql, $batch_size); $topic_ids = array(); while ($row = $db->sql_fetchrow($result)) { $topic_ids[] = (int) $row['topic_id']; $sync_forum_ids[(int) $row['forum_id']] = (int) $row['forum_id']; } $db->sql_freeresult($result); if (!empty($topic_ids)) { $sql = 'DELETE FROM ' . TOPICS_TABLE . ' WHERE ' . $db->sql_in_set('topic_id', $topic_ids); $db->sql_query($sql); } } while (sizeof($topic_ids) == $batch_size); // Sync the forums we have deleted shadow topics from. sync('forum', 'forum_id', $sync_forum_ids, true, true); // Unread posts search load switch set_config('load_unreads_search', '1'); // Reduce queue interval to 60 seconds, email package size to 20 if ($config['queue_interval'] == 600) { set_config('queue_interval', '60'); } if ($config['email_package_size'] == 50) { set_config('email_package_size', '20'); } $no_updates = false; break; // No changes from 3.0.8-RC1 to 3.0.8 case '3.0.8-RC1': break; // Changes from 3.0.8 to 3.0.9-RC1 case '3.0.8': set_config('ip_login_limit_max', '50'); set_config('ip_login_limit_time', '21600'); set_config('ip_login_limit_use_forwarded', '0'); // Update file extension group names to use language strings, again. $sql = 'SELECT group_id, group_name FROM ' . EXTENSION_GROUPS_TABLE . ' WHERE group_name ' . $db->sql_like_expression('EXT_GROUP_' . $db->any_char); $result = $db->sql_query($sql); while ($row = $db->sql_fetchrow($result)) { $sql_ary = array( 'group_name' => substr($row['group_name'], 10), // Strip off 'EXT_GROUP_' ); $sql = 'UPDATE ' . EXTENSION_GROUPS_TABLE . ' SET ' . $db->sql_build_array('UPDATE', $sql_ary) . ' WHERE group_id = ' . $row['group_id']; _sql($sql, $errored, $error_ary); } $db->sql_freeresult($result); /* * Due to a bug, vanilla phpbb could not create captcha tables * in 3.0.8 on firebird. It was possible for board administrators * to adjust the code to work. If code was manually adjusted by * board administrators, index names would not be the same as * what 3.0.9 and newer expect. This code fragment drops captcha * tables, destroying all entered Q&A captcha configuration, such * that when Q&A is configured next the respective tables will be * created with correct index names. * * If you wish to preserve your Q&A captcha configuration, you can * manually rename indexes to the currently expected name: * phpbb_captcha_questions_lang_iso => phpbb_captcha_questions_lang * phpbb_captcha_answers_question_id => phpbb_captcha_answers_qid * * Again, this needs to be done only if a board was manually modified * to fix broken captcha code. * if ($db_tools->sql_layer == 'firebird') { $changes = array( 'drop_tables' => array( $table_prefix . 'captcha_questions', $table_prefix . 'captcha_answers', $table_prefix . 'qa_confirm', ), ); $statements = $db_tools->perform_schema_changes($changes); foreach ($statements as $sql) { _sql($sql, $errored, $error_ary); } } */ $no_updates = false; break; // No changes from 3.0.9-RC1 to 3.0.9-RC2 case '3.0.9-RC1': break; // No changes from 3.0.9-RC2 to 3.0.9-RC3 case '3.0.9-RC2': break; // No changes from 3.0.9-RC3 to 3.0.9-RC4 case '3.0.9-RC3': break; // No changes from 3.0.9-RC4 to 3.0.9 case '3.0.9-RC4': break; // Changes from 3.0.9 to 3.0.10-RC1 case '3.0.9': if (!isset($config['email_max_chunk_size'])) { set_config('email_max_chunk_size', '50'); } $no_updates = false; break; // No changes from 3.0.10-RC1 to 3.0.10-RC2 case '3.0.10-RC1': break; // No changes from 3.0.10-RC2 to 3.0.10-RC3 case '3.0.10-RC2': break; // No changes from 3.0.10-RC3 to 3.0.10 case '3.0.10-RC3': break; // Changes from 3.0.10 to 3.0.11-RC1 case '3.0.10': // Updates users having current style a deactivated one $sql = 'SELECT style_id FROM ' . STYLES_TABLE . ' WHERE style_active = 0'; $result = $db->sql_query($sql); $deactivated_style_ids = array(); while ($style_id = $db->sql_fetchfield('style_id', false, $result)) { $deactivated_style_ids[] = (int) $style_id; } $db->sql_freeresult($result); if (!empty($deactivated_style_ids)) { $sql = 'UPDATE ' . USERS_TABLE . ' SET user_style = ' . (int) $config['default_style'] .' WHERE ' . $db->sql_in_set('user_style', $deactivated_style_ids); _sql($sql, $errored, $error_ary); } // Delete orphan private messages $batch_size = 500; $sql_array = array( 'SELECT' => 'p.msg_id', 'FROM' => array( PRIVMSGS_TABLE => 'p', ), 'LEFT_JOIN' => array( array( 'FROM' => array(PRIVMSGS_TO_TABLE => 't'), 'ON' => 'p.msg_id = t.msg_id', ), ), 'WHERE' => 't.user_id IS NULL', ); $sql = $db->sql_build_query('SELECT', $sql_array); do { $result = $db->sql_query_limit($sql, $batch_size); $delete_pms = array(); while ($row = $db->sql_fetchrow($result)) { $delete_pms[] = (int) $row['msg_id']; } $db->sql_freeresult($result); if (!empty($delete_pms)) { $sql = 'DELETE FROM ' . PRIVMSGS_TABLE . ' WHERE ' . $db->sql_in_set('msg_id', $delete_pms); _sql($sql, $errored, $error_ary); } } while (sizeof($delete_pms) == $batch_size); $no_updates = false; break; // No changes from 3.0.11-RC1 to 3.0.11-RC2 case '3.0.11-RC1': break; // No changes from 3.0.11-RC2 to 3.0.11 case '3.0.11-RC2': break; // Changes from 3.0.11 to 3.0.12-RC1 case '3.0.11': $sql = 'UPDATE ' . MODULES_TABLE . ' SET module_auth = \'acl_u_sig\' WHERE module_class = \'ucp\' AND module_basename = \'profile\' AND module_mode = \'signature\''; _sql($sql, $errored, $error_ary); // Update bots if (!function_exists('user_delete')) { include($phpbb_root_path . 'includes/functions_user.' . $phpEx); } $bots_updates = array( // Bot Deletions 'NG-Search [Bot]' => false, 'Nutch/CVS [Bot]' => false, 'OmniExplorer [Bot]' => false, 'Seekport [Bot]' => false, 'Synoo [Bot]' => false, 'WiseNut [Bot]' => false, // Bot Updates // Bot name to bot user agent map 'Baidu [Spider]' => 'Baiduspider', 'Exabot [Bot]' => 'Exabot', 'Voyager [Bot]' => 'voyager/', 'W3C [Validator]' => 'W3C_Validator', ); foreach ($bots_updates as $bot_name => $bot_agent) { $sql = 'SELECT user_id FROM ' . USERS_TABLE . ' WHERE user_type = ' . USER_IGNORE . " AND username_clean = '" . $db->sql_escape(utf8_clean_string($bot_name)) . "'"; $result = $db->sql_query($sql); $bot_user_id = (int) $db->sql_fetchfield('user_id'); $db->sql_freeresult($result); if ($bot_user_id) { if ($bot_agent === false) { $sql = 'DELETE FROM ' . BOTS_TABLE . " WHERE user_id = $bot_user_id"; _sql($sql, $errored, $error_ary); user_delete('remove', $bot_user_id); } else { $sql = 'UPDATE ' . BOTS_TABLE . " SET bot_agent = '" . $db->sql_escape($bot_agent) . "' WHERE user_id = $bot_user_id"; _sql($sql, $errored, $error_ary); } } } // Disable receiving pms for bots $sql = 'SELECT user_id FROM ' . BOTS_TABLE; $result = $db->sql_query($sql); $bot_user_ids = array(); while ($row = $db->sql_fetchrow($result)) { $bot_user_ids[] = (int) $row['user_id']; } $db->sql_freeresult($result); if (!empty($bot_user_ids)) { $sql = 'UPDATE ' . USERS_TABLE . ' SET user_allow_pm = 0 WHERE ' . $db->sql_in_set('user_id', $bot_user_ids); _sql($sql, $errored, $error_ary); } /** * Update BBCodes that currently use the LOCAL_URL tag * * To fix http://tracker.phpbb.com/browse/PHPBB3-8319 we changed * the second_pass_replace value, so that needs updating for existing ones */ $sql = 'SELECT * FROM ' . BBCODES_TABLE . ' WHERE bbcode_match ' . $db->sql_like_expression($db->any_char . 'LOCAL_URL' . $db->any_char); $result = $db->sql_query($sql); while ($row = $db->sql_fetchrow($result)) { if (!class_exists('acp_bbcodes')) { phpbb_require_updated('includes/acp/acp_bbcodes.' . $phpEx); } $bbcode_match = $row['bbcode_match']; $bbcode_tpl = $row['bbcode_tpl']; $acp_bbcodes = new acp_bbcodes(); $sql_ary = $acp_bbcodes->build_regexp($bbcode_match, $bbcode_tpl); $sql = 'UPDATE ' . BBCODES_TABLE . ' SET ' . $db->sql_build_array('UPDATE', $sql_ary) . ' WHERE bbcode_id = ' . (int) $row['bbcode_id']; $db->sql_query($sql); } $db->sql_freeresult($result); $no_updates = false; break; // No changes from 3.0.12-RC1 to 3.0.12-RC2 case '3.0.12-RC1': break; // No changes from 3.0.12-RC2 to 3.0.12-RC3 case '3.0.12-RC2': break; // No changes from 3.0.12-RC3 to 3.0.12 case '3.0.12-RC3': break; } } ?> debian/update_languages0000755000000000000000000000267112016565404012435 0ustar #!/usr/bin/perl -w use strict; die "Must be executed in the 'debian' subdir" unless -d 'upstream'; `rm -f upstream/phpbb3_l10n-*.info`; my @lists; my @langs; my $index='https://www.phpbb.com/languages/index.php'; my $trans='https://www.phpbb.com/customise/db/translation/'; my $downl='https://www.phpbb.com/customise/db/download/id_'; # Get language pages and other list pages open DOWNLOADS, "wget -q -O- $index|"; while () { push @langs, $1 if m,,; if ( @lists == 0 and m,, ) { push @lists, $1 while s,,,; } } close DOWNLOADS; # Get other language pages for (@lists) { open DOWNLOADS, "wget -q -O- $index\?$_|"; while () { push @langs, $1 if m,, } close DOWNLOADS; } # Get information about language pack for (@langs) { open DOWNLOADS, "wget -q -O- https://www.phpbb.com/customise/db/translation/$_|"; my ($url,$code,$md5); while () { $url = $1 if m,ISO Code (.+)\n,; $md5 = $1 if m,MD5 checksum (\w+)\n,; } close DOWNLOADS; open INFO, "> upstream/phpbb3_l10n-$code.info"; print INFO "Url=$url\n"; print INFO "Md5=$md5\n"; print INFO "Copyright=GPL-2\n"; print INFO "Include=yes\n"; close INFO; } debian/README.Debian0000644000000000000000000000627211534725603011244 0ustar ----------------- phpbb3 for Debian ----------------- Upgrading, converting old posts =============================== See UPGRADING.Debian. (Spoiler: not possible between major versions) First use after a new installation ================================== - Go to the URL of your board, usually http://yourserver.example.com/phpbb. If this doesn't work, see the next paragraph. - Click 'Login' and login with user 'admin' and password defined during install (it can be configured by running `dpkg-reconfigure phpbb3' as root). - Click 'Administration Control Panel' at the bottom of the screen and login again using the above credentials. - Review all settings, especially 'Board Configuration'. - To enable the board, set 'Disable board' to 'No' and submit. - Go to your own profile, and fill in your email address, and change your login name and password. You now should have a functional phpbb board with yourself as admin! For information on setting up multiple boards with this package, see README.multiboard. Troubleshooting a new installation ================================== - There should be a symlink from your webserver's configuration snippets directory to /etc/phpbb3/.conf. phpbb3 should have asked you for the webserver to configure during installation (it can be set by running `dpkg-reconfigure phpbb3' as root). - Make sure the webserver was restarted. - Watch for errors or warnings during the restart of your webserver and consult the webserver documentation if that still doesn't resolve the issue. Security ======== Register Globals: Debian does not provide security support for installations with the PHP register_globals setting turned On. It's also not required for phpBB to operate. Make sure it's off. It's trivial to turn it on just for specific legacy sites that may need it. Custom templates ================ Please install your custom templates in /etc/phpbb3/styles - you can then add those to your installation using the Administration Control Panel. See also README.templates. Setup database ============== If you don't want to use the dbconfig-common database configuration, for example if you want to have full control yourself or want to use a different database system, you need to setup the database yourself. - Login to your database server (running MySQL or PostgreSQL) as the database administrator (root and postgres, respectively). - Create a database 'phpbb3'. - Create a user 'phpbb3' with random password, and give it SELECT/INSERT/UPDATE/DELETE rights for the phpbb3 database (rights to alter the tables is not needed). - Execute the create table commands and the starting table content from /usr/share/doc/phpbb3/schemas/$dbms_schema.sql. - Add the correct server-details and user-credentials into /etc/phpbb3/config.php (see /usr/share/doc/phpbb3/examples/config.php for an example). - Make sure to have PHP read this configuration file e.g. by using auto_prepend_file. For examples see README.multiboard, even if you use only one board. Original document by: -- Jeroen van Wolffelaar , Thu, 8 Jan 2004 00:02:43 +0100 Overhaul for version 3.0.7-PL1-1 by: -- J.M. Roth , Tue, 16 Mar 2010 01:30:00 +0100 debian/phpbb3.config0000755000000000000000000001111011535324361011533 0ustar #!/bin/sh # config script for phpbb3 # Copyright 2004 Jeroen van Wolffelaar # Copyright 2010 J.M. Roth # # possible calls: called from postinst, same calls + reconfigure set -e if [ "$PB3DEBUG" = "maint" ]; then echo "[maint] $0 $@" >&2 fi if [ "$PB3DEBUG" = "sh" ]; then set -x fi SUPPORTED_WEBSERVERS="apache2 lighttpd" . /usr/share/debconf/confmodule db_version 2.0 # create the list of what webservers we should show in debconf # (if the dialog is displayed at all) AVAILABLE_WEBSERVERS="" for w in $SUPPORTED_WEBSERVERS; do if [ -x /usr/sbin/$w ]; then AVAILABLE_WEBSERVERS="${AVAILABLE_WEBSERVERS:+$AVAILABLE_WEBSERVERS, }$w" fi done # remember previously configured webservers for postinst # (where we determine which webservers to actually restart) db_register phpbb3/httpd phpbb3/httpd-old db_get phpbb3/httpd db_set phpbb3/httpd-old "$RET" db_subst phpbb3/httpd choices $AVAILABLE_WEBSERVERS db_input high phpbb3/httpd || true db_go || true # some files of the package need to be present to configure the package if [ -f /usr/share/phpbb3/maint-libs/webapps-config ] && \ [ -f /usr/share/phpbb3/maint-libs/dbapps-lib ]; then . /usr/share/phpbb3/maint-libs/webapps-config . /usr/share/phpbb3/maint-libs/dbapps-lib dc_dbg if [ -f /usr/share/dbconfig-common/dpkg/config ]; then dbc_dbtypes="mysql, pgsql, sqlite" . /usr/share/dbconfig-common/dpkg/config if ! dbc_go phpbb3 $@; then echo 'dbc_go (config) failed' fi fi dc_dbg # ask to provide board's admin password # - if dbconfig-common is used at all, and # - this is a fresh install (or reconfigure), or # - the password has never been changed from 'admin' if dc_true phpbb3/dbconfig-install ; then if [ -n "$2" ] && ! dc_true phpbb3/dbconfig-remove ; then check_admin_passwd=$(run_sql "SELECT user_password FROM phpbb_users WHERE username='admin';") fi # first ask whether we should ask the questions at all (admin-pass-ask): # otherwise, when e.g. reconfiguring the _webserver_ one would # also have to set a new password (NO, in contrary to standard # dbconfig-common behavior, an empty password here does not mean # "use the old password" but "generate random password" case "$1" in configure ) case "$2" in # package install "" ) db_set phpbb3/admin-pass-ask true ;; # package upgrade/reinstall * ) if [ "$check_admin_passwd" = "$(_md5 admin)" ] || dc_true phpbb3/dbconfig-reinstall ; then db_set phpbb3/admin-pass-ask true fi ;; esac ;; # dpkg-reconfigure reconfigure ) # database reinstall if dc_true phpbb3/dbconfig-reinstall ; then db_set phpbb3/admin-pass-ask true else db_input high phpbb3/admin-pass-ask || true db_go || true fi ;; * ) db_set phpbb3/admin-pass-ask false ;; esac if dc_true phpbb3/admin-pass-ask ; then OK=false until [ "$OK" = "true" ] ; do dc_forget phpbb3/admin-pass db_input high phpbb3/admin-pass || true db_go || true P1=$(dc_get phpbb3/admin-pass) if [ -n "$P1" ] ; then if [ "${#P1}" -lt 6 ] ; then db_input high phpbb3/admin-pass-requirements && db_go || true dc_forget phpbb3/admin-pass dc_forget phpbb3/admin-pass-confirm continue fi db_input high phpbb3/admin-pass-confirm || true db_go || true P2=$(dc_get phpbb3/admin-pass-confirm) if [ "$P1" != "$P2" ] ; then db_input high phpbb3/admin-pass-mismatch || true db_go || true dc_forget phpbb3/admin-pass dc_forget phpbb3/admin-pass-confirm continue fi else P2= P1=$( or section of your webserver's config. That file will then override the standard config. For an example file, see /usr/share/doc/phpbb3/examples/config.php. See also /usr/share/doc/phpbb3/README.multiboard. */ if (!defined('PHPBB_INSTALLED')) { // database.inc.php also exists when the question if // dbconfig-common should be used was answered with "No" // therefore we don't need to check its existence @include('/etc/phpbb3/database.inc.php'); if (empty($dbtype) && @constant('IN_INSTALL')!='true') { die("The board configuration seems to be incomplete. Use the dbconfig-common method provided with the package setup (dpkg-reconfigure phpbb3) to have a database setup automatically, or see /usr/share/doc/phpbb3/README.Debian and/or /usr/share/doc/phpbb3/README.multiboard for information on how to configure manually."); } // now translate the dbconfig-common variables to the phpBB internal vars $dbms = ($dbtype == 'pgsql' ? 'postgres' : $dbtype); if ($dbtype == 'sqlite') { $dbhost = "$basepath/$dbname"; } else { $dbhost = $dbserver; } $dbpasswd = $dbpass; if (!isset($table_prefix)) { $table_prefix = 'phpbb_'; } $load_extensions = ''; define('PHPBB_INSTALLED', true); } if (!isset($acm_type)) { // don't break multi-sites from < 3.0.7-PL1-1 $acm_type = 'file'; } // $url_forum is used inside the patched phpBB code in Debian to // ensure a working multisite cache/store/... // Use the database name as a default fallback. if (empty($url_forum)) { $url_forum = $dbname; } debian/phpbb3.docs0000644000000000000000000000014111534725603011220 0ustar debian/UPGRADING.Debian debian/README.templates debian/README.multiboard debian/README.postgresqldebian/schema_data_debian.sql0000644000000000000000000076606012235503170013457 0ustar INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1,0,85,0,1); INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1,0,93,0,1); INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1,0,110,0,1); INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5,0,0,5,0); INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5,0,0,1,0); INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2,0,0,6,0); INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (3,0,0,6,0); INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (4,0,0,5,0); INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (4,0,0,10,0); INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1,1,0,17,0); INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2,1,0,17,0); INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (3,1,0,17,0); INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (6,1,0,17,0); INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (1,2,0,17,0); INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2,2,0,15,0); INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (3,2,0,15,0); INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (4,2,0,21,0); INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5,2,0,14,0); INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (5,2,0,10,0); INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (6,2,0,19,0); INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (7,0,0,23,0); INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (7,1,0,24,0); INSERT INTO phpbb_acl_groups (group_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (7,2,0,24,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (1,'f_',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (2,'f_announce',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (3,'f_attach',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (4,'f_bbcode',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (5,'f_bump',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (6,'f_delete',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (7,'f_download',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (8,'f_edit',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (9,'f_email',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (10,'f_flash',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (11,'f_icons',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (12,'f_ignoreflood',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (13,'f_img',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (14,'f_list',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (15,'f_noapprove',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (16,'f_poll',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (17,'f_post',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (18,'f_postcount',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (19,'f_print',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (20,'f_read',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (21,'f_reply',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (22,'f_report',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (23,'f_search',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (24,'f_sigs',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (25,'f_smilies',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (26,'f_sticky',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (27,'f_subscribe',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (28,'f_user_lock',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (29,'f_vote',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (30,'f_votechg',0,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (31,'m_',1,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (32,'m_approve',1,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (33,'m_chgposter',1,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (34,'m_delete',1,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (35,'m_edit',1,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (36,'m_info',1,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (37,'m_lock',1,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (38,'m_merge',1,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (39,'m_move',1,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (40,'m_report',1,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (41,'m_split',1,1,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (42,'m_ban',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (43,'m_warn',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (44,'a_',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (45,'a_aauth',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (46,'a_attach',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (47,'a_authgroups',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (48,'a_authusers',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (49,'a_backup',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (50,'a_ban',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (51,'a_bbcode',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (52,'a_board',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (53,'a_bots',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (54,'a_clearlogs',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (55,'a_email',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (56,'a_fauth',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (57,'a_forum',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (58,'a_forumadd',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (59,'a_forumdel',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (60,'a_group',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (61,'a_groupadd',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (62,'a_groupdel',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (63,'a_icons',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (64,'a_jabber',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (65,'a_language',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (66,'a_mauth',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (67,'a_modules',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (68,'a_names',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (69,'a_phpinfo',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (70,'a_profile',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (71,'a_prune',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (72,'a_ranks',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (73,'a_reasons',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (74,'a_roles',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (75,'a_search',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (76,'a_server',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (77,'a_styles',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (78,'a_switchperm',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (79,'a_uauth',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (80,'a_user',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (81,'a_userdel',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (82,'a_viewauth',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (83,'a_viewlogs',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (84,'a_words',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (85,'u_',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (86,'u_attach',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (87,'u_chgavatar',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (88,'u_chgcensors',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (89,'u_chgemail',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (90,'u_chggrp',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (91,'u_chgname',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (92,'u_chgpasswd',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (93,'u_download',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (94,'u_hideonline',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (95,'u_ignoreflood',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (96,'u_masspm',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (97,'u_pm_attach',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (98,'u_pm_bbcode',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (99,'u_pm_delete',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (100,'u_pm_download',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (101,'u_pm_edit',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (102,'u_pm_emailpm',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (103,'u_pm_flash',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (104,'u_pm_forward',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (105,'u_pm_img',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (106,'u_pm_printpm',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (107,'u_pm_smilies',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (108,'u_readpm',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (109,'u_savedrafts',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (110,'u_search',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (111,'u_sendemail',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (112,'u_sendim',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (113,'u_sendpm',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (114,'u_sig',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (115,'u_viewonline',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (116,'u_viewprofile',1,0,0); INSERT INTO phpbb_acl_options (auth_option_id, auth_option, is_global, is_local, founder_only) VALUES (117,'u_masspm_group',1,0,0); INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (1,'ROLE_ADMIN_STANDARD','ROLE_DESCRIPTION_ADMIN_STANDARD','a_',1); INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (2,'ROLE_ADMIN_FORUM','ROLE_DESCRIPTION_ADMIN_FORUM','a_',3); INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (3,'ROLE_ADMIN_USERGROUP','ROLE_DESCRIPTION_ADMIN_USERGROUP','a_',4); INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (4,'ROLE_ADMIN_FULL','ROLE_DESCRIPTION_ADMIN_FULL','a_',2); INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (5,'ROLE_USER_FULL','ROLE_DESCRIPTION_USER_FULL','u_',3); INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (6,'ROLE_USER_STANDARD','ROLE_DESCRIPTION_USER_STANDARD','u_',1); INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (7,'ROLE_USER_LIMITED','ROLE_DESCRIPTION_USER_LIMITED','u_',2); INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (8,'ROLE_USER_NOPM','ROLE_DESCRIPTION_USER_NOPM','u_',4); INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (9,'ROLE_USER_NOAVATAR','ROLE_DESCRIPTION_USER_NOAVATAR','u_',5); INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (10,'ROLE_MOD_FULL','ROLE_DESCRIPTION_MOD_FULL','m_',3); INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (11,'ROLE_MOD_STANDARD','ROLE_DESCRIPTION_MOD_STANDARD','m_',1); INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (12,'ROLE_MOD_SIMPLE','ROLE_DESCRIPTION_MOD_SIMPLE','m_',2); INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (13,'ROLE_MOD_QUEUE','ROLE_DESCRIPTION_MOD_QUEUE','m_',4); INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (14,'ROLE_FORUM_FULL','ROLE_DESCRIPTION_FORUM_FULL','f_',7); INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (15,'ROLE_FORUM_STANDARD','ROLE_DESCRIPTION_FORUM_STANDARD','f_',5); INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (16,'ROLE_FORUM_NOACCESS','ROLE_DESCRIPTION_FORUM_NOACCESS','f_',1); INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (17,'ROLE_FORUM_READONLY','ROLE_DESCRIPTION_FORUM_READONLY','f_',2); INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (18,'ROLE_FORUM_LIMITED','ROLE_DESCRIPTION_FORUM_LIMITED','f_',3); INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (19,'ROLE_FORUM_BOT','ROLE_DESCRIPTION_FORUM_BOT','f_',9); INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (20,'ROLE_FORUM_ONQUEUE','ROLE_DESCRIPTION_FORUM_ONQUEUE','f_',8); INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (21,'ROLE_FORUM_POLLS','ROLE_DESCRIPTION_FORUM_POLLS','f_',6); INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (22,'ROLE_FORUM_LIMITED_POLLS','ROLE_DESCRIPTION_FORUM_LIMITED_POLLS','f_',4); INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (23,'ROLE_USER_NEW_MEMBER','ROLE_DESCRIPTION_USER_NEW_MEMBER','u_',6); INSERT INTO phpbb_acl_roles (role_id, role_name, role_description, role_type, role_order) VALUES (24,'ROLE_FORUM_NEW_MEMBER','ROLE_DESCRIPTION_FORUM_NEW_MEMBER','f_',10); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,44,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,46,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,47,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,48,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,50,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,51,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,52,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,56,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,57,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,58,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,59,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,60,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,61,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,62,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,63,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,66,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,68,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,70,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,71,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,72,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,73,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,79,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,80,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,81,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,82,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,83,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (1,84,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,44,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,47,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,48,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,56,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,57,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,58,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,59,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,66,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,71,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,79,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,82,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (2,83,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,44,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,47,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,48,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,50,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,60,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,61,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,62,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,72,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,79,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,80,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,82,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (3,83,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,44,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,45,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,46,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,47,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,48,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,49,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,50,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,51,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,52,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,53,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,54,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,55,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,56,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,57,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,58,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,59,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,60,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,61,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,62,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,63,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,64,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,65,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,66,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,67,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,68,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,69,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,70,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,71,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,72,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,73,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,74,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,75,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,76,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,77,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,78,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,79,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,80,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,81,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,82,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,83,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (4,84,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,85,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,86,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,87,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,88,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,89,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,90,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,91,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,92,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,93,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,94,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,95,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,96,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,97,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,98,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,99,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,100,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,101,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,102,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,103,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,104,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,105,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,106,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,107,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,108,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,109,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,110,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,111,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,112,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,113,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,114,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,115,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,116,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (5,117,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,85,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,86,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,87,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,88,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,89,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,92,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,93,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,94,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,96,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,97,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,98,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,99,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,100,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,101,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,102,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,105,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,106,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,107,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,108,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,109,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,110,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,111,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,112,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,113,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,114,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,116,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (6,117,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,85,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,87,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,88,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,89,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,92,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,93,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,94,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,96,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,98,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,99,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,100,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,101,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,104,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,105,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,106,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,107,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,108,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,113,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,114,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,116,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (7,117,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,85,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,87,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,88,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,89,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,92,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,93,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,94,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,96,0); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,108,0); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,113,0); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,114,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,116,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (8,117,0); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,85,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,87,0); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,88,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,89,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,92,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,93,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,94,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,96,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,98,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,99,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,100,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,101,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,104,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,105,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,106,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,107,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,108,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,113,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,114,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,116,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (9,117,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,31,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,32,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,33,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,34,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,35,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,36,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,37,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,38,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,39,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,40,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,41,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,42,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (10,43,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,31,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,32,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,34,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,35,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,36,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,37,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,38,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,39,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,40,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,41,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (11,43,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (12,31,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (12,34,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (12,35,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (12,36,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (12,40,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (13,31,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (13,32,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (13,35,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,1,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,2,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,3,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,4,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,5,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,6,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,7,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,8,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,9,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,10,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,11,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,12,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,13,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,14,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,15,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,16,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,17,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,18,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,19,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,20,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,21,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,22,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,23,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,24,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,25,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,26,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,27,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,28,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,29,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (14,30,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,1,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,3,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,4,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,5,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,6,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,7,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,8,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,9,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,11,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,13,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,14,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,15,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,17,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,18,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,19,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,20,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,21,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,22,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,23,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,24,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,25,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,27,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,29,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (15,30,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (16,1,0); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,1,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,7,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,14,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,19,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,20,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,23,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (17,27,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,1,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,4,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,7,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,8,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,9,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,13,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,14,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,15,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,17,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,18,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,19,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,20,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,21,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,22,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,23,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,24,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,25,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,27,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (18,29,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (19,1,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (19,7,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (19,14,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (19,19,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (19,20,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,1,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,3,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,4,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,7,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,8,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,9,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,13,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,14,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,15,0); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,17,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,18,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,19,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,20,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,21,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,22,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,23,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,24,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,25,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,27,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (20,29,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,1,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,3,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,4,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,5,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,6,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,7,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,8,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,9,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,11,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,13,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,14,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,15,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,16,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,17,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,18,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,19,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,20,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,21,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,22,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,23,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,24,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,25,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,27,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,29,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (21,30,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,1,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,4,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,7,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,8,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,9,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,13,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,14,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,15,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,16,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,17,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,18,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,19,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,20,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,21,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,22,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,23,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,24,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,25,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,27,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (22,29,1); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (23,96,0); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (23,113,0); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (23,117,0); INSERT INTO phpbb_acl_roles_data (role_id, auth_option_id, auth_setting) VALUES (24,15,0); INSERT INTO phpbb_acl_users (user_id, forum_id, auth_option_id, auth_role_id, auth_setting) VALUES (2,0,0,5,0); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (1,1,'AdsBot [Google]',3,'AdsBot-Google',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (2,1,'Alexa [Bot]',4,'ia_archiver',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (3,1,'Alta Vista [Bot]',5,'Scooter/',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (4,1,'Ask Jeeves [Bot]',6,'Ask Jeeves',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (5,1,'Baidu [Spider]',7,'Baiduspider',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (6,1,'Exabot [Bot]',8,'Exabot',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (7,1,'FAST Enterprise [Crawler]',9,'FAST Enterprise Crawler',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (8,1,'FAST WebCrawler [Crawler]',10,'FAST-WebCrawler/',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (9,1,'Francis [Bot]',11,'http://www.neomo.de/',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (10,1,'Gigabot [Bot]',12,'Gigabot/',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (11,1,'Google Adsense [Bot]',13,'Mediapartners-Google/',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (12,1,'Google Desktop',14,'Google Desktop',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (13,1,'Google Feedfetcher',15,'Feedfetcher-Google',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (14,1,'Google [Bot]',16,'Googlebot',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (15,1,'Heise IT-Markt [Crawler]',17,'heise-IT-Markt-Crawler',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (16,1,'Heritrix [Crawler]',18,'heritrix/1.',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (17,1,'IBM Research [Bot]',19,'ibm.com/cs/crawler',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (18,1,'ICCrawler - ICjobs',20,'ICCrawler - ICjobs',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (19,1,'ichiro [Crawler]',21,'ichiro/',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (20,1,'Majestic-12 [Bot]',22,'MJ12bot/',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (21,1,'Metager [Bot]',23,'MetagerBot/',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (22,1,'MSN NewsBlogs',24,'msnbot-NewsBlogs/',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (23,1,'MSN [Bot]',25,'msnbot/',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (24,1,'MSNbot Media',26,'msnbot-media/',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (26,1,'Nutch [Bot]',28,'http://lucene.apache.org/nutch/',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (29,1,'Online link [Validator]',31,'online link validator',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (30,1,'psbot [Picsearch]',32,'psbot/0',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (32,1,'Sensis [Crawler]',34,'Sensis Web Crawler',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (33,1,'SEO Crawler',35,'SEO search Crawler/',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (34,1,'Seoma [Crawler]',36,'Seoma [SEO Crawler]',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (35,1,'SEOSearch [Crawler]',37,'SEOsearch/',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (36,1,'Snappy [Bot]',38,'Snappy/1.1 ( http://www.urltrends.com/ )',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (37,1,'Steeler [Crawler]',39,'http://www.tkl.iis.u-tokyo.ac.jp/~crawler/',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (39,1,'Telekom [Bot]',41,'crawleradmin.t-info@telekom.de',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (40,1,'TurnitinBot [Bot]',42,'TurnitinBot/',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (41,1,'Voyager [Bot]',43,'voyager/',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (42,1,'W3 [Sitesearch]',44,'W3 SiteSearch Crawler',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (43,1,'W3C [Linkcheck]',45,'W3C-checklink/',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (44,1,'W3C [Validator]',46,'W3C_Validator',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (46,1,'Yacy [Bot]',48,'yacybot',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (47,1,'Yahoo MMCrawler [Bot]',49,'Yahoo-MMCrawler/',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (48,1,'Yahoo Slurp [Bot]',50,'Yahoo! DE Slurp',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (49,1,'Yahoo [Bot]',51,'Yahoo! Slurp',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (50,1,'YahooSeeker [Bot]',52,'YahooSeeker/',''); INSERT INTO phpbb_bots (bot_id, bot_active, bot_name, user_id, bot_agent, bot_ip) VALUES (51,1,'Bing [Bot]',53,'bingbot/',''); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('active_sessions','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_attachments','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_autologin','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_avatar','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_avatar_local','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_avatar_remote','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_avatar_remote_upload','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_avatar_upload','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_bbcode','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_birthdays','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_bookmarks','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_emailreuse','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_forum_notify','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_mass_pm','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_name_chars','USERNAME_CHARS_ANY',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_namechange','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_nocensors','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_pm_attach','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_pm_report','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_post_flash','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_post_links','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_privmsg','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_quick_reply','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig_bbcode','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig_flash','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig_img','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig_links','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig_pm','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_sig_smilies','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_smilies','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('allow_topic_notify','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('attachment_quota','52428800',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('auth_bbcode_pm','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('auth_flash_pm','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('auth_img_pm','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('auth_method','db',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('auth_smilies_pm','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_filesize','6144',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_gallery_path','images/avatars/gallery',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_max_height','90',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_max_width','90',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_min_height','20',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_min_width','20',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_path','images/avatars/upload',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('avatar_salt','phpbb_avatar',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_contact','',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_disable','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_disable_msg','',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_dst','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_email','',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_email_form','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_email_sig','Thanks, The Management',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_hide_emails','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_startdate','1268943869',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('board_timezone','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('browser_check','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('bump_interval','10',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('bump_type','d',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cache_gc','7200',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cache_last_gc','0',1); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd_3d_noise','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd_fonts','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd_foreground_noise','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd_wave','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd_x_grid','@DEB_CAPTCHA_X_RAND@',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_gd_y_grid','@DEB_CAPTCHA_Y_RAND@',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('captcha_plugin','phpbb_captcha_gd',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('check_attachment_content','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('check_dnsbl','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('chg_passforce','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('confirm_refresh','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cookie_domain','',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cookie_name','phpbb3',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cookie_path','/',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cookie_secure','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('coppa_enable','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('coppa_fax','',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('coppa_mail','',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('cron_lock','0',1); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('database_gc','604800',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('database_last_gc','0',1); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('dbms_version','5.5.33-1-log',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('default_dateformat','D M d, Y g:i a',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('default_lang','en',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('default_style','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('delete_time','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('display_last_edited','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('display_order','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('edit_time','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('email_check_mx','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('email_enable','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('email_function_name','mail',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('email_package_size','20',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('enable_confirm','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('enable_pm_icons','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('enable_post_confirm','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('enable_queue_trigger','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_enable','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_forum','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_http_auth','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_item_statistics','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_limit','10',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_limit_post','10',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_limit_topic','15',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_overall','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_overall_forums','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_overall_forums_limit','15',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_overall_topics','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_overall_topics_limit','15',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_topic','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_topics_active','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('feed_topics_new','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('flood_interval','15',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('force_server_vars','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('form_token_lifetime','7200',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('form_token_mintime','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('form_token_sid_guests','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('forward_pm','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('forwarded_for_check','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('full_folder_action','2',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('fulltext_mysql_max_word_len','254',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('fulltext_mysql_min_word_len','4',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('fulltext_native_common_thres','5',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('fulltext_native_load_upd','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('fulltext_native_max_chars','14',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('fulltext_native_min_chars','3',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('gzip_compress','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('hot_threshold','25',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('icons_path','images/icons',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_create_thumbnail','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_display_inlined','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_imagick','',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_link_height','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_link_width','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_max_height','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_max_thumb_width','400',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_max_width','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('img_min_thumb_filesize','12000',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ip_check','3',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ip_login_limit_max','50',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ip_login_limit_time','21600',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ip_login_limit_use_forwarded','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_enable','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_host','',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_package_size','20',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_password','',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_port','5222',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_use_ssl','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('jab_username','',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('last_queue_run','0',1); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_base_dn','',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_email','',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_password','',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_port','',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_server','',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_uid','',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_user','',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ldap_user_filter','',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('limit_load','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('limit_search_load','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_anon_lastread','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_birthdays','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_cpf_memberlist','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_cpf_viewprofile','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_cpf_viewtopic','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_db_lastread','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_db_track','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_jumpbox','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_moderators','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_online','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_online_guests','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_online_time','5',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_onlinetrack','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_search','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_tplcompile','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_unreads_search','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('load_user_activity','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_attachments','3',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_attachments_pm','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_autologin_time','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_filesize','262144',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_filesize_pm','262144',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_login_attempts','3',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_name_chars','20',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_num_search_keywords','10',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_pass_chars','30',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_poll_options','10',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_post_chars','60000',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_post_font_size','200',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_post_img_height','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_post_img_width','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_post_smilies','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_post_urls','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_quote_depth','3',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_reg_attempts','5',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_sig_chars','255',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_sig_font_size','200',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_sig_img_height','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_sig_img_width','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_sig_smilies','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('max_sig_urls','5',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('mime_triggers','body|head|html|img|plaintext|a href|pre|script|table|title',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('min_name_chars','3',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('min_pass_chars','6',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('min_post_chars','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('min_search_author_chars','3',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('new_member_group_default','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('new_member_post_limit','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('newest_user_colour','AA0000',1); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('newest_user_id','2',1); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('newest_username','',1); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_files','0',1); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_posts','1',1); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_topics','1',1); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('num_users','1',1); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('override_user_style','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('pass_complex','PASS_TYPE_ANY',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('pm_edit_time','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('pm_max_boxes','4',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('pm_max_msgs','50',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('pm_max_recipients','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('posts_per_page','10',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('print_pm','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('queue_interval','60',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('queue_trigger_posts','3',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('rand_seed','0',1); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('rand_seed_last_update','0',1); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('ranks_path','images/ranks',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('record_online_date','0',1); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('record_online_users','0',1); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('referer_validation','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('require_activation','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('script_path','/phpbb',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_anonymous_interval','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_block_size','250',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_gc','7200',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_indexing_state','',1); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_interval','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_last_gc','0',1); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_store_results','1800',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('search_type','fulltext_native',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('secure_allow_deny','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('secure_allow_empty_referer','1',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('secure_downloads','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('server_name','',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('server_port','',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('server_protocol','',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('session_gc','3600',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('session_last_gc','0',1); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('session_length','3600',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('site_desc','Powered by Debian',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('sitename','Your new phpBB board',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smilies_path','images/smilies',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smilies_per_page','50',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_auth_method','PLAIN',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_delivery','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_host','',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_password','',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_port','25',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_username','',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('topics_per_page','25',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('tpl_allow_php','0',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('upload_dir_size','0',1); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('upload_icons_path','images/upload_icons',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('upload_path','files',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('version','3.0.12',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('warnings_expire_days','90',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('warnings_gc','14400',0); INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('warnings_last_gc','0',1); INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (1,'IMAGES',1,1,1,'',0,'',0); INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (2,'ARCHIVES',0,1,1,'',0,'',0); INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (3,'PLAIN_TEXT',0,0,1,'',0,'',0); INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (4,'DOCUMENTS',0,0,1,'',0,'',0); INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (5,'REAL_MEDIA',3,0,1,'',0,'',0); INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (6,'WINDOWS_MEDIA',2,0,1,'',0,'',0); INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (7,'FLASH_FILES',5,0,1,'',0,'',0); INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (8,'QUICKTIME_MEDIA',6,0,1,'',0,'',0); INSERT INTO phpbb_extension_groups (group_id, group_name, cat_id, allow_group, download_mode, upload_icon, max_filesize, allowed_forums, allow_in_pm) VALUES (9,'DOWNLOADABLE_FILES',0,0,1,'',0,'',0); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (1,1,'gif'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (2,1,'png'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (3,1,'jpeg'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (4,1,'jpg'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (5,1,'tif'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (6,1,'tiff'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (7,1,'tga'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (8,2,'gtar'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (9,2,'gz'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (10,2,'tar'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (11,2,'zip'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (12,2,'rar'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (13,2,'ace'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (14,2,'torrent'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (15,2,'tgz'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (16,2,'bz2'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (17,2,'7z'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (18,3,'txt'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (19,3,'c'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (20,3,'h'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (21,3,'cpp'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (22,3,'hpp'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (23,3,'diz'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (24,3,'csv'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (25,3,'ini'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (26,3,'log'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (27,3,'js'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (28,3,'xml'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (29,4,'xls'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (30,4,'xlsx'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (31,4,'xlsm'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (32,4,'xlsb'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (33,4,'doc'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (34,4,'docx'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (35,4,'docm'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (36,4,'dot'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (37,4,'dotx'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (38,4,'dotm'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (39,4,'pdf'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (40,4,'ai'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (41,4,'ps'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (42,4,'ppt'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (43,4,'pptx'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (44,4,'pptm'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (45,4,'odg'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (46,4,'odp'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (47,4,'ods'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (48,4,'odt'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (49,4,'rtf'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (50,5,'rm'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (51,5,'ram'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (52,6,'wma'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (53,6,'wmv'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (54,7,'swf'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (55,8,'mov'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (56,8,'m4v'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (57,8,'m4a'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (58,8,'mp4'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (59,8,'3gp'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (60,8,'3g2'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (61,8,'qt'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (62,9,'mpeg'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (63,9,'mpg'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (64,9,'mp3'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (65,9,'ogg'); INSERT INTO phpbb_extensions (extension_id, group_id, extension) VALUES (66,9,'ogm'); INSERT INTO phpbb_forums (forum_id, parent_id, left_id, right_id, forum_parents, forum_name, forum_desc, forum_desc_bitfield, forum_desc_options, forum_desc_uid, forum_link, forum_password, forum_style, forum_image, forum_rules, forum_rules_link, forum_rules_bitfield, forum_rules_options, forum_rules_uid, forum_topics_per_page, forum_type, forum_status, forum_posts, forum_topics, forum_topics_real, forum_last_post_id, forum_last_poster_id, forum_last_post_subject, forum_last_post_time, forum_last_poster_name, forum_last_poster_colour, forum_flags, forum_options, display_subforum_list, display_on_index, enable_indexing, enable_icons, enable_prune, prune_next, prune_days, prune_viewed, prune_freq) VALUES (1,0,1,4,'','Example Category','','',7,'','','',0,'','','','',7,'',0,0,0,1,1,1,1,2,'',972086460,'Admin','AA0000',32,0,1,1,1,1,0,0,0,0,0); INSERT INTO phpbb_forums (forum_id, parent_id, left_id, right_id, forum_parents, forum_name, forum_desc, forum_desc_bitfield, forum_desc_options, forum_desc_uid, forum_link, forum_password, forum_style, forum_image, forum_rules, forum_rules_link, forum_rules_bitfield, forum_rules_options, forum_rules_uid, forum_topics_per_page, forum_type, forum_status, forum_posts, forum_topics, forum_topics_real, forum_last_post_id, forum_last_poster_id, forum_last_post_subject, forum_last_post_time, forum_last_poster_name, forum_last_poster_colour, forum_flags, forum_options, display_subforum_list, display_on_index, enable_indexing, enable_icons, enable_prune, prune_next, prune_days, prune_viewed, prune_freq) VALUES (2,1,2,3,'','Example Forum','This forum serves as an example','',7,'','','',0,'','','','',7,'',0,1,0,1,1,1,1,2,'Test Topic',972086460,'Admin','AA0000',32,0,1,1,1,1,0,0,0,0,0); INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (1,3,0,0,'GUESTS','','',7,'',0,'',0,0,0,0,'',0,0,0,5,0); INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (2,3,0,0,'REGISTERED','','',7,'',0,'',0,0,0,0,'',0,0,0,5,0); INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (3,3,0,0,'REGISTERED_COPPA','','',7,'',0,'',0,0,0,0,'',0,0,0,5,0); INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (4,3,0,0,'GLOBAL_MODERATORS','','',7,'',0,'',0,0,0,0,'00AA00',0,0,0,0,1); INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (5,3,1,0,'ADMINISTRATORS','','',7,'',0,'',0,0,0,0,'AA0000',0,0,0,0,1); INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (6,3,0,0,'BOTS','','',7,'',0,'',0,0,0,0,'9E8DA7',0,0,0,5,0); INSERT INTO phpbb_groups (group_id, group_type, group_founder_manage, group_skip_auth, group_name, group_desc, group_desc_bitfield, group_desc_options, group_desc_uid, group_display, group_avatar, group_avatar_type, group_avatar_width, group_avatar_height, group_rank, group_colour, group_sig_chars, group_receive_pm, group_message_limit, group_max_recipients, group_legend) VALUES (7,3,0,0,'NEWLY_REGISTERED','','',7,'',0,'',0,0,0,0,'',0,0,0,5,0); INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (1,'misc/fire.gif',16,16,1,1); INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (2,'smile/redface.gif',16,16,9,1); INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (3,'smile/mrgreen.gif',16,16,10,1); INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (4,'misc/heart.gif',16,16,4,1); INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (5,'misc/star.gif',16,16,2,1); INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (6,'misc/radioactive.gif',16,16,3,1); INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (7,'misc/thinking.gif',16,16,5,1); INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (8,'smile/info.gif',16,16,8,1); INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (9,'smile/question.gif',16,16,6,1); INSERT INTO phpbb_icons (icons_id, icons_url, icons_width, icons_height, icons_order, display_on_posting) VALUES (10,'smile/alert.gif',16,16,7,1); INSERT INTO phpbb_lang (lang_id, lang_iso, lang_dir, lang_english_name, lang_local_name, lang_author) VALUES (1,'en','en','English [GB]','English [GB]','phpBB Group'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (1,1,1,'','acp',0,1,64,'ACP_CAT_GENERAL','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (2,1,1,'','acp',1,4,17,'ACP_QUICK_ACCESS','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (3,1,1,'','acp',1,18,41,'ACP_BOARD_CONFIGURATION','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (4,1,1,'','acp',1,42,49,'ACP_CLIENT_COMMUNICATION','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (5,1,1,'','acp',1,50,63,'ACP_SERVER_CONFIGURATION','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (6,1,1,'','acp',0,65,84,'ACP_CAT_FORUMS','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (7,1,1,'','acp',6,66,71,'ACP_MANAGE_FORUMS','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (8,1,1,'','acp',6,72,83,'ACP_FORUM_BASED_PERMISSIONS','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (9,1,1,'','acp',0,85,110,'ACP_CAT_POSTING','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (10,1,1,'','acp',9,86,99,'ACP_MESSAGES','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (11,1,1,'','acp',9,100,109,'ACP_ATTACHMENTS','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (12,1,1,'','acp',0,111,166,'ACP_CAT_USERGROUP','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (13,1,1,'','acp',12,112,145,'ACP_CAT_USERS','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (14,1,1,'','acp',12,146,153,'ACP_GROUPS','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (15,1,1,'','acp',12,154,165,'ACP_USER_SECURITY','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (16,1,1,'','acp',0,167,216,'ACP_CAT_PERMISSIONS','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (17,1,1,'','acp',16,170,179,'ACP_GLOBAL_PERMISSIONS','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (18,1,1,'','acp',16,180,191,'ACP_FORUM_BASED_PERMISSIONS','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (19,1,1,'','acp',16,192,201,'ACP_PERMISSION_ROLES','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (20,1,1,'','acp',16,202,215,'ACP_PERMISSION_MASKS','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (21,1,1,'','acp',0,217,230,'ACP_CAT_STYLES','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (22,1,1,'','acp',21,218,221,'ACP_STYLE_MANAGEMENT','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (23,1,1,'','acp',21,222,229,'ACP_STYLE_COMPONENTS','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (24,1,1,'','acp',0,231,250,'ACP_CAT_MAINTENANCE','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (25,1,1,'','acp',24,232,241,'ACP_FORUM_LOGS','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (26,1,1,'','acp',24,242,249,'ACP_CAT_DATABASE','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (27,1,1,'','acp',0,251,276,'ACP_CAT_SYSTEM','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (28,1,1,'','acp',27,252,255,'ACP_AUTOMATION','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (29,1,1,'','acp',27,256,267,'ACP_GENERAL_TASKS','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (30,1,1,'','acp',27,268,275,'ACP_MODULE_MANAGEMENT','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (31,1,1,'','acp',0,277,278,'ACP_CAT_DOT_MODS','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (32,1,1,'attachments','acp',3,19,20,'ACP_ATTACHMENT_SETTINGS','attach','acl_a_attach'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (33,1,1,'attachments','acp',11,101,102,'ACP_ATTACHMENT_SETTINGS','attach','acl_a_attach'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (34,1,1,'attachments','acp',11,103,104,'ACP_MANAGE_EXTENSIONS','extensions','acl_a_attach'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (35,1,1,'attachments','acp',11,105,106,'ACP_EXTENSION_GROUPS','ext_groups','acl_a_attach'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (36,1,1,'attachments','acp',11,107,108,'ACP_ORPHAN_ATTACHMENTS','orphan','acl_a_attach'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (37,1,1,'ban','acp',15,155,156,'ACP_BAN_EMAILS','email','acl_a_ban'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (38,1,1,'ban','acp',15,157,158,'ACP_BAN_IPS','ip','acl_a_ban'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (39,1,1,'ban','acp',15,159,160,'ACP_BAN_USERNAMES','user','acl_a_ban'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (40,1,1,'bbcodes','acp',10,87,88,'ACP_BBCODES','bbcodes','acl_a_bbcode'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (41,1,1,'board','acp',3,21,22,'ACP_BOARD_SETTINGS','settings','acl_a_board'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (42,1,1,'board','acp',3,23,24,'ACP_BOARD_FEATURES','features','acl_a_board'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (43,1,1,'board','acp',3,25,26,'ACP_AVATAR_SETTINGS','avatar','acl_a_board'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (44,1,1,'board','acp',3,27,28,'ACP_MESSAGE_SETTINGS','message','acl_a_board'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (45,1,1,'board','acp',10,89,90,'ACP_MESSAGE_SETTINGS','message','acl_a_board'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (46,1,1,'board','acp',3,29,30,'ACP_POST_SETTINGS','post','acl_a_board'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (47,1,1,'board','acp',3,31,32,'ACP_SIGNATURE_SETTINGS','signature','acl_a_board'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (48,1,1,'board','acp',3,33,34,'ACP_REGISTER_SETTINGS','registration','acl_a_board'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (49,1,1,'board','acp',4,43,44,'ACP_AUTH_SETTINGS','auth','acl_a_server'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (50,1,1,'board','acp',4,45,46,'ACP_EMAIL_SETTINGS','email','acl_a_server'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (51,1,1,'board','acp',5,51,52,'ACP_COOKIE_SETTINGS','cookie','acl_a_server'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (52,1,1,'board','acp',5,53,54,'ACP_SERVER_SETTINGS','server','acl_a_server'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (53,1,1,'board','acp',5,55,56,'ACP_SECURITY_SETTINGS','security','acl_a_server'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (54,1,1,'board','acp',5,57,58,'ACP_LOAD_SETTINGS','load','acl_a_server'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (55,1,1,'bots','acp',29,257,258,'ACP_BOTS','bots','acl_a_bots'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (56,1,1,'captcha','acp',3,35,36,'ACP_VC_SETTINGS','visual','acl_a_board'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (57,1,0,'captcha','acp',3,37,38,'ACP_VC_CAPTCHA_DISPLAY','img','acl_a_board'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (58,1,1,'database','acp',26,243,244,'ACP_BACKUP','backup','acl_a_backup'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (59,1,1,'database','acp',26,245,246,'ACP_RESTORE','restore','acl_a_backup'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (60,1,1,'disallow','acp',15,161,162,'ACP_DISALLOW_USERNAMES','usernames','acl_a_names'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (61,1,1,'email','acp',29,259,260,'ACP_MASS_EMAIL','email','acl_a_email && cfg_email_enable'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (62,1,1,'forums','acp',7,67,68,'ACP_MANAGE_FORUMS','manage','acl_a_forum'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (63,1,1,'groups','acp',14,147,148,'ACP_GROUPS_MANAGE','manage','acl_a_group'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (64,1,1,'icons','acp',10,93,94,'ACP_ICONS','icons','acl_a_icons'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (65,1,1,'icons','acp',10,95,96,'ACP_SMILIES','smilies','acl_a_icons'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (66,1,1,'inactive','acp',13,115,116,'ACP_INACTIVE_USERS','list','acl_a_user'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (67,1,1,'jabber','acp',4,47,48,'ACP_JABBER_SETTINGS','settings','acl_a_jabber'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (68,1,1,'language','acp',29,261,262,'ACP_LANGUAGE_PACKS','lang_packs','acl_a_language'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (69,1,1,'logs','acp',25,233,234,'ACP_ADMIN_LOGS','admin','acl_a_viewlogs'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (70,1,1,'logs','acp',25,235,236,'ACP_MOD_LOGS','mod','acl_a_viewlogs'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (71,1,1,'logs','acp',25,237,238,'ACP_USERS_LOGS','users','acl_a_viewlogs'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (72,1,1,'logs','acp',25,239,240,'ACP_CRITICAL_LOGS','critical','acl_a_viewlogs'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (73,1,1,'main','acp',1,2,3,'ACP_INDEX','main',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (74,1,1,'modules','acp',30,269,270,'ACP','acp','acl_a_modules'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (75,1,1,'modules','acp',30,271,272,'UCP','ucp','acl_a_modules'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (76,1,1,'modules','acp',30,273,274,'MCP','mcp','acl_a_modules'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (77,1,1,'permission_roles','acp',19,193,194,'ACP_ADMIN_ROLES','admin_roles','acl_a_roles && acl_a_aauth'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (78,1,1,'permission_roles','acp',19,195,196,'ACP_USER_ROLES','user_roles','acl_a_roles && acl_a_uauth'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (79,1,1,'permission_roles','acp',19,197,198,'ACP_MOD_ROLES','mod_roles','acl_a_roles && acl_a_mauth'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (80,1,1,'permission_roles','acp',19,199,200,'ACP_FORUM_ROLES','forum_roles','acl_a_roles && acl_a_fauth'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (81,1,1,'permissions','acp',16,168,169,'ACP_PERMISSIONS','intro','acl_a_authusers || acl_a_authgroups || acl_a_viewauth'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (82,1,0,'permissions','acp',20,203,204,'ACP_PERMISSION_TRACE','trace','acl_a_viewauth'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (83,1,1,'permissions','acp',18,181,182,'ACP_FORUM_PERMISSIONS','setting_forum_local','acl_a_fauth && (acl_a_authusers || acl_a_authgroups)'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (84,1,1,'permissions','acp',18,183,184,'ACP_FORUM_MODERATORS','setting_mod_local','acl_a_mauth && (acl_a_authusers || acl_a_authgroups)'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (85,1,1,'permissions','acp',17,171,172,'ACP_USERS_PERMISSIONS','setting_user_global','acl_a_authusers && (acl_a_aauth || acl_a_mauth || acl_a_uauth)'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (86,1,1,'permissions','acp',13,117,118,'ACP_USERS_PERMISSIONS','setting_user_global','acl_a_authusers && (acl_a_aauth || acl_a_mauth || acl_a_uauth)'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (87,1,1,'permissions','acp',18,185,186,'ACP_USERS_FORUM_PERMISSIONS','setting_user_local','acl_a_authusers && (acl_a_mauth || acl_a_fauth)'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (88,1,1,'permissions','acp',13,119,120,'ACP_USERS_FORUM_PERMISSIONS','setting_user_local','acl_a_authusers && (acl_a_mauth || acl_a_fauth)'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (89,1,1,'permissions','acp',17,173,174,'ACP_GROUPS_PERMISSIONS','setting_group_global','acl_a_authgroups && (acl_a_aauth || acl_a_mauth || acl_a_uauth)'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (90,1,1,'permissions','acp',14,149,150,'ACP_GROUPS_PERMISSIONS','setting_group_global','acl_a_authgroups && (acl_a_aauth || acl_a_mauth || acl_a_uauth)'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (91,1,1,'permissions','acp',18,187,188,'ACP_GROUPS_FORUM_PERMISSIONS','setting_group_local','acl_a_authgroups && (acl_a_mauth || acl_a_fauth)'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (92,1,1,'permissions','acp',14,151,152,'ACP_GROUPS_FORUM_PERMISSIONS','setting_group_local','acl_a_authgroups && (acl_a_mauth || acl_a_fauth)'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (93,1,1,'permissions','acp',17,175,176,'ACP_ADMINISTRATORS','setting_admin_global','acl_a_aauth && (acl_a_authusers || acl_a_authgroups)'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (94,1,1,'permissions','acp',17,177,178,'ACP_GLOBAL_MODERATORS','setting_mod_global','acl_a_mauth && (acl_a_authusers || acl_a_authgroups)'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (95,1,1,'permissions','acp',20,205,206,'ACP_VIEW_ADMIN_PERMISSIONS','view_admin_global','acl_a_viewauth'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (96,1,1,'permissions','acp',20,207,208,'ACP_VIEW_USER_PERMISSIONS','view_user_global','acl_a_viewauth'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (97,1,1,'permissions','acp',20,209,210,'ACP_VIEW_GLOBAL_MOD_PERMISSIONS','view_mod_global','acl_a_viewauth'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (98,1,1,'permissions','acp',20,211,212,'ACP_VIEW_FORUM_MOD_PERMISSIONS','view_mod_local','acl_a_viewauth'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (99,1,1,'permissions','acp',20,213,214,'ACP_VIEW_FORUM_PERMISSIONS','view_forum_local','acl_a_viewauth'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (100,1,1,'php_info','acp',29,263,264,'ACP_PHP_INFO','info','acl_a_phpinfo'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (101,1,1,'profile','acp',13,121,122,'ACP_CUSTOM_PROFILE_FIELDS','profile','acl_a_profile'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (102,1,1,'prune','acp',7,69,70,'ACP_PRUNE_FORUMS','forums','acl_a_prune'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (103,1,1,'prune','acp',15,163,164,'ACP_PRUNE_USERS','users','acl_a_userdel'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (104,1,1,'ranks','acp',13,123,124,'ACP_MANAGE_RANKS','ranks','acl_a_ranks'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (105,1,1,'reasons','acp',29,265,266,'ACP_MANAGE_REASONS','main','acl_a_reasons'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (106,1,1,'search','acp',5,59,60,'ACP_SEARCH_SETTINGS','settings','acl_a_search'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (107,1,1,'search','acp',26,247,248,'ACP_SEARCH_INDEX','index','acl_a_search'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (108,1,1,'styles','acp',22,219,220,'ACP_STYLES','style','acl_a_styles'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (109,1,1,'styles','acp',23,223,224,'ACP_TEMPLATES','template','acl_a_styles'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (110,1,1,'styles','acp',23,225,226,'ACP_THEMES','theme','acl_a_styles'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (111,1,1,'styles','acp',23,227,228,'ACP_IMAGESETS','imageset','acl_a_styles'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (112,1,1,'update','acp',28,253,254,'ACP_VERSION_CHECK','version_check','acl_a_board'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (113,1,1,'users','acp',13,113,114,'ACP_MANAGE_USERS','overview','acl_a_user'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (114,1,0,'users','acp',13,125,126,'ACP_USER_FEEDBACK','feedback','acl_a_user'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (115,1,0,'users','acp',13,127,128,'ACP_USER_PROFILE','profile','acl_a_user'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (116,1,0,'users','acp',13,129,130,'ACP_USER_PREFS','prefs','acl_a_user'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (117,1,0,'users','acp',13,131,132,'ACP_USER_AVATAR','avatar','acl_a_user'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (118,1,0,'users','acp',13,133,134,'ACP_USER_RANK','rank','acl_a_user'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (119,1,0,'users','acp',13,135,136,'ACP_USER_SIG','sig','acl_a_user'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (120,1,0,'users','acp',13,137,138,'ACP_USER_GROUPS','groups','acl_a_user && acl_a_group'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (121,1,0,'users','acp',13,139,140,'ACP_USER_PERM','perm','acl_a_user && acl_a_viewauth'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (122,1,0,'users','acp',13,141,142,'ACP_USER_ATTACH','attach','acl_a_user'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (123,1,1,'words','acp',10,97,98,'ACP_WORDS','words','acl_a_words'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (124,1,1,'users','acp',2,5,6,'ACP_MANAGE_USERS','overview','acl_a_user'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (125,1,1,'groups','acp',2,7,8,'ACP_GROUPS_MANAGE','manage','acl_a_group'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (126,1,1,'forums','acp',2,9,10,'ACP_MANAGE_FORUMS','manage','acl_a_forum'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (127,1,1,'logs','acp',2,11,12,'ACP_MOD_LOGS','mod','acl_a_viewlogs'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (128,1,1,'bots','acp',2,13,14,'ACP_BOTS','bots','acl_a_bots'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (129,1,1,'php_info','acp',2,15,16,'ACP_PHP_INFO','info','acl_a_phpinfo'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (130,1,1,'permissions','acp',8,73,74,'ACP_FORUM_PERMISSIONS','setting_forum_local','acl_a_fauth && (acl_a_authusers || acl_a_authgroups)'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (131,1,1,'permissions','acp',8,75,76,'ACP_FORUM_MODERATORS','setting_mod_local','acl_a_mauth && (acl_a_authusers || acl_a_authgroups)'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (132,1,1,'permissions','acp',8,77,78,'ACP_USERS_FORUM_PERMISSIONS','setting_user_local','acl_a_authusers && (acl_a_mauth || acl_a_fauth)'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (133,1,1,'permissions','acp',8,79,80,'ACP_GROUPS_FORUM_PERMISSIONS','setting_group_local','acl_a_authgroups && (acl_a_mauth || acl_a_fauth)'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (134,1,1,'','mcp',0,1,10,'MCP_MAIN','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (135,1,1,'','mcp',0,11,18,'MCP_QUEUE','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (136,1,1,'','mcp',0,19,32,'MCP_REPORTS','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (137,1,1,'','mcp',0,33,38,'MCP_NOTES','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (138,1,1,'','mcp',0,39,48,'MCP_WARN','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (139,1,1,'','mcp',0,49,56,'MCP_LOGS','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (140,1,1,'','mcp',0,57,64,'MCP_BAN','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (141,1,1,'ban','mcp',140,58,59,'MCP_BAN_USERNAMES','user','acl_m_ban'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (142,1,1,'ban','mcp',140,60,61,'MCP_BAN_IPS','ip','acl_m_ban'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (143,1,1,'ban','mcp',140,62,63,'MCP_BAN_EMAILS','email','acl_m_ban'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (144,1,1,'logs','mcp',139,50,51,'MCP_LOGS_FRONT','front','acl_m_ || aclf_m_'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (145,1,1,'logs','mcp',139,52,53,'MCP_LOGS_FORUM_VIEW','forum_logs','acl_m_,$id'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (146,1,1,'logs','mcp',139,54,55,'MCP_LOGS_TOPIC_VIEW','topic_logs','acl_m_,$id'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (147,1,1,'main','mcp',134,2,3,'MCP_MAIN_FRONT','front',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (148,1,1,'main','mcp',134,4,5,'MCP_MAIN_FORUM_VIEW','forum_view','acl_m_,$id'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (149,1,1,'main','mcp',134,6,7,'MCP_MAIN_TOPIC_VIEW','topic_view','acl_m_,$id'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (150,1,1,'main','mcp',134,8,9,'MCP_MAIN_POST_DETAILS','post_details','acl_m_,$id || (!$id && aclf_m_)'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (151,1,1,'notes','mcp',137,34,35,'MCP_NOTES_FRONT','front',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (152,1,1,'notes','mcp',137,36,37,'MCP_NOTES_USER','user_notes',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (153,1,1,'queue','mcp',135,12,13,'MCP_QUEUE_UNAPPROVED_TOPICS','unapproved_topics','aclf_m_approve'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (154,1,1,'queue','mcp',135,14,15,'MCP_QUEUE_UNAPPROVED_POSTS','unapproved_posts','aclf_m_approve'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (155,1,1,'queue','mcp',135,16,17,'MCP_QUEUE_APPROVE_DETAILS','approve_details','acl_m_approve,$id || (!$id && aclf_m_approve)'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (156,1,1,'reports','mcp',136,20,21,'MCP_REPORTS_OPEN','reports','aclf_m_report'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (157,1,1,'reports','mcp',136,22,23,'MCP_REPORTS_CLOSED','reports_closed','aclf_m_report'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (158,1,1,'reports','mcp',136,24,25,'MCP_REPORT_DETAILS','report_details','acl_m_report,$id || (!$id && aclf_m_report)'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (159,1,1,'warn','mcp',138,40,41,'MCP_WARN_FRONT','front','aclf_m_warn'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (160,1,1,'warn','mcp',138,42,43,'MCP_WARN_LIST','list','aclf_m_warn'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (161,1,1,'warn','mcp',138,44,45,'MCP_WARN_USER','warn_user','aclf_m_warn'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (162,1,1,'warn','mcp',138,46,47,'MCP_WARN_POST','warn_post','acl_m_warn,$id || (!$id && aclf_m_warn)'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (163,1,1,'','ucp',0,1,12,'UCP_MAIN','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (164,1,1,'','ucp',0,13,22,'UCP_PROFILE','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (165,1,1,'','ucp',0,23,30,'UCP_PREFS','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (166,1,1,'','ucp',0,31,42,'UCP_PM','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (167,1,1,'','ucp',0,43,48,'UCP_USERGROUPS','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (168,1,1,'','ucp',0,49,54,'UCP_ZEBRA','',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (169,1,1,'attachments','ucp',163,10,11,'UCP_MAIN_ATTACHMENTS','attachments','acl_u_attach'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (170,1,1,'groups','ucp',167,44,45,'UCP_USERGROUPS_MEMBER','membership',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (171,1,1,'groups','ucp',167,46,47,'UCP_USERGROUPS_MANAGE','manage',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (172,1,1,'main','ucp',163,2,3,'UCP_MAIN_FRONT','front',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (173,1,1,'main','ucp',163,4,5,'UCP_MAIN_SUBSCRIBED','subscribed',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (174,1,1,'main','ucp',163,6,7,'UCP_MAIN_BOOKMARKS','bookmarks','cfg_allow_bookmarks'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (175,1,1,'main','ucp',163,8,9,'UCP_MAIN_DRAFTS','drafts',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (176,1,0,'pm','ucp',166,32,33,'UCP_PM_VIEW','view','cfg_allow_privmsg'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (177,1,1,'pm','ucp',166,34,35,'UCP_PM_COMPOSE','compose','cfg_allow_privmsg'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (178,1,1,'pm','ucp',166,36,37,'UCP_PM_DRAFTS','drafts','cfg_allow_privmsg'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (179,1,1,'pm','ucp',166,38,39,'UCP_PM_OPTIONS','options','cfg_allow_privmsg'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (180,1,0,'pm','ucp',166,40,41,'UCP_PM_POPUP_TITLE','popup','cfg_allow_privmsg'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (181,1,1,'prefs','ucp',165,24,25,'UCP_PREFS_PERSONAL','personal',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (182,1,1,'prefs','ucp',165,26,27,'UCP_PREFS_POST','post',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (183,1,1,'prefs','ucp',165,28,29,'UCP_PREFS_VIEW','view',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (184,1,1,'profile','ucp',164,14,15,'UCP_PROFILE_PROFILE_INFO','profile_info',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (185,1,1,'profile','ucp',164,16,17,'UCP_PROFILE_SIGNATURE','signature','acl_u_sig'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (186,1,1,'profile','ucp',164,18,19,'UCP_PROFILE_AVATAR','avatar','cfg_allow_avatar && (cfg_allow_avatar_local || cfg_allow_avatar_remote || cfg_allow_avatar_upload || cfg_allow_avatar_remote_upload)'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (187,1,1,'profile','ucp',164,20,21,'UCP_PROFILE_REG_DETAILS','reg_details',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (188,1,1,'zebra','ucp',168,50,51,'UCP_ZEBRA_FRIENDS','friends',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (189,1,1,'zebra','ucp',168,52,53,'UCP_ZEBRA_FOES','foes',''); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (190,1,1,'board','acp',3,39,40,'ACP_FEED_SETTINGS','feed','acl_a_board'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (191,1,0,'users','acp',13,143,144,'ACP_USER_WARNINGS','warnings','acl_a_user'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (192,1,1,'send_statistics','acp',5,61,62,'ACP_SEND_STATISTICS','send_statistics','acl_a_server'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (193,1,1,'permissions','acp',8,81,82,'ACP_FORUM_PERMISSIONS_COPY','setting_forum_copy','acl_a_fauth && acl_a_authusers && acl_a_authgroups && acl_a_mauth'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (194,1,1,'permissions','acp',18,189,190,'ACP_FORUM_PERMISSIONS_COPY','setting_forum_copy','acl_a_fauth && acl_a_authusers && acl_a_authgroups && acl_a_mauth'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (195,1,1,'pm_reports','mcp',136,26,27,'MCP_PM_REPORTS_OPEN','pm_reports','aclf_m_report'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (196,1,1,'pm_reports','mcp',136,28,29,'MCP_PM_REPORTS_CLOSED','pm_reports_closed','aclf_m_report'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (197,1,1,'pm_reports','mcp',136,30,31,'MCP_PM_REPORT_DETAILS','pm_report_details','aclf_m_report'); INSERT INTO phpbb_modules (module_id, module_enabled, module_display, module_basename, module_class, parent_id, left_id, right_id, module_langname, module_mode, module_auth) VALUES (198,1,1,'board','acp',10,91,92,'ACP_POST_SETTINGS','post','acl_a_board'); INSERT INTO phpbb_posts (post_id, topic_id, forum_id, poster_id, icon_id, poster_ip, post_time, post_approved, post_reported, enable_bbcode, enable_smilies, enable_magic_url, enable_sig, post_username, post_subject, post_text, post_checksum, post_attachment, bbcode_bitfield, bbcode_uid, post_postcount, post_edit_time, post_edit_reason, post_edit_user, post_edit_count, post_edit_locked) VALUES (1,1,2,2,0,'127.0.0.1',972086460,1,0,1,1,1,1,'','Test Toptic','First Post!','5dd683b17f641daf84c040bfefc58ce9',0,'','',1,0,'',0,0,0); INSERT INTO phpbb_ranks (rank_id, rank_title, rank_min, rank_special, rank_image) VALUES (1,'Site Admin',0,1,''); INSERT INTO phpbb_reports_reasons (reason_id, reason_title, reason_description, reason_order) VALUES (1,'warez','{L_REPORT_WAREZ}',1); INSERT INTO phpbb_reports_reasons (reason_id, reason_title, reason_description, reason_order) VALUES (2,'spam','{L_REPORT_SPAM}',2); INSERT INTO phpbb_reports_reasons (reason_id, reason_title, reason_description, reason_order) VALUES (3,'off_topic','{L_REPORT_OFF_TOPIC}',3); INSERT INTO phpbb_reports_reasons (reason_id, reason_title, reason_description, reason_order) VALUES (4,'other','{L_REPORT_OTHER}',4); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (1,':D',':-D','icon_e_biggrin.gif',15,17,1,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (2,':-D',':-D','icon_e_biggrin.gif',15,17,2,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (3,':grin:',':-D','icon_e_biggrin.gif',15,17,3,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (4,':)',':-)','icon_e_smile.gif',15,17,4,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (5,':-)',':-)','icon_e_smile.gif',15,17,5,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (6,':smile:',':-)','icon_e_smile.gif',15,17,6,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (7,';)',';-)','icon_e_wink.gif',15,17,7,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (8,';-)',';-)','icon_e_wink.gif',15,17,8,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (9,':wink:',';-)','icon_e_wink.gif',15,17,9,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (10,':(',':-(','icon_e_sad.gif',15,17,10,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (11,':-(',':-(','icon_e_sad.gif',15,17,11,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (12,':sad:',':-(','icon_e_sad.gif',15,17,12,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (13,':o',':-O','icon_e_surprised.gif',15,19,13,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (14,':-o',':-O','icon_e_surprised.gif',15,19,14,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (15,':eek:',':-O','icon_e_surprised.gif',15,19,15,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (16,':shock:',':-O','icon_eek.gif',15,15,16,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (17,':?',':-/','icon_e_confused.gif',15,17,17,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (18,':-?',':-/','icon_e_confused.gif',15,17,18,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (19,':???:',':-/','icon_e_confused.gif',15,17,19,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (20,'8-)','8-)','icon_cool.gif',15,15,20,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (21,':cool:','8-)','icon_cool.gif',15,15,21,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (22,':lol:',':-D','icon_lol.gif',15,15,22,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (23,':x','>:-(','icon_mad.gif',15,15,23,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (24,':-x','>:-(','icon_mad.gif',15,15,24,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (25,':mad:','>:-(','icon_mad.gif',15,15,25,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (26,':P',':-P','icon_razz.gif',15,15,26,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (27,':-P',':-P','icon_razz.gif',15,15,27,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (28,':razz:',':-P','icon_razz.gif',15,15,28,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (29,':oops:',':-|','icon_redface.gif',15,15,29,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (30,':cry:',':~(','icon_cry.gif',15,15,30,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (31,':evil:','>:-)','icon_evil.gif',15,15,31,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (32,':twisted:','>:->','icon_twisted.gif',15,15,32,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (33,':roll:',':-/','icon_rolleyes.gif',15,15,33,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (34,':!:','!','icon_exclaim.gif',15,15,34,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (35,':?:','?','icon_question.gif',15,15,35,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (36,':idea:','(!)','icon_idea.gif',15,15,36,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (37,':arrow:','->','icon_arrow.gif',15,15,37,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (38,':|',':-|','icon_neutral.gif',15,15,38,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (39,':-|',':-|','icon_neutral.gif',15,15,39,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (40,':mrgreen:','8-D','icon_mrgreen.gif',15,15,40,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (41,':geek:','8-{','icon_e_geek.gif',17,17,41,1); INSERT INTO phpbb_smilies (smiley_id, code, emotion, smiley_url, smiley_width, smiley_height, smiley_order, display_on_posting) VALUES (42,':ugeek:','88-{','icon_e_ugeek.gif',19,18,42,1); INSERT INTO phpbb_styles (style_id, style_name, style_copyright, style_active, template_id, theme_id, imageset_id) VALUES (1,'prosilver','© phpBB Group',1,1,1,1); INSERT INTO phpbb_styles_imageset (imageset_id, imageset_name, imageset_copyright, imageset_path) VALUES (1,'prosilver','© phpBB Group','prosilver'); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (1,'site_logo','site_logo.gif','',52,139,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (2,'forum_link','forum_link.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (3,'forum_read','forum_read.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (4,'forum_read_locked','forum_read_locked.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (5,'forum_read_subforum','forum_read_subforum.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (6,'forum_unread','forum_unread.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (7,'forum_unread_locked','forum_unread_locked.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (8,'forum_unread_subforum','forum_unread_subforum.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (9,'topic_moved','topic_moved.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (10,'topic_read','topic_read.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (11,'topic_read_mine','topic_read_mine.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (12,'topic_read_hot','topic_read_hot.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (13,'topic_read_hot_mine','topic_read_hot_mine.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (14,'topic_read_locked','topic_read_locked.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (15,'topic_read_locked_mine','topic_read_locked_mine.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (16,'topic_unread','topic_unread.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (17,'topic_unread_mine','topic_unread_mine.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (18,'topic_unread_hot','topic_unread_hot.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (19,'topic_unread_hot_mine','topic_unread_hot_mine.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (20,'topic_unread_locked','topic_unread_locked.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (21,'topic_unread_locked_mine','topic_unread_locked_mine.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (22,'sticky_read','sticky_read.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (23,'sticky_read_mine','sticky_read_mine.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (24,'sticky_read_locked','sticky_read_locked.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (25,'sticky_read_locked_mine','sticky_read_locked_mine.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (26,'sticky_unread','sticky_unread.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (27,'sticky_unread_mine','sticky_unread_mine.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (28,'sticky_unread_locked','sticky_unread_locked.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (29,'sticky_unread_locked_mine','sticky_unread_locked_mine.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (30,'announce_read','announce_read.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (31,'announce_read_mine','announce_read_mine.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (32,'announce_read_locked','announce_read_locked.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (33,'announce_read_locked_mine','announce_read_locked_mine.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (34,'announce_unread','announce_unread.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (35,'announce_unread_mine','announce_unread_mine.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (36,'announce_unread_locked','announce_unread_locked.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (37,'announce_unread_locked_mine','announce_unread_locked_mine.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (38,'global_read','announce_read.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (39,'global_read_mine','announce_read_mine.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (40,'global_read_locked','announce_read_locked.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (41,'global_read_locked_mine','announce_read_locked_mine.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (42,'global_unread','announce_unread.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (43,'global_unread_mine','announce_unread_mine.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (44,'global_unread_locked','announce_unread_locked.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (45,'global_unread_locked_mine','announce_unread_locked_mine.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (46,'pm_read','topic_read.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (47,'pm_unread','topic_unread.gif','',27,27,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (48,'icon_back_top','icon_back_top.gif','',11,11,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (49,'icon_contact_aim','icon_contact_aim.gif','',20,20,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (50,'icon_contact_email','icon_contact_email.gif','',20,20,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (51,'icon_contact_icq','icon_contact_icq.gif','',20,20,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (52,'icon_contact_jabber','icon_contact_jabber.gif','',20,20,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (53,'icon_contact_msnm','icon_contact_msnm.gif','',20,20,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (54,'icon_contact_www','icon_contact_www.gif','',20,20,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (55,'icon_contact_yahoo','icon_contact_yahoo.gif','',20,20,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (56,'icon_post_delete','icon_post_delete.gif','',20,20,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (57,'icon_post_info','icon_post_info.gif','',20,20,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (58,'icon_post_report','icon_post_report.gif','',20,20,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (59,'icon_post_target','icon_post_target.gif','',9,11,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (60,'icon_post_target_unread','icon_post_target_unread.gif','',9,11,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (61,'icon_topic_attach','icon_topic_attach.gif','',10,7,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (62,'icon_topic_latest','icon_topic_latest.gif','',9,11,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (63,'icon_topic_newest','icon_topic_newest.gif','',9,11,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (64,'icon_topic_reported','icon_topic_reported.gif','',14,16,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (65,'icon_topic_unapproved','icon_topic_unapproved.gif','',14,16,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (66,'icon_user_warn','icon_user_warn.gif','',20,20,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (67,'subforum_read','subforum_read.gif','',9,11,1); INSERT INTO phpbb_styles_imageset_data (image_id, image_name, image_filename, image_lang, image_height, image_width, imageset_id) VALUES (68,'subforum_unread','subforum_unread.gif','',9,11,1); INSERT INTO phpbb_styles_template (template_id, template_name, template_copyright, template_path, bbcode_bitfield, template_storedb, template_inherits_id, template_inherit_path) VALUES (1,'prosilver','© phpBB Group','prosilver','lNg=',0,0,''); INSERT INTO phpbb_styles_theme (theme_id, theme_name, theme_copyright, theme_path, theme_storedb, theme_mtime, theme_data) VALUES (1,'prosilver','© phpBB Group','prosilver',1,0,''); INSERT INTO phpbb_topics (topic_id, forum_id, icon_id, topic_attachment, topic_approved, topic_reported, topic_title, topic_poster, topic_time, topic_time_limit, topic_views, topic_replies, topic_replies_real, topic_status, topic_type, topic_first_post_id, topic_first_poster_name, topic_first_poster_colour, topic_last_post_id, topic_last_poster_id, topic_last_poster_name, topic_last_poster_colour, topic_last_post_subject, topic_last_post_time, topic_last_view_time, topic_moved_id, topic_bumped, topic_bumper, poll_title, poll_start, poll_length, poll_max_options, poll_last_vote, poll_vote_change) VALUES (1,2,0,0,1,0,'Test Topic',2,972086460,0,0,0,0,0,0,1,'Admin','AA0000',1,2,'Admin','AA0000','Test Topic',972086460,972086460,0,0,0,'',0,0,1,0,0); INSERT INTO phpbb_topics_posted (user_id, topic_id, topic_posted) VALUES (2,1,1); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (1,1,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (2,2,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (4,2,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (5,2,1,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,3,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,4,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,5,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,6,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,7,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,8,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,9,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,10,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,11,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,12,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,13,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,14,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,15,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,16,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,17,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,18,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,19,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,20,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,21,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,22,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,23,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,24,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,25,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,26,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,28,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,31,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,32,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,34,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,35,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,36,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,37,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,38,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,39,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,41,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,42,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,43,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,44,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,45,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,46,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,48,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,49,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,50,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,51,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,52,0,0); INSERT INTO phpbb_user_group (group_id, user_id, group_leader, user_pending) VALUES (6,53,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (1,2,1,'',0,'',1170765411,'Anonymous','anonymous','',0,0,'',0,'',0,0,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'d M Y H:i a',1,0,'',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,1,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (2,3,5,'',0,'',1170765411,'admin','admin','',0,0,'',0,'',0,0,0,'','',0,0,0,0,0,0,1,'en',0.00,0,'d M Y H:i a',1,1,'AA0000',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,1,1,1,1,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (3,2,6,'',0,'',1170765411,'AdsBot [Google]','adsbot [google]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (4,2,6,'',0,'',1170765411,'Alexa [Bot]','alexa [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (5,2,6,'',0,'',1170765411,'Alta Vista [Bot]','alta vista [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (6,2,6,'',0,'',1170765411,'Ask Jeeves [Bot]','ask jeeves [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (7,2,6,'',0,'',1170765411,'Baidu [Spider]','baidu [spider]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (8,2,6,'',0,'',1170765411,'Exabot [Bot]','exabot [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (9,2,6,'',0,'',1170765411,'FAST Enterprise [Crawler]','fast enterprise [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (10,2,6,'',0,'',1170765411,'FAST WebCrawler [Crawler]','fast webcrawler [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (11,2,6,'',0,'',1170765411,'Francis [Bot]','francis [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (12,2,6,'',0,'',1170765411,'Gigabot [Bot]','gigabot [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (13,2,6,'',0,'',1170765411,'Google Adsense [Bot]','google adsense [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (14,2,6,'',0,'',1170765411,'Google Desktop','google desktop','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (15,2,6,'',0,'',1170765411,'Google Feedfetcher','google feedfetcher','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (16,2,6,'',0,'',1170765411,'Google [Bot]','google [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (17,2,6,'',0,'',1170765411,'Heise IT-Markt [Crawler]','heise it-markt [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (18,2,6,'',0,'',1170765411,'Heritrix [Crawler]','heritrix [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (19,2,6,'',0,'',1170765411,'IBM Research [Bot]','ibm research [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (20,2,6,'',0,'',1170765411,'ICCrawler - ICjobs','iccrawler - icjobs','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (21,2,6,'',0,'',1170765411,'ichiro [Crawler]','ichiro [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (22,2,6,'',0,'',1170765411,'Majestic-12 [Bot]','majestic-12 [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (23,2,6,'',0,'',1170765411,'Metager [Bot]','metager [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (24,2,6,'',0,'',1170765411,'MSN NewsBlogs','msn newsblogs','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (25,2,6,'',0,'',1170765411,'MSN [Bot]','msn [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (26,2,6,'',0,'',1170765411,'MSNbot Media','msnbot media','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (28,2,6,'',0,'',1170765411,'Nutch [Bot]','nutch [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (31,2,6,'',0,'',1170765411,'Online link [Validator]','online link [validator]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (32,2,6,'',0,'',1170765411,'psbot [Picsearch]','psbot [picsearch]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (34,2,6,'',0,'',1170765411,'Sensis [Crawler]','sensis [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (35,2,6,'',0,'',1170765411,'SEO Crawler','seo crawler','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (36,2,6,'',0,'',1170765411,'Seoma [Crawler]','seoma [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (37,2,6,'',0,'',1170765411,'SEOSearch [Crawler]','seosearch [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (38,2,6,'',0,'',1170765411,'Snappy [Bot]','snappy [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (39,2,6,'',0,'',1170765411,'Steeler [Crawler]','steeler [crawler]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (41,2,6,'',0,'',1170765411,'Telekom [Bot]','telekom [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (42,2,6,'',0,'',1170765411,'TurnitinBot [Bot]','turnitinbot [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (43,2,6,'',0,'',1170765411,'Voyager [Bot]','voyager [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (44,2,6,'',0,'',1170765411,'W3 [Sitesearch]','w3 [sitesearch]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (45,2,6,'',0,'',1170765411,'W3C [Linkcheck]','w3c [linkcheck]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (46,2,6,'',0,'',1170765411,'W3C [Validator]','w3c [validator]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (48,2,6,'',0,'',1170765411,'Yacy [Bot]','yacy [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (49,2,6,'',0,'',1170765411,'Yahoo MMCrawler [Bot]','yahoo mmcrawler [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (50,2,6,'',0,'',1170765411,'Yahoo Slurp [Bot]','yahoo slurp [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (51,2,6,'',0,'',1170765411,'Yahoo [Bot]','yahoo [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (52,2,6,'',0,'',1170765411,'YahooSeeker [Bot]','yahooseeker [bot]','',1170765411,0,'',0,'',0,1170765411,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','',0,0,0); INSERT INTO phpbb_users (user_id, user_type, group_id, user_permissions, user_perm_from, user_ip, user_regdate, username, username_clean, user_password, user_passchg, user_pass_convert, user_email, user_email_hash, user_birthday, user_lastvisit, user_lastmark, user_lastpost_time, user_lastpage, user_last_confirm_key, user_last_search, user_warnings, user_last_warning, user_login_attempts, user_inactive_reason, user_inactive_time, user_posts, user_lang, user_timezone, user_dst, user_dateformat, user_style, user_rank, user_colour, user_new_privmsg, user_unread_privmsg, user_last_privmsg, user_message_rules, user_full_folder, user_emailtime, user_topic_show_days, user_topic_sortby_type, user_topic_sortby_dir, user_post_show_days, user_post_sortby_type, user_post_sortby_dir, user_notify, user_notify_pm, user_notify_type, user_allow_pm, user_allow_viewonline, user_allow_viewemail, user_allow_massemail, user_options, user_avatar, user_avatar_type, user_avatar_width, user_avatar_height, user_sig, user_sig_bbcode_uid, user_sig_bbcode_bitfield, user_from, user_icq, user_aim, user_yim, user_msnm, user_jabber, user_website, user_occ, user_interests, user_actkey, user_newpasswd, user_form_salt, user_new, user_reminded, user_reminded_time) VALUES (53,2,6,'',0,'',1321022106,'Bing [Bot]','bing [bot]','',1321022106,0,'',0,'',0,1321022106,0,'','',0,0,0,0,0,0,0,'en',0.00,0,'D M d, Y g:i a',1,0,'9E8DA7',0,0,0,0,-3,0,0,'t','d',0,'t','a',0,1,0,0,1,1,0,230271,'',0,0,0,'','','','','','','','','','','','','','','e528469e2ef47bee',0,0,0); debian/dbapps-lib0000644000000000000000000000547612033640611011136 0ustar # some library functions for phpbb3 maintainer scripts # copyright 2010 J.M. Roth run_sql () { if [ -f /etc/dbconfig-common/phpbb3.conf ] ; then . /etc/dbconfig-common/phpbb3.conf else echo "$0 $@: run_sql: cannot load db metadata" 1>&2 return 1 fi local sql="$1" ERR= case $dbc_dbtype in mysql ) l_dbc_dbserver=${dbc_dbserver:- localhost} echo $sql | mysql -h ${l_dbc_dbserver} ${dbc_dbport:+--port $dbc_dbport} -u $dbc_dbuser -p$dbc_dbpass $dbc_dbname -s || run_sql_fail $dbc_dbtype ;; pgsql ) if [ -z "${dbc_dbserver}" ]; then echo $sql | su - postgres -c "psql ${dbc_dbport:+-p $dbc_dbport} -d \"dbname=$dbc_dbname ${dbc_ssl:+sslmode=require}\" -q" || run_sql_fail $dbc_dbtype else echo $sql | psql -h $dbc_dbserver ${dbc_dbport:+-p $dbc_dbport} -d \"dbname=$dbc_dbname ${dbc_ssl:+sslmode=require}\" -q || run_sql_fail $dbc_dbtype fi ;; sqlite ) echo $sql | sqlite $dbc_basepath/$dbc_dbname || run_sql_fail $dbc_dbtype ;; * ) echo "run_sql: $dbc_dbtype not supported" >&2 ;; esac return 0 } run_sql_fail () { echo "run_sql $@ fail" >&2 ERR=fail } postgres_update_seqs () { # repair pgsql sequences, this has always been a source of trouble # on prepopulated DBs if db_get phpbb3/dbconfig-install && [ "$RET" = "true" ] ; then db_get phpbb3/database-type if [ "$RET" = "pgsql" ]; then db_get phpbb3/db/dbname local dbname="$RET" db_get phpbb3/remote/host local dbhost="$RET" db_get phpbb3/remote/port local dbport="$RET" if [ -z "${dbc_dbserver}" ]; then /usr/share/phpbb3/postgres_update_seqs.sh /usr/share/dbconfig-common/data/phpbb3/install/pgsql | su - postgres -c "psql ${dbhost:+-h $dbhost} ${dbport:+-p $dbport} -d $dbname -q >/dev/null" else /usr/share/phpbb3/postgres_update_seqs.sh /usr/share/dbconfig-common/data/phpbb3/install/pgsql | psql ${dbhost:+-h $dbhost} ${dbport:+-p $dbport} -d $dbname -q >/dev/null fi fi fi } _md5 () { echo -n $1 | md5sum | cut -c-32 } dc_true () { db_get $1 [ "$RET" = "true" ] return $? } dc_forget () { db_reset $1 db_fset $1 seen false } dc_get () { db_get $1 echo -n $RET } dc_copy () { db_set $2 "$(dc_get $1)" } dc_out () { db_get $1 echo $1: $RET # -- "$(debconf-show phpbb3 | grep $1)" } dc_dbg () { [ "$PB3DEBUG" != "maint" ] && return set +e echo $0:$LINENO $@ for d in install upgrade reinstall remove; do db_get phpbb3/dbconfig-$d && echo [dbc] phpbb3/dbconfig-$d "$RET" done set -e } debian/README.multiboard0000644000000000000000000002163112221601104012177 0ustar Setting up multiple boards on one server ======================================== [for issues with multiboard see "Multiboard Issues" below] The phpbb3 package allows for easily setting up different boards on the same host (we also call that "multisite"). The advantage is that the boards share the same code base and upgrades of the package are instantly available to all boards. In this file we assume you're using the Apache web server, although this feature does not depend on the webserver used. Using multiple boards is not compatible with Debian's dbconfig-common, i.e. you will have to cope yourself with upgrading the databases of the additional boards that you create. To that end we provide upstream's install folder with a random suffix in /usr/share/phpbb3/www/, e.g. /usr/share/phpbb3/www/install-xi8hgDjmRX. You can use this installer to populate alternative databases. Just configure the board(s) as shown below and go to their install-XXX folder. The installer will complain that it cannot write to config.php, which is not important, since you need to have it configured beforehand anyway to get here. To add a second (or third, ...) board to your install, you need to take the following steps: - Create a new database and a new database user for your new board. - Copy /usr/share/doc/phpbb3/examples/config.php to a new file in /etc/phpbb3/ (e.g. /etc/phpbb3/board2.inc.php) and put the the new database credentials in it. - Eventually configure $url_forum in each configuration file, in order to distinguish the different boards. By default, the database name will be used. - Edit /etc/phpbb3/apache2.conf and add: Alias /board2 /usr/share/phpbb3/www php_value auto_prepend_file /etc/phpbb3/board2.inc.php - Restart Apache. - Populate the database for the new board by browsing to the install folder mentioned above, i.e. http://yourhostname.example.org/board2/install-XXX. Your second board is now reachable at http://yourhostname.example.org/board2 If you do not want to create a separate database for each board but rather want to concentrate them all in one, you only need to give each board a distinct $table_prefix; they can easily share a single database. Note that in this case, usually everyone will then however have access to all the forums' databases, unless you set table-specific privileges in your database server. Multiple boards across virtual hosts is also possible; continue reading. --------------------------------------------------------------------------- We've had reports that the above doesn't work reliably in some situations. The forums will then just sometimes have the wrong settings. We believe that this is not phpBB at fault (esp. because of the "sometimes"), but we did receive this workaround from Rob Bos: I've worked around this bug as follows, at Ian Pushee's advice, and having a single config.php file that is called from all the forum virtualhost blocks via auto_prepend_file: --------------------------------------------------------------------------- If you want to have multiple boards using virtual hosts, and have each board use a separate database, then instead of the above, do the following: 1. Edit /etc/phpbb3/virtualhost_config.php as follows: 2. Uncomment the section found in /etc/phpbb3/apache2.conf and make an appropriate change to ServerName -- i.e. forum.example.com. Make sure the line: php_value auto_prepend_file /etc/phpbb3/virtualhost_config.php points towards the file which you just edited above in step #1. Each VirtualHost section should include this same line and all should point to the same config file. 3. Add additional sections to apache2.conf as necessary for each of your intended phpbb3 boards. Each VirtualHost section must have a different ServerName that obviously corresponds to each individual board -- i.e. forum.example.com, forum.example.net, forum.example.org, etc. 4. Make sure you have proper DNS resolution on your DNS server for each of the different boards of your set up in each of the VirtualHost sections. 5. After making all changes, reload apache - service apache2 force-reload. --------------------------------------------------------------------------- Multiboard Issues --------------------------------------------------------------------------- Preliminary Notes ================= First, multiboard support itself is not an official feature from upstream. The source has been modified in this package such that caching will not break when running multiple boards from the same codebase. The "store" directory (database backups) will also contain subdirectories for the individual boards that you configure; creation of those directories happens when needed - there is nothing you have to do. This is what the store directory will look like for a forum at the URL http://10.8.0.1:8800/phpbb/: # ls -al /var/lib/phpbb3/store drwx-wx-wt 3 root www-data 4096 Mar 10 18:23 . drwxr-xr-x 5 root root 4096 Mar 10 16:06 .. drwxr-x--- 2 www-data www-data 4096 Mar 10 18:23 10.8.0.1.8800.phpbb For the rest, we provide some workarounds for other features where patching the source is too intrusive. We leave that to upstream, if those features are desired. Ask them. Avatar Upload ============= Avatar uploads go to the /var/lib/phpbb3/images/avatars/upload/ folder. Since this folder is common to all boards, there would be conflicts as the uploads are stored by userid, which can be the same in different forum instances. You may of course simply create another avatar uploads folder and use that one in ACP -> Avatar settings. However, you can also change the avatar_salt value in the config table of the respective boards' databases and make sure it is unique for each board. phpBB uses this value to prepend the avatar's name in the filesystem. No conflicts will then occur. Unfortunately this value cannot be set in the ACP. Make sure to empty the caches of the respective board after the change. Furthermore, the upload directory has permissions 1733, i.e. avatars cannot be listed either, except by the superuser, so this is secure. Note that if several forum instances run under the same (unix) userid and the avatar_salt is not changed, avatars might get overwritten. Avatar Galleries ================ You can make avatar galleries available to specific forums only when running each forum under a different user ID (e.g. using suexec). You can leave avatar galleries that should be available to every forum simply with permissions 0755. Avatar galleries that should only be available to specific forums should belong to the user running the forum and have no permissions for other users; phpbb will silently ignore those galleries if it cannot access them. In the following example, the 'avatars' gallery is available to everyone, the 'avatars2' gallery is however only available to the forum run by user "web15_admin" and/or group "web15". /var/lib/phpbb3/images/avatars/gallery# ls -l drwxr-xr-x 2 root root 4096 Mar 10 16:06 avatars drwxr-x--- 2 web15_admin web15 4096 Mar 10 16:17 avatars2 Again: in this case, accessing the forum via a different DNS name or such does not change anything. Which galleries are visible solely depends on the server-side instance of phpBB you are accessing. Attachments =========== Attachments to posts are stored in /var/lib/phpbb3/files/. Since these filenames are generated by md5() and microtime(), there is not much need to worry about collisions. As far as security is concerned, the files have permissions -rw-rw-rw- but the directory has only drwx-wx-wt, so noone can list them. The forum a specific file belongs to knows its exact name (in the 'attachments' table), and thus can access it. Styles ====== All styles (from /etc/phpbb3/styles) are available for every board. debian/phpbb3.postinst0000755000000000000000000001355012235301264012156 0ustar #!/bin/sh # postinst script for phpbb3 # By Jeroen van Wolffelaar and J.M. Roth # # possible calls: configure, abort-upgrade, abort-remove, abort-deconfigure set -e if [ "$PB3DEBUG" = "maint" ]; then echo "[maint] $0 $@" >&2 dbc_debug=true fi if [ "$PB3DEBUG" = "sh" ]; then set -x fi randminmax () { local min=$1 local max=$2 local var=0 while ([ "$var" -le $min ] || [ "$var" -ge $max ]); do var=$(dd if=/dev/urandom count=1 2>/dev/null | cksum | cut -c1-2) done echo $var } if [ "$1" = "configure" ]; then ## libraries . /usr/share/phpbb3/maint-libs/webapps-config . /usr/share/phpbb3/maint-libs/dbapps-lib . /usr/share/debconf/confmodule # calls phpbb3.config . /usr/share/dbconfig-common/dpkg/postinst db_version 2.0 # have to do this here since we cannot convert from a directory # to a link by simple means between versions ln -fs /var/lib/phpbb3/images /usr/share/phpbb3/www/ ## set random background for captcha (J.M.Roth 2010) RANDX=$(randminmax 10 25) RANDY=$(randminmax 5 25) DBCCP=/usr/share/dbconfig-common/data/phpbb3 cp -a /usr/share/phpbb3/dbconfig-common/data/phpbb3 /usr/share/dbconfig-common/data/ for i in mysql pgsql sqlite; do sed -i "s/@DEB_CAPTCHA_X_RAND@/${RANDX}/" $DBCCP/install/$i sed -i "s/@DEB_CAPTCHA_Y_RAND@/${RANDY}/" $DBCCP/install/$i done UCF=ucf ## DATABASE SETUP dbc_generate_include="php:/etc/phpbb3/database.inc.php" dbc_generate_include_owner="root:www-data" dbc_generate_include_perms="0640" # for sqlite: make sure that the database is readable for the webserver dbc_dbfile_owner="root:www-data" dbc_dbfile_perms="0660" dc_dbg if ! dbc_go phpbb3 $@ ; then echo 'Automatic configuration using dbconfig-common failed!' else postgres_update_seqs # act on the provided admin password if dc_true phpbb3/dbconfig-install ; then pass=$(dc_get phpbb3/admin-pass) if [ -n "$pass" ] ; then echo "Setting admin password" >&2 run_sql "UPDATE phpbb_users SET user_password='$(_md5 $pass)' WHERE username='admin';" if [ "$ERR" != "fail" ] && [ "${DEBIAN_FRONTEND}" = "noninteractive" ]; then echo "Admin password set to $pass" >&2 fi fi dc_forget phpbb3/admin-pass dc_forget phpbb3/admin-pass-confirm fi fi dc_dbg # /etc/apache2/conf.d/phpbb3.conf symlink moved to /etc/apache2/conf-available if dpkg --compare-versions "$2" lt-nl "3.0.11-5"; then [ -L /etc/apache2/conf.d/phpbb3.conf ] && rm /etc/apache2/conf.d/phpbb3.conf fi ## WEBSERVER SETUP # initially inspired from phpmyadmin's postinst webservers=$(dc_get phpbb3/httpd) reload="" # determine inexistant, removed, added and non-changed webservers webservers_old_tmp=$(dc_get phpbb3/httpd-old) db_reset phpbb3/httpd-old db_unregister phpbb3/httpd-old # remove servers from list that don't exist anymore anyhow # db_reset in phpbb3.config should have sufficed #webservers_old="" #for ow in $webservers_old_tmp; do # ow=${ow%,} # for aw in $AVAILABLE_WEBSERVERS; do # aw=${aw%,} # if [ "$ow" = "$aw" ] ; then # webservers_old="$webservers_old $ow" # break # fi # done #done # find removed servers (elements from old list not in new list) for ow in $webservers_old_tmp; do ow=${ow%,} for w in $webservers; do w=${w%,} [ "$ow" = "$w" ] && continue 2 done reload="$reload $ow" done # find added servers (elements from new list not in old list) for w in $webservers; do w=${w%,} for ow in $webservers_old_tmp; do ow=${ow%,} [ "$ow" = "$w" ] && continue 2 done reload="$reload $w" done # if we're all but reconfigured, # everything that is selected has to be reloaded anyhow if [ -z "$DEBCONF_RECONFIGURE" ] ; then for webserver in $webservers; do webserver=${webserver%,} reload="$reload $webserver" done fi ## to correctly account for the case in which ## webservers have been chosen to be NO LONGER configured ## (e.g. via dpkg-reconfigure) # first, remove all symlinks purge_webserver_config phpbb3 all 50 # then restore all selected configs for webserver in $webservers; do webserver=${webserver%,} test -x /usr/sbin/$webserver || continue $UCF --debconf-ok --three-way /usr/share/phpbb3/webserver-examples/$webserver.conf /etc/phpbb3/$webserver.conf ucfr phpbb3 /etc/phpbb3/$webserver.conf install_webserver_config phpbb3 $webserver 50 done # finally reload the changed servers for r in $reload; do reload_webserver phpbb3 $r done if [ ! -h /usr/share/phpbb3/www/install-* ]; then ln -s /usr/share/phpbb3/install /usr/share/phpbb3/www/install-$(/dev/null; then ln -sf ../../phpbb3/webserver-examples $docdir fi fi #DEBHELPER# debian/rules0000755000000000000000000000636712235503161010260 0ustar #!/usr/bin/make -f # $Id$ # # debian/rules file for phpbb3 Debian package # # Written from scratch, with inspiration from apache's debian/rules, and the # examples from dh_make # Copyright 2002, 2004 Jeroen van Wolffelaar # # Complete overhaul for debhelper 7 and dpkg source format 3 (quilt) # Copyright 2010 J.M. Roth # # Distributed under the GNU General Public License version 2 # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 # Bash is easier export SHELL = /bin/bash VERSION := $(shell head -1 debian/changelog | sed 's/.*(//;s/).*//') UPSTREAM := $(shell head -1 debian/changelog | sed 's/.*(//;s/-.?*).*//') # Last version that matches the database LAST_VERSION := 3.0.12 get-orig-source: debian/get-orig-source ${UPSTREAM} _all @# mv *.orig*.tar* .. override_dh_auto_clean: debconf-updatepo -v override_dh_installchangelogs: dh_installchangelogs docs/CHANGELOG.html -pphpbb3 dh_installchangelogs -pphpbb3-l10n override_dh_installdeb: @# customize the stuff in the build directory rm debian/phpbb3/usr/share/phpbb3/install/schemas/index.htm cd debian/phpbb3/usr/share/phpbb3/docs && rm AUTHORS COPYING INSTALL.html sed -i "s/@VERSION@/$(VERSION) (Debian)/" debian/phpbb3/usr/share/phpbb3/www/common.php install -m 0755 debian/database_update_debian.php debian/phpbb3/usr/share/phpbb3/install/database_update_debian.php @# prune the language packs find debian/phpbb3-l10n/usr/share/phpbb3/www/language \( -name docs -o -name mods \) -type d -print0 | xargs -0r rm -r find debian/phpbb3-l10n/usr/share/phpbb3/www/language \( -name AUTHORS -o -name COPYING -o -name LICENSE -o -name README -o -name VERSION \) -type f -print0 | xargs -0r rm @### dbconfig install @# mysql cp install/schemas/mysql_41_schema.sql debian/phpbb3/usr/share/phpbb3/dbconfig-common/data/phpbb3/install/mysql cat debian/schema_data_debian.sql >> debian/phpbb3/usr/share/phpbb3/dbconfig-common/data/phpbb3/install/mysql @# postgres cp install/schemas/postgres_schema.sql debian/phpbb3/usr/share/phpbb3/dbconfig-common/data/phpbb3/install/pgsql cat debian/schema_data_debian.sql | sed "s/# POSTGRES BEGIN #/BEGIN;/" | sed "s/^#.*//" | sed -e 's/`/"/g' -e 's/UNIX_TIMESTAMP()/EXTRACT(EPOCH FROM CURRENT_TIMESTAMP(0))/' >> debian/phpbb3/usr/share/phpbb3/dbconfig-common/data/phpbb3/install/pgsql debian/postgres_update_seqs.sh install/schemas/postgres_schema.sql >> debian/phpbb3/usr/share/phpbb3/dbconfig-common/data/phpbb3/install/pgsql echo "COMMIT;" >> debian/phpbb3/usr/share/phpbb3/dbconfig-common/data/phpbb3/install/pgsql @# sqlite grep -v ^# install/schemas/sqlite_schema.sql > debian/phpbb3/usr/share/phpbb3/dbconfig-common/data/phpbb3/install/sqlite debian/sqliteconv1.sh debian/schema_data_debian.sql | perl -p debian/sqliteconv2.pl \ >> debian/phpbb3/usr/share/phpbb3/dbconfig-common/data/phpbb3/install/sqlite @### dbconfig update @###(some update /data/ copied via dh_install already) @# mysql install -m 0755 debian/database_update_debian.php debian/phpbb3/usr/share/dbconfig-common/scripts/phpbb3/upgrade/mysql/$(LAST_VERSION) @# postgres @#scripts install -m 0755 debian/database_update_debian.php debian/phpbb3/usr/share/dbconfig-common/scripts/phpbb3/upgrade/pgsql/$(LAST_VERSION) dh_installdeb %: dh $@ debian/changelog0000644000000000000000000002626312261420306011045 0ustar phpbb3 (3.0.12-1) unstable; urgency=low * New upstream release * Refresh patches * Update copyright * Clean up pre-Squeeze upgrade path * Use XZ compression for language packs * Bump standards version to 3.9.5 * Allow alternatives to MySQL (closes: #732900) -- David Prévot Thu, 02 Jan 2014 22:04:21 -0400 phpbb3 (3.0.11-5) unstable; urgency=low * Make fix_chown.patch a bit more robust * Clean up pre-Squeeze handling * Handle Apache 2.4 (and 2.2 too, closes: #669959) * Clean up copyright -- David Prévot Sun, 21 Jul 2013 18:06:20 -0400 phpbb3 (3.0.11-4) unstable; urgency=high * Fix chown in cache (closes: #711172) * Fix world-writable directories -- David Prévot Thu, 13 Jun 2013 15:35:45 -0400 phpbb3 (3.0.11-3) experimental; urgency=low * Update Belarusian, Bulgarian, Czech, Mexican Spanish, Spanish (Casual Honorifics and Formal Honorifics) and Slovenian translations. * Update copyright to new path for these translations. -- David Prévot Wed, 03 Apr 2013 23:03:56 -0400 phpbb3 (3.0.11-2) experimental; urgency=low * Allow language pack update, without updating the main tarball. * Update Czech, Croatian, Swedish and Vietnamese translations. * Update copyright to new path for these translations. -- David Prévot Mon, 26 Nov 2012 16:57:03 -0400 phpbb3 (3.0.11-1) experimental; urgency=low * New upstream release. * New Brazilian Portuguese debconf translation by J.S.Júnior (closes: #663496). * Move webserver examples to /usr/share/phpbb3/webserver-examples since they are referenced at install time (Policy 10.7.3). * Update copyright, making it conform to machine-readable version 1.0. * Update to policy 3.9.4: no change needed. * Update patches. * debian/dbapps-lib: Correct handling of dbc_dbserver when configuring mysql connection parameters, thanks to Liam Young for the patch (the #613060 fix was not correct, LP: #997782, closes: #678544). * Remove AUTHORS and VERSION files from the l10n binary package. -- David Prévot Fri, 05 Oct 2012 18:36:43 -0400 phpbb3 (3.0.10-2) unstable; urgency=low * Update Czech translation (closes: #658650). -- David Prévot Sat, 04 Feb 2012 19:16:24 -0400 phpbb3 (3.0.10-1) unstable; urgency=low * New upstream release. * Update patches and schemes. * Explicitly define version number for database upgrade. -- David Prévot Mon, 16 Jan 2012 19:33:28 -0400 phpbb3 (3.0.9-1) unstable; urgency=low * New upstream release. * Remove Shield Ranks plugin (licensing issue). * Update language pack path (upstream packages modified). * Update patches: use cache/$url_forum/ in acm_memory.php too. * Don't hardcode version number for database upgrade. * Handle permissions of nested directories (closes: #607380). * Explicitly define PHPBB_ROOT_PATH in install-XXX (closes: #644276). -- David Prévot Sun, 20 Nov 2011 12:31:59 -0400 phpbb3 (3.0.7-PL1-5) unstable; urgency=low [ David Prévot ] * Fix broken cache, thanks to Nicolas Schodet (actually closes: #599480). * Fix cross site scripting vulnerability (closes: #612477) [CVE-2011-0544]. * Enforce run_sql with "-h localhost" when $dbc_dbserver is empty (closes: #613060). * Don't use local lib on preinst (closes: #595536). * Update to policy 3.9.2: no change needed. * Update my email address. [ Jean-Marc Roth ] * Fix postgres failure when postgres server is remote (closes: #612441). * Don't be too rude on trying to uninstall when unsupported webserver is used (closes: #597373). -- David Prévot Mon, 23 May 2011 15:59:05 -0400 phpbb3 (3.0.7-PL1-4) unstable; urgency=high [ Jean-Marc Roth ] * Be nicer on run_sql() failure (e.g. noninteractive case) -- inspired from dbconfig (closes: #595594). [ David Prévot ] * Vietnamese debconf translation updated, Clytie Siddall (closes: #598579). * Document $url_forum feature in README.multiboard (closes: #599480). -- David Prévot Sat, 16 Oct 2010 12:30:20 -0400 phpbb3 (3.0.7-PL1-3) unstable; urgency=high [ David Prévot ] * Use explicitly port 80 in examples, thanks to Greg Lyle (closes: #586012). * Update to policy 3.9.1: no change needed. * Japanese debconf translation updated, Hideki Yamane (closes: #591079). [ Jean-Marc Roth ] * Be nicer on dbconfig-common failure -- inspired from s9y (closes: #586759). -- David Prévot Sat, 31 Jul 2010 19:07:44 -0400 phpbb3 (3.0.7-PL1-2) unstable; urgency=low [ Jean-Marc Roth ] * Maintainer script does not correctly handle remote DB (closes: #583197). * Update path to VCS-browser, websvn needs a trailing slash. [ David Prévot ] * templates reviewed with the Smith Review Project. * Portuguese debconf translation updated thanks to Américo Monteiro (closes: #583458). * French debconf translation updated. * Czech debconf translation updated thanks to Miroslav Kure (closes: #583771). * Danish debconf translation added thanks to Joe Hansen (closes: #583829). * Swedish debconf translation updated thanks to Martin Ågren (closes: #584753). * Italian debconf translation updated thanks to Luca Monducci (closes: #584771). * Russian debconf translation updated thanks to Yuri Kozlov (closes: #584800). * German debconf translation updated thanks to Matthias Julius (closes: #584847). * Spanish debconf translation updated thanks to Francisco Javier Cuadrado (closes: #584863). [ Thijs Kinkhorst ] * Remove obsolete uuencoded logos. * Dutch debconf translation updated. -- Jean-Marc Roth Wed, 26 May 2010 12:55:24 +0200 phpbb3 (3.0.7-PL1-1) unstable; urgency=low [ Jean-Marc Roth ] * New upstream release (closes: #571787, #524361). [CVE-2010-1630, CVE-2010-1627] * Update to source package format 3.0(quilt). (made patches DEP-3 compliant) * Reinforced security: enable gd captcha, php5-gd becomes dependency, set random captcha settings during config, require user account activation (closes: #570011). * Board becomes multi-site capable (closes: #437836). * README.multiboard updated (closes: #529707). * database upgrade uses patched database_update.php from upstream => added php5-cli to dependencies. * apache2 has become new default in debconf (phpbb3/http). * Styles documentation updated (closes: #569911). * Restart webserver (closes: #430458). * Sqlite support fixed (closes: #504419). * Next-gen permissions on /var/cache and /var/lib, especially for multisite (closes: #447542). * Using UCF for webserver config. * Support setting admin credentials via debconf (closes: #477440). * Provide install directory, actually req'd for multisite (closes: #440405). [ David Prévot ] * Upstream documentation included. * Language pack is back (closes: #502563). * copyright notice updated to DEP-5 (closes: #505319). * Support automatic configuration for lighttpd (closes: #574551). * control and templates reviewed by the Smith Review Project. * Portuguese debconf translation updated thanks to Américo Monteiro (closes: #575949). * Vietnamese debconf translation updated thanks to Clytie Siddall (closes: #575990). * German debconf translation updated thanks to Matthias Julius (closes: #576939). * Japanese debconf translation updated thanks to Hideki Yamane (closes: #577063). * French debconf translation updated. * Spanish debconf translation added thanks to Francisco Javier Cuadrado (closes: #579197). * Swedish debconf translation updated thanks to Martin Ågren (closes: #579280). [ Thijs Kinkhorst ] * Removed self from uploaders. -- Jean-Marc Roth Fri, 30 Apr 2010 12:41:23 +0200 phpbb3 (3.0.4-1) UNRELEASED; urgency=low * New upstream release. * Drop all PHP4-related stuff. * Obsoletes security patches from previous uploads. * Minor packaging cleanups. -- Thijs Kinkhorst Mon, 16 Feb 2009 23:49:49 +0100 phpbb3 (3.0.2-4) unstable; urgency=high * Two security fixes backported from 3.0.4: + deactivated accounts could be re-activated by a user (closes: #508872). + ask for forum password if post within passworded forum quoted in private message. -- Thijs Kinkhorst Fri, 06 Feb 2009 14:51:46 +0100 phpbb3 (3.0.2-3) unstable; urgency=high * More fixes for PostgreSQL database schema creation, thanks Ansgar Burchardt (Closes: #497721). -- Thijs Kinkhorst Fri, 05 Sep 2008 21:06:21 +0200 phpbb3 (3.0.2-2) unstable; urgency=high * Fix bug in PostgreSQL database schema creation (Closes: #497721). * Update to policy 3.8.0: add a patch target to debian/rules and a README.source file. * Fix watch file. -- Thijs Kinkhorst Thu, 04 Sep 2008 09:39:00 +0200 phpbb3 (3.0.2-1) unstable; urgency=medium * New upstream bugfix release. - Includes low-impact security issue, so medium urgency. [CVE-2008-3224] -- Thijs Kinkhorst Sat, 12 Jul 2008 21:32:15 +0200 phpbb3 (3.0.1-1) unstable; urgency=low * New upstream bugfix release. * Add Portuguese debconf translation thanks to Miguel Figueiredo (Closes: #470112) * Fix PostgreSQL schema to strip out hash-style comments (Closes: #461117). -- Thijs Kinkhorst Tue, 22 Apr 2008 01:13:42 +0200 phpbb3 (3.0.0-2) unstable; urgency=low * Also install download/ directory, thanks Laurent Bigonville (Closes: #466429). * Upload to unstable. -- Thijs Kinkhorst Wed, 27 Feb 2008 11:03:04 +0100 phpbb3 (3.0.0-1) experimental; urgency=low * New upstream release (closes: #456304). * Drop obsoleted fix for admin reauth (closes: #450696). * Initialise board startdate to package install time (closes: #447541). * Use MySQL 4.1 schema instead of 4.0, it is more compatible with recent MySQL versions (closes: #460931). * Make cache dir readable by webserver (closes: #447540). -- Thijs Kinkhorst Sat, 19 Jan 2008 22:29:57 +0100 phpbb3 (3.0.0~RC7-1) experimental; urgency=low * New upstream Release Candidate 7. -- Thijs Kinkhorst Tue, 23 Oct 2007 23:01:26 +0200 phpbb3 (3.0.0~RC5-1) experimental; urgency=low * New upstream Release Candidate 5. -- Thijs Kinkhorst Mon, 27 Aug 2007 21:24:05 +0200 phpbb3 (3.0.0~RC4-1) experimental; urgency=low * New upstream Release Candidate 4. -- Thijs Kinkhorst Mon, 30 Jul 2007 17:02:24 +0200 phpbb3 (3.0.0~RC3-1) experimental; urgency=low * New upstream Release Candidate 3. -- Thijs Kinkhorst Mon, 09 Jul 2007 13:35:41 +0200 phpbb3 (3.0.0~RC2-1) experimental; urgency=low * New upstream Release Candidate 2. -- Thijs Kinkhorst Wed, 27 Jun 2007 13:33:24 +0200 phpbb3 (3.0.0~RC1) experimental; urgency=low * New upstream Release Candidate 1. -- Thijs Kinkhorst Thu, 31 May 2007 16:35:37 +0200 phpbb3 (3.0.0~B5) experimental; urgency=low * New upstream Beta 5 release. -- Thijs Kinkhorst Tue, 6 Feb 2007 16:31:45 +0100 debian/watch0000644000000000000000000000023011534725603010220 0ustar # Site Directory Pattern Version Script version=3 http://www.phpbb.com/downloads/olympus.php .*phpBB-(3(?:\.[0-9]+)+(?:-[A-Z]+[0-9]+)?)\.tar\.bz2.*