q: Could Not Select Block Name.Table 'profclan_nl_db.phpbb_blocks' doesn't exist
Maar in me Phpmyadmin ( database ) staat nergens dat phpbb_blocks kan iemand mij hiermeej helpen graag

Code: Selecteer alles
/*/////////////////////////////////////////////////////////////
oooooooooo.
`888' `Y8b
888 888 '||` ||`
888oooo888' || ||
888 `88b || .|''|, `||''|, .|''||
888 .88P || ||..|| || || || ||
o888bood8P' .||. `|... .|| ||. `|..||.
ooooooooo.
`888 `Y88.
888 .d88' || '||`
888ooo88P' || ||
888 .|''|, '||''| ''||'' '''|. ||
888 || || || || .|''|| ||
o888o `|..|' .||. `|..' `|..||. .||.
.oooooo..o
d8P' `Y8
Y88bo. ||
`"Y8888o. ||
`"Y88b' || ||` ('''' ''||'' .|''|, '||),,(|,
oo .d8P `|..|| `'') || ||..|| || || ||
8""88888P' || `...' `|..' `|... .|| ||.
, |'
''
/*/////////////////////////////////////////////////////////////
##############################################################
##
## MOD Title: Blend Portal System
##
## MOD Author: aUsTiN => austin_inc@hotmail.com
##
## MOD Description: Adds a configurable page over your forums.
## Adjustable blocks, Up & Down
## Adjustable blocks, Left & Right
## Add, Edit, Delete blocks
## Add messages above center blocks
## Add, Edit, Delete messages
## All configured via admin panel
##
## MOD Version: 1.0.9
##
## MOD Help: http://austin-inc.com/Blend/
##
## Installation Level: Easy
##
## Installation Time: 5 Minutes
##
## Files To Edit: 2
##
## includes/page_tail.php
## common.php
##
##############################################################
##############################################################
##
## Author Notes:
##
## Copyright © aUsTiN-Inc, 2003
##
## If you add anything or want anything added, please
## Use the forums at http://austin-inc.com/Blend/.
##
## If you have the Hacks/Mods list installed, the .hl
## File included is for that. Drop it into Root/hl.
##
## ALL FILES ARE DOWNLOADED DIRECTLY FROM THE BLEND SITE TO BUILD THIS INSTALL.
##
## Tested versions:
##
## phpBB:
##
## 2.0.4 - 2.0.8
##
## phpMyAdmin Versions:
##
## 2.5.6-rc1
##
## MySql Versions:
##
## 4.0.18-standard
##
## PHP Versions:
##
## 4.3.3 - 4.3.4
##
## Feel free to see it in action at http://austin-inc.com/Blend/index.php
##
##############################################################
##
## MOD History:
##
## March 16th 2004 - Version 1.0.0
## - Beta Released
##
## March 22nd 2004 - Version 1.0.1
## - Bug Fixes
##
## March 24th 2004 - Version 1.0.2
## - Bug Fixes
## - File Changes
##
## March 26th 2004 - Version 1.0.3
## - Bug Fixes
## - File Changes
## - Addons Mod
##
## March 29th 2004 - Version 1.0.4
## - Bug Fixes
## - File Changes
## - Error Fixes
##
## April 3rd 2004 - Version 1.0.5
## - Read The CHANGE LOG
##
## April 6th 2004 - Version 1.0.6
## - Read The CHANGE LOG
##
## April 9th 2004 - Version 1.0.6a
## - Read The CHANGE LOG
##
## April 14th 2004 - Version 1.0.7
## - Read The CHANGE LOG
##
## April 22nd 2004 - Version 1.0.8
## - Read The CHANGE LOG
##
## April 30th 2004 - Version 1.0.9
## - Read The CHANGE LOG
##
##############################################################
##
## Todo List:
##
## Whatever is suggested!
##
##############################################################
##
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##
##############################################################
##
## Definitions:
##
## Root: Folder your config.php is located
##
##############################################################
##############################################################
##
## ANY UPGRADES GOTO THE LINK BELOW
##
##############################################################
http://www.austin-inc.com/Blend/viewforum.php?f=6
##############################################################
##
## FRESH INSTALL
##
##############################################################
Do The Following In This Order:
Drop files:
home.php => Root/
news_archives.php => Root/
blocks(folder) => Root/
BlendAdmin(folder) => Root/
addons(folder) => Root/
msg_imgs(folder) => Root/images/
no_image.gif => Root/images/avatars/
Blend.hl => Root/hl/
blend_constants.php => Root/includes/
functions_fetchposts.php => Root/includes/
lang_blend.php => Root/language/lang_english/
Blend_Install.php => Root/
Run the blend installer from your browser.
=>
=> OPEN includes/page_tail.php
=>
=> FIND
=>
$admin_link = ( $userdata['user_level'] == ADMIN ) ? '<a href="admin/index.' . $phpEx . '?sid=' . $userdata['session_id'] . '">' . $lang['Admin_panel'] . '</a><br /><br />' : '';
=>
=> REPLACE WITH
=>
$admin_link = ( $userdata['user_level'] == ADMIN ) ? '<a href="admin/index.' . $phpEx . '?sid=' . $userdata['session_id'] . '">' . $lang['Admin_panel'] . '</a><br /><a href="BlendAdmin/index.' . $phpEx . '?sid=' . $userdata['session_id'] . '">Blend Admin</a><br /><br />' : '';
=>
=> CLOSE & SAVE
=>
=>
=> OPEN common.php
=>
=> FIND
=>
//
// Setup forum wide options, if this fails
// then we output a CRITICAL_ERROR since
// basic forum information is not available
//
$sql = "SELECT *
FROM " . CONFIG_TABLE;
if( !($result = $db->sql_query($sql)) )
{
message_die(CRITICAL_ERROR, "Could not query config information", "", __LINE__, __FILE__, $sql);
}
while ( $row = $db->sql_fetchrow($result) )
{
$board_config[$row['config_name']] = $row['config_value'];
}
=>
=> ADD AFTER
=>
/* Borrowed & Modified From common.php For Blend Portal*/
$sql = "SELECT *
FROM ". $table_prefix ."blend_config";
if( !($result = $db->sql_query($sql)) )
{
message_die(CRITICAL_ERROR, "Could not query blend config information", "", __LINE__, __FILE__, $sql);
}
while ( $row = $db->sql_fetchrow($result) )
{
$blend_config[$row['id']] = $row['value'];
}
/* Finished Config For Blend Portal*/
=>
=> CLOSE & SAVE
=>
Goto Your Blend Admin Panel => Configuration, And Set The Blend Home Page, Block Colors, Etc..
EoMCode: Selecteer alles
<?php
// phpBB 2.x auto-generated config file
// Do not change anything in this file!
$dbms = 'mysql';
$dbhost = 8)
$dbname = :bier:
$dbuser = :D
$dbpasswd = :lol:
$table_prefix = 'phpbb_forum';
define('PHPBB_INSTALLED', true);
?>