Moderator: Integra Moderator
"Eon";p="1179" wrote:I think this is already in the download section here..
Yeah it is. Is this the same one?
"cleo";p="1183" wrote:a quick question, did anyone ever figure out how to get the recent blog block to scroll?
<table> <tr> <td><span> <marquee> {RECENT_BLOGS}</marquee> </span></td> </tr> <tr> <td> <a>All Blogs</a> | <a>Your Blog</a> </td> </tr> </table>
<table> <tr> <td><span> <marquee> {RECENT_BLOGS}</marquee> </span></td> </tr> <tr> <td> <a>All Blogs</a> | <a>Your Blog</a> </td> </tr> </table>
<php>sql_query($sql) ) { message_die(GENERAL_ERROR, "Couldn't obtain weblogs information.", "", __LINE__, __FILE__, $sql); $recent_blogs .= "No Blogs"; } else { $recent_entries = array(); while ( $row = $db->sql_fetchrow($result) ) { $recent_entries[] = $row; } foreach ($recent_entries as $current) { $recent_blogs .= "»" . "<a><b>"; // Entry Link $recent_blogs .= $current['entry_subject']; // Subject $recent_blogs .= "</b></a><br>n "; // End and html formatting $recent_blogs .= "by <a>"; // User Link $recent_blogs .= $current['username'] . "</a> on "; // User Name $recent_blogs .= date("D M j, Y g:i a",$current['entry_time']); // Post Date $recent_blogs .= "</b></a><br><br>n "; // End and html formatting } if($portal_config['md_blogs_style']){ $style_row = 'scroll'; }else { $style_row = 'static'; } $template->assign_block_vars($style_row,""); $template->assign_vars(array( 'RECENT_BLOGS' => $recent_blogs, 'YOUR_BLOG' => $userdata['user_weblog'] ) ); } } } imp_blogs_block_func(); ?>
INSERT INTO `phpbb_portal_config` VALUES ( '', 'md_num_blogs', '10' );INSERT INTO `phpbb_portal_config` VALUES ( '', 'md_blogs_style', '0' );
<table><tr><td><span><BEGIN><marquee><BEGIN>{scroll.recent_blog_row.RECENT_BLOGS}<END></marquee><END><BEGIN><BEGIN>{static.recent_blog_row.RECENT_BLOGS}<END><END></span></td></tr><tr> <td> <hr><br><a>All Blogs</a> | <a>Your Blog</a> </td> </tr> </table>
<?php/*************************************************************************** * blocks_imp_blogs.cfg * ------------------- * copyright ]http://www.dragonsys.org[/url] * email : [url=http://www.dragonsys.org]http://www.dragonsys.org[/url] * email : <a>webmaster@dragonsys.org</a> * * note: removing the original copyright is illegal even you have modified * the code. Just append yours if you have modified it. ***************************************************************************/ /*************************************************************************** * * 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. * ***************************************************************************/ if ( !defined('IN_PHPBB') ) { die("Hacking attempt"); } if(!function_exists(imp_blogs_block_func)) { function imp_blogs_block_func() { global $template, $userdata, $phpbb_root_path, $phpEx, $db, $board_config, $lang, $portal_config, $_GET; // // Pugio Edit For Recent Blogs Support // // Get recent entries or print out an error $sql = "SELECT entry_subject, entry_id, entry_poster_id, entry_time, username, user_id FROM " . WEBLOG_ENTRIES_TABLE . ", " . USERS_TABLE . " WHERE " . USERS_TABLE . ".user_id" . " = " . WEBLOG_ENTRIES_TABLE . ".entry_poster_id ORDER BY entry_time DESC LIMIT " . $portal_config['md_num_blogs']; if( !$result = $db->sql_query($sql) ) { message_die(GENERAL_ERROR, "Couldn't obtain weblogs information.", "", __LINE__, __FILE__, $sql); $recent_blogs .= "No Blogs"; } else { $recent_entries = array(); while ( $row = $db->sql_fetchrow($result) ) { $recent_entries[] = $row; } foreach ($recent_entries as $current) { $recent_blogs .= "»" . "<a><b>"; // Entry Link $recent_blogs .= $current['entry_subject']; // Subject $recent_blogs .= "</b></a><br>n "; // End and html formatting $recent_blogs .= "by <a>"; // User Link $recent_blogs .= $current['username'] . "</a> on "; // User Name $recent_blogs .= date("D M j, Y g:i a",$current['entry_time']); // Post Date $recent_blogs .= "</b></a><br><br>n "; // End and html formatting } if($portal_config['md_blogs_style']){ $style_row = 'scroll'; }else { $style_row = 'static'; } $template->assign_block_vars($style_row,""); $template->assign_block_vars($style_row . '.recent_blog_row', array( 'RECENT_BLOGS' => $recent_blogs ) ); $template->assign_vars(array( 'RECENT_BLOGS' => $recent_blogs, 'YOUR_BLOG' => $userdata['user_weblog'] ) ); } } } imp_blogs_block_func(); ?>
Parse error]
Any help would be appreciated![/quote]
Please double check your file edits of the admin/admin_groups.php file
Here is the code for just that file:
[code]# #-----[ OPEN ]------------------------------------------ # admin/admin_groups.php # #-----[ FIND ]------------------------------------------ # $group_info = array ( 'group_name' => '', 'group_description' => '', 'group_moderator' => '', # #-----[ AFTER, ADD ]------------------------------------------ # 'group_allow_weblogs' => 0, # #-----[ FIND ]------------------------------------------ # 'U_SEARCH_USER' => append_sid("../search.$phpEx?mode=searchuser"), # #-----[ AFTER, ADD ]------------------------------------------ # 'L_WEBLOG_GROUP' => $lang['Group_allow_weblogs'], 'L_NO' => $lang['No'], 'S_GROUP_ALLOW_WEBLOGS_YES' => ( $group_info['group_allow_weblogs'] ) ? ' checked="checked"' ] ) ? ' checked="checked"' : '', # #-----[ FIND ]------------------------------------------ # $group_moderator = isset($HTTP_POST_VARS['username']) ? $HTTP_POST_VARS['username'] : ''; # #-----[ AFTER, ADD ]------------------------------------------ # $group_allow_weblogs = ( isset($HTTP_POST_VARS['group_allow_weblogs']) ) ? intval($HTTP_POST_VARS['group_allow_weblogs']) : 0; # #-----[ FIND ]------------------------------------------ # $sql = "UPDATE " . GROUPS_TABLE . " SET group_type = $group_type, group_name = '" . str_replace("'", "''", $group_name) . "', group_description = '" . str_replace("'", "''", $group_description) . "', group_moderator = $group_moderator # #-----[ IN-LINE FIND ]------------------------------------------ # , group_moderator = $group_moderator # #-----[ IN-LINE AFTER, ADD ]------------------------------------------ # , group_allow_weblogs = $group_allow_weblogs # #-----[ FIND ]------------------------------------------ # $sql = "INSERT INTO " . GROUPS_TABLE . " (group_type, group_name, group_description, group_moderator, group_single_user) # #-----[ IN-LINE FIND ]------------------------------------------ # , group_single_user # #-----[ IN-LINE AFTER, ADD ]------------------------------------------ # , group_allow_weblogs # #-----[ FIND ]------------------------------------------ # VALUES ($group_type, '" . str_replace("'", "''", $group_name) . "', '" . str_replace("'", "''", $group_description) . "', $group_moderator, '0')"; # #-----[ IN-LINE FIND ]------------------------------------------ # $group_count_enable', '0' # #-----[ IN-LINE AFTER, ADD ]------------------------------------------ # , $group_allow_weblogs
"cleo";p="1196" wrote:and Dragonsys what is updated about it? anything i should need or want to update mine to?
case PAGE_FAQ]; $location_url = "faq.$phpEx"; break;
case PAGE_BLOG]; $location_url = "weblog.$phpEx"; break;
//// That's all, Folks!
"cleo";p="4885" wrote:ok, have all the updates been done for this? working on my forum some and want to get it all updated.
any suggestions on the best way to update? when i had this installed, i only had fisubice, now i have 4 themes.
thanks in advance
cleo
"MWE_001";p="4787" wrote:Tried the edits and users stillget banned. Do I need to upgrade to the latest before trying this fix? Thx.....
Ray
UPDATE phpbb_users SET user_allowweblog=1 WHERE user_allowweblog=0;
"MWE_001";p="5094" wrote:No dice Dragonsys. Users still auto banned. An elusive little bug isn't it? lol We'll get it adventually. I have no fears. Thx.....Ray
Fatal error: Call to undefined function: vault_get_general_config() in /home/midwest/domains/mweva.com/public_html/vault.php on line 49
Could not obtain accounts information
DEBUG MODE
SQL Error : 1146 Table 'midwest_boards.VAULT_USERS_TABLE' doesn't exist
SELECT * FROM VAULT_USERS_TABLE WHERE owner_id = 13
Line : 85
File : def_userfuncs_vault.php
"MWE_001";p="5192" wrote:Oh by the way, I did forget to mention that right after I did this edit to table, I now get this when clicking on the vault....Fatal error: Call to undefined function: vault_get_general_config() in /home/midwest/domains/mweva.com/public_html/vault.php on line 49
When clicking on public in the profile section we get this, for all users.Could not obtain accounts information
DEBUG MODE
SQL Error : 1146 Table 'midwest_boards.VAULT_USERS_TABLE' doesn't exist
SELECT * FROM VAULT_USERS_TABLE WHERE owner_id = 13
Line : 85
File : def_userfuncs_vault.php
I double checked in phpmyadmin, and sure enough, that table does infact exist. I ran the repair and optimised all tables and still get the same thing. Maybe I'm off topic but this occured right after I tried that for the blog mod repair.
I know that query for blog mod couldnt have poosibly done this, I don't think.lol I hope its just a coincidence. Any Ideas?
<?php// <ID>// +---------------+-------------------------------+-----------+// | IntegraMOD v1 | ÂÂÂ © 2005 IntegraMOD Group | {1.4.0} |// +---------------+-------------------------------+-----------+// | Filename | constants.php |// | Created By | phpBB Group |// | Created On | February 13, 2001 |// | Copyright | ÂÂÂ © 2005 phpBB Group |// | License | GNU-GPL v2 [http] |// +---------------+-------------------------------------------+// | DO NOT MODIFY/REMOVE ANTHING ABOVE THIS LINE!!! |// +-----------------------------------------------------------+ // *************************************************************// ****************** Begin Protecting Script ******************// *************************************************************/*if (!defined('IM_LOADER') or !IM_LOADER or !defined('IM_GLOBALS') or !IM_GLOBALS){ die('<p><strong>Access Denied:</strong> This file ('.basename(__FILE__).') cannot be accessed directly.</p>');}*/ // *************************************************************// ******************* Set Global Constants ********************// *************************************************************// ### Debug Level -- To turn off, set to 0. ###define('DEBUG', 1); // ### Account Activation Settings ###define('USER_ACTIVATION_NONE', 0);define('USER_ACTIVATION_SELF', 1);define('USER_ACTIVATION_ADMIN', 2); // ### Album Constants ###define('ALBUM_ANONYMOUS', -1);define('ALBUM_GUEST', -1);define('ALBUM_USER', 0);define('ALBUM_ADMIN', 1);define('ALBUM_MOD', 2);define('ALBUM_PRIVATE', 3);// --------------------define('ALBUM_UPLOAD_PATH', 'album_mod/upload/');define('ALBUM_CACHE_PATH', 'album_mod/upload/cache/');define('ALBUM_MED_CACHE_PATH', 'album_mod/upload/med_cache/');// --------------------define('ALBUM_NAV_ARROW', ' » ');define('ALBUM_ROOT_CATEGORY', -1);// --------------------define('PERSONAL_GALLERY', 0); // ### Auth Settings ###define('AUTH_LIST_ALL', 0);define('AUTH_ALL', 0);// --------------------define('AUTH_REG', 1);define('AUTH_ACL', 2);define('AUTH_MOD', 3);define('AUTH_ADMIN', 5);// --------------------define('AUTH_VIEW', 1);define('AUTH_READ', 2);define('AUTH_POST', 3);define('AUTH_REPLY', 4);define('AUTH_EDIT', 5);define('AUTH_DELETE', 6);define('AUTH_ANNOUNCE', 7);define('AUTH_STICKY', 8);define('AUTH_POLLCREATE', 9);define('AUTH_VOTE', 10);define('AUTH_ATTACH', 11);define('AUTH_DELAYEDPOST', 12);// RegMod-Begindefine('AUTH_REG', 13);// RegMod-Enddefine('AUTH_CAL', 20);define('AUTH_GLOBAL_ANNOUNCE', 21);define('AUTH_PAID_VIEW', 25); // ### Data Tables ###define('ACCT_HIST_TABLE', $table_prefix.'account_hist');define('ACRONYMS_TABLE', $table_prefix.'acronyms');define('ADMIN_PM_TABLE', $table_prefix.'admin_pm');define('ALBUM_CAT_TABLE', $table_prefix.'album_cat');define('ALBUM_COMMENT_TABLE', $table_prefix.'album_comment');define('ALBUM_CONFIG_TABLE', $table_prefix.'album_config');define('ALBUM_RATE_TABLE', $table_prefix.'album_rate');define('ALBUM_SP_CONFIG_TABLE', $table_prefix.'album_sp_config');define('ALBUM_TABLE', $table_prefix.'album');define('APPROVE_FORUMS_TABLE', $table_prefix.'approve_forums');define('APPROVE_POSTS_TABLE', $table_prefix.'approve_posts');define('APPROVE_TOPICS_TABLE', $table_prefix.'approve_topics');define('APPROVE_USERS_TABLE', $table_prefix.'approve_users');define('AUTH_ACCESS_TABLE', $table_prefix.'auth_access');define('BANNER_STATS_TABLE', $table_prefix.'banner_stats');define('BANNERS_TABLE', $table_prefix.'banner');define('BANLIST_TABLE', $table_prefix.'banlist');define('BLOCK_POSITION_TABLE', $table_prefix.'block_position');define('BLOCK_VARIABLE_TABLE', $table_prefix.'block_variable');define('BLOCKS_TABLE', $table_prefix.'blocks');define('BOOKMARK_TABLE', $table_prefix.'bookmarks');define('BUDDY_TABLE', $table_prefix.'contact_list');define('BUDDYS_TABLE', $table_prefix.'buddy');define('CATEGORIES_TABLE', $table_prefix.'categories');define('CONFIG_TABLE', $table_prefix.'config');define('CONTACT_TABLE', $table_prefix.'contact_list');define('DIGEST_FORUMS_TABLE', $table_prefix.'digest_forums');define('DIGEST_TABLE', $table_prefix.'digest');define('DISALLOW_TABLE', $table_prefix.'disallow');//define('DISALLOW_TABLE', $table_prefix.'contact_list'); // Which to use? constants_contact.phpdefine('FORUM_TOUR_TABLE', $table_prefix.'forum_tour');define('FORUMS_TABLE', $table_prefix.'forums');define('GROUPS_TABLE', $table_prefix.'groups');define('HACKS_LIST_TABLE', $table_prefix.'hacks_list');define('IGNORE_TABLE', $table_prefix.'contact_list');define('IM_CONFIG_TABLE', $table_prefix.'im_config');define('IM_PREFS_TABLE', $table_prefix.'im_prefs');define('IM_SITES_TABLE', $table_prefix.'im_sites');define('IM_SESSIONS_TABLE', $table_prefix.'im_sessions');define('JR_ADMIN_TABLE', $table_prefix.'jr_admin_users');define('LAYOUT_TABLE', $table_prefix.'layout');define('LINK_CATEGORIES_TABLE', $table_prefix.'link_categories');define('LINK_CONFIG_TABLE', $table_prefix.'link_config');define('LINKS_TABLE', $table_prefix.'links');define('NEWS_TABLE', $table_prefix.'news');define('OPTIMIZE_DB_TABLE', $table_prefix.'optimize_db');define('PORTAL_CONFIG_TABLE', $table_prefix.'portal_config');define('POSTS_TABLE', $table_prefix.'posts');define('POSTS_TEXT_TABLE', $table_prefix.'posts_text');define('PRIVMSGS_IGNORE_TABLE', $table_prefix.'privmsgs_ignore');define('PRIVMSGS_TABLE', $table_prefix.'privmsgs');define('PRIVMSGS_TEXT_TABLE', $table_prefix.'privmsgs_text');define('PRUNE_TABLE', $table_prefix.'forum_prune');define('RANKS_TABLE', $table_prefix.'ranks');define('REFERERS_TABLE', $table_prefix.'referers');define('RULES_TABLE', $table_prefix.'rules');define('SEARCH_MATCH_TABLE', $table_prefix.'search_wordmatch');define('SEARCH_TABLE', $table_prefix.'search_results');define('SEARCH_WORD_TABLE', $table_prefix.'search_wordlist');define('SESSIONS_TABLE', $table_prefix.'sessions');define('SESSIONS_KEYS_TABLE', $table_prefix.'sessions_keys');define('SHOUTBOX_TABLE', $table_prefix.'shout');define('SMILIES_TABLE', $table_prefix.'smilies');define('SUBSCRIPTIONS_TABLE', $table_prefix.'mod_subscriptions');define('SUBSCRIBED_FORUMS_TABLE', $table_prefix.'mod_subscribed_forums');define('THEMES_NAME_TABLE', $table_prefix.'themes_name');define('THEMES_TABLE', $table_prefix.'themes');define('TOPICS_TABLE', $table_prefix.'topics');define('TOPICS_WATCH_TABLE', $table_prefix.'topics_watch');define('USER_GROUP_TABLE', $table_prefix.'user_group');define('USERS_TABLE', $table_prefix.'users');define('VOTE_DESC_TABLE', $table_prefix.'vote_desc');define('VOTE_RESULTS_TABLE', $table_prefix.'vote_results');define('VOTE_USERS_TABLE', $table_prefix.'vote_voters');// RegMod-Begindefine('REGISTRATION_TABLE', $table_prefix.'registration');// RegMod-Enddefine('WEBLOG_BLOCKED_TABLE', $table_prefix.'weblog_blocked'); define('WEBLOG_CONFIG_TABLE', $table_prefix.'weblog_config'); define('WEBLOG_ACTIONS_TABLE', $table_prefix.'weblog_actions'); define('WEBLOG_ENTRIES_TABLE', $table_prefix.'weblog_entries'); define('WEBLOG_FRIENDS_TABLE', $table_prefix.'weblog_friends'); define('WEBLOG_MOODS_TABLE', $table_prefix.'weblog_moods'); define('WEBLOG_MOOD_SETS_TABLE', $table_prefix.'weblog_mood_sets'); define('WEBLOG_CONTRIBUTORS_TABLE', $table_prefix.'weblog_contributors'); define('WEBLOG_REPLIES_TABLE', $table_prefix.'weblog_replies'); define('WEBLOG_SHOUTBOX_TABLE', $table_prefix.'weblog_shoutbox'); define('WEBLOG_TEMPLATES_TABLE', $table_prefix.'weblog_templates'); define('WEBLOG_TRACKBACKS_TABLE', $table_prefix.'weblog_trackbacks'); define('WEBLOGS_TABLE', $table_prefix.'weblogs'); define('WORDS_TABLE', $table_prefix.'words');define('WPM', $table_prefix.'wpm'); // ### Database Connection ###define('BEGIN_TRANSACTION', 1);define('END_TRANSACTION', 2); // ### Error Codes ###define('GENERAL_MESSAGE', 200);define('GENERAL_ERROR', 202);define('CRITICAL_MESSAGE', 203);define('CRITICAL_ERROR', 204); // ### Group Settings ###define('GROUP_OPEN', 0);define('GROUP_CLOSED', 1);define('GROUP_HIDDEN', 2);define('GROUP_AUTO', 3);define('GROUP_PAYMENT', 4); // ### Page Numbers for Session Handling ###define('PAGE_INDEX', 0);define('PAGE_LOGIN', -1);define('PAGE_SEARCH', -2);define('PAGE_REGISTER', -3);define('PAGE_PROFILE', -4);define('PAGE_VIEWONLINE', -6);define('PAGE_VIEWMEMBERS', -7);define('PAGE_FAQ', -8);define('PAGE_POSTING', -9);define('PAGE_PRIVMSGS', -10);define('PAGE_GROUPCP', -11);define('PAGE_FORUM_TOUR', -12);define('PAGE_PORTAL', -13);define('PAGE_CARD', -14);define('PAGE_RULES', -15);define('PAGE_COOKIES', -16);define('PAGE_STAFF', -17);define('PAGE_LINKS', -18);define('PAGE_DOWNLOAD', -19);#======================================================================= |#==== Start: == Activity Mod Plus ====================================== |#==== v1.1.0 =========================================================== |#====define('PAGE_ACTIVITY', -20);define('PAGE_PLAYING_GAMES', -21);#====#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-amod.com] === |#==== End: ==== Activity Mod Plus ====================================== | #======================================================================= |define('PAGE_ALBUM', -50);define('PAGE_ALBUM_PERSONAL', -51);define('PAGE_ALBUM_PICTURE', -52);define('PAGE_ALBUM_SEARCH', -53);define('PAGE_REDIRECT', -1031);define('PAGE_SHOUTBOX_MAX', -1035);define('PAGE_SHOUTBOX', -1035);define('PAGE_CONTACT', -8050);define('PAGE_PRILLIAN', -8051);define('PAGE_TOPIC_OFFSET', 5000); // ### Points Status ###define('POINTS_DISABLED', 1);define('POINTS_ENABLED', 0); // ### Post Types ###define('POST_NORMAL', 0);define('POST_STICKY', 1);define('POST_ANNOUNCE', 2);define('POST_GLOBAL_ANNOUNCE', 3);// RegMod-Begindefine('POST_REGISTER', 4); // Registration typesdefine('REG_DO', 1);define('REG_MAYBE', 2);define('REG_DONT', 3);// RegMod-Enddefine('POST_BIRTHDAY', 9);define('POST_CALENDAR', 10); // ### Prillian Constants ###// prillian installed?if (defined('PRILLIAN_INSTALLED')){define('ALLOW_BUDDY_SELF', false);define('CONTACT_PATH', $phpbb_root_path.'mods/contact/');define('CONTACT_URL', $phpbb_root_path.'contact.'.$phpEx);define('IM_NEW_MAIL', 6);define('IM_READ_MAIL', 7);define('IM_UNREAD_MAIL', 8);define('OFF_SITE', -2);define('OFF_SITE_USERS_URL', 'u');define('OFF_SITE_POST_URL', 'p');define('PRILL_PATH', $phpbb_root_path.'mods/prillian/');define('PRILL_URL', $phpbb_root_path.'imclient.'.$phpEx);define('MAIN_MODE', 1);define('WIDE_MODE', 2);define('MINI_MODE', 3);define('FRAMES_MODE', 4);define('NO_FRAMES_MODE', 5);} // ### Private Message System ###define('PRIVMSGS_READ_MAIL', 0);define('PRIVMSGS_NEW_MAIL', 1);define('PRIVMSGS_SENT_MAIL', 2);define('PRIVMSGS_SAVED_IN_MAIL', 3);define('PRIVMSGS_SAVED_OUT_MAIL', 4);define('PRIVMSGS_UNREAD_MAIL', 5); // ### Session Parameters ###define('SESSION_METHOD_COOKIE', 100);define('SESSION_METHOD_GET', 101); // ### Software Status ###define('FORUM_UNLOCKED', 0);define('FORUM_LOCKED', 1); // ### Topic Status ###define('TOPIC_UNLOCKED', 0);define('TOPIC_LOCKED', 1);define('TOPIC_MOVED', 2);define('TOPIC_WATCH_NOTIFIED', 1);define('TOPIC_WATCH_UN_NOTIFIED', 0); // ### URL Parameters ###define('POST_TOPIC_URL', 't');define('POST_CAT_URL', 'c');define('POST_FORUM_URL', 'f');define('POST_USERS_URL', 'u');define('POST_POST_URL', 'p');define('POST_GROUPS_URL', 'g');define('POST_WEBLOG_URL', 'w'); define('POST_ENTRY_URL', 'e'); define('POST_REPLY_URL', 'r'); // ### User Avatar Settings ###define('USER_AVATAR_NONE', 0);define('USER_AVATAR_UPLOAD', 1);define('USER_AVATAR_REMOTE', 2);define('USER_AVATAR_GALLERY', 3); // ### User Levels ###define('DELETED', -1);define('ANONYMOUS', -1);define('USER', 0);define('ADMIN', 1);define('MOD', 2);define('JADMIN', 7);define('ADMIN_FOUNDER', 99);define('GUEST_ONLY', 1000); // ### Special Constants ###define('NO', 0);define('YES', 1);define('FRIEND_ONLY',2);define('UNKNOWN', 0);define('MALE', 1);define('FEMALE', 2);define('VIP_RANK_TITLE', 'VIP');define('OVERIDE_THEME', false);define('DIGEST_THEME', 1);define('DIGEST_LOGGING', true);define('DIGEST_SUPPORT', "http://www.phpbb.com/phpBB/viewtopic.php?t=187868");define('DIGEST_HTML', 1);define('DIGEST_TEXT', 0); #======================================================================= |#==== Start: == Activity Mod Plus ====================================== |#==== v1.1.0 =========================================================== |#====define('iNA', $table_prefix.'ina_data');define('iNA_GAMES', $table_prefix.'ina_games');define('iNA_SCORES', $table_prefix.'ina_scores');#====#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-amod.com] === |#==== End: ==== Activity Mod Plus ====================================== | #======================================================================= |define('LOTTERY_TABLE', $table_prefix.'lottery');define('LOTTERY_HISTORY_TABLE', $table_prefix.'lottery_history');/* Start Helpdesk By aUsTiN */define('HELPDESK_E', $table_prefix.'helpdesk_emails');define('HELPDESK_I', $table_prefix.'helpdesk_importance');define('HELPDESK_M', $table_prefix.'helpdesk_msgs');define('HELPDESK_R', $table_prefix.'helpdesk_reply');/* End Helpdesk By aUsTiN */define('SHOPS_TABLE','phpbb_shops');define('SHOPITEMS_TABLE', 'phpbb_shopitems');define('TABLE_USER_SHOPS', $table_prefix . 'user_shops');define('TABLE_USER_SHOP_ITEMS', $table_prefix . 'user_shops_items'); ?>
"MWE_001";p="5198" wrote:The problem is, that I have never touched any of those files on my site in I cant remeber how long. All was working fine. This particular site in question is my live site. I never edit anything there anymore. The only thing done to it was that mysql query....and upgrade for phpBB security...I double checked those edits and it had nothing to do with said file in question. Hmm now Im stumped......
constants.php
- Code: Select all
<?php// <ID>// +---------------+-------------------------------+-----------+// | IntegraMOD v1 | ÂÂÂ © 2005 IntegraMOD Group | {1.4.0} |// +---------------+-------------------------------+-----------+// | Filename | constants.php |// | Created By | phpBB Group |// | Created On | February 13, 2001 |// | Copyright | ÂÂÂ © 2005 phpBB Group |// | License | GNU-GPL v2 [http] |// +---------------+-------------------------------------------+// | DO NOT MODIFY/REMOVE ANTHING ABOVE THIS LINE!!! |// +-----------------------------------------------------------+ // *************************************************************// ****************** Begin Protecting Script ******************// *************************************************************/*if (!defined('IM_LOADER') or !IM_LOADER or !defined('IM_GLOBALS') or !IM_GLOBALS){ die('<p><strong>Access Denied:</strong> This file ('.basename(__FILE__).') cannot be accessed directly.</p>');}*/ // *************************************************************// ******************* Set Global Constants ********************// *************************************************************// ### Debug Level -- To turn off, set to 0. ###define('DEBUG', 1); // ### Account Activation Settings ###define('USER_ACTIVATION_NONE', 0);define('USER_ACTIVATION_SELF', 1);define('USER_ACTIVATION_ADMIN', 2); // ### Album Constants ###define('ALBUM_ANONYMOUS', -1);define('ALBUM_GUEST', -1);define('ALBUM_USER', 0);define('ALBUM_ADMIN', 1);define('ALBUM_MOD', 2);define('ALBUM_PRIVATE', 3);// --------------------define('ALBUM_UPLOAD_PATH', 'album_mod/upload/');define('ALBUM_CACHE_PATH', 'album_mod/upload/cache/');define('ALBUM_MED_CACHE_PATH', 'album_mod/upload/med_cache/');// --------------------define('ALBUM_NAV_ARROW', ' » ');define('ALBUM_ROOT_CATEGORY', -1);// --------------------define('PERSONAL_GALLERY', 0); // ### Auth Settings ###define('AUTH_LIST_ALL', 0);define('AUTH_ALL', 0);// --------------------define('AUTH_REG', 1);define('AUTH_ACL', 2);define('AUTH_MOD', 3);define('AUTH_ADMIN', 5);// --------------------define('AUTH_VIEW', 1);define('AUTH_READ', 2);define('AUTH_POST', 3);define('AUTH_REPLY', 4);define('AUTH_EDIT', 5);define('AUTH_DELETE', 6);define('AUTH_ANNOUNCE', 7);define('AUTH_STICKY', 8);define('AUTH_POLLCREATE', 9);define('AUTH_VOTE', 10);define('AUTH_ATTACH', 11);define('AUTH_DELAYEDPOST', 12);// RegMod-Begindefine('AUTH_REG', 13);// RegMod-Enddefine('AUTH_CAL', 20);define('AUTH_GLOBAL_ANNOUNCE', 21);define('AUTH_PAID_VIEW', 25); // ### Data Tables ###define('ACCT_HIST_TABLE', $table_prefix.'account_hist');define('ACRONYMS_TABLE', $table_prefix.'acronyms');define('ADMIN_PM_TABLE', $table_prefix.'admin_pm');define('ALBUM_CAT_TABLE', $table_prefix.'album_cat');define('ALBUM_COMMENT_TABLE', $table_prefix.'album_comment');define('ALBUM_CONFIG_TABLE', $table_prefix.'album_config');define('ALBUM_RATE_TABLE', $table_prefix.'album_rate');define('ALBUM_SP_CONFIG_TABLE', $table_prefix.'album_sp_config');define('ALBUM_TABLE', $table_prefix.'album');define('APPROVE_FORUMS_TABLE', $table_prefix.'approve_forums');define('APPROVE_POSTS_TABLE', $table_prefix.'approve_posts');define('APPROVE_TOPICS_TABLE', $table_prefix.'approve_topics');define('APPROVE_USERS_TABLE', $table_prefix.'approve_users');define('AUTH_ACCESS_TABLE', $table_prefix.'auth_access');define('BANNER_STATS_TABLE', $table_prefix.'banner_stats');define('BANNERS_TABLE', $table_prefix.'banner');define('BANLIST_TABLE', $table_prefix.'banlist');define('BLOCK_POSITION_TABLE', $table_prefix.'block_position');define('BLOCK_VARIABLE_TABLE', $table_prefix.'block_variable');define('BLOCKS_TABLE', $table_prefix.'blocks');define('BOOKMARK_TABLE', $table_prefix.'bookmarks');define('BUDDY_TABLE', $table_prefix.'contact_list');define('BUDDYS_TABLE', $table_prefix.'buddy');define('CATEGORIES_TABLE', $table_prefix.'categories');define('CONFIG_TABLE', $table_prefix.'config');define('CONTACT_TABLE', $table_prefix.'contact_list');define('DIGEST_FORUMS_TABLE', $table_prefix.'digest_forums');define('DIGEST_TABLE', $table_prefix.'digest');define('DISALLOW_TABLE', $table_prefix.'disallow');//define('DISALLOW_TABLE', $table_prefix.'contact_list'); // Which to use? constants_contact.phpdefine('FORUM_TOUR_TABLE', $table_prefix.'forum_tour');define('FORUMS_TABLE', $table_prefix.'forums');define('GROUPS_TABLE', $table_prefix.'groups');define('HACKS_LIST_TABLE', $table_prefix.'hacks_list');define('IGNORE_TABLE', $table_prefix.'contact_list');define('IM_CONFIG_TABLE', $table_prefix.'im_config');define('IM_PREFS_TABLE', $table_prefix.'im_prefs');define('IM_SITES_TABLE', $table_prefix.'im_sites');define('IM_SESSIONS_TABLE', $table_prefix.'im_sessions');define('JR_ADMIN_TABLE', $table_prefix.'jr_admin_users');define('LAYOUT_TABLE', $table_prefix.'layout');define('LINK_CATEGORIES_TABLE', $table_prefix.'link_categories');define('LINK_CONFIG_TABLE', $table_prefix.'link_config');define('LINKS_TABLE', $table_prefix.'links');define('NEWS_TABLE', $table_prefix.'news');define('OPTIMIZE_DB_TABLE', $table_prefix.'optimize_db');define('PORTAL_CONFIG_TABLE', $table_prefix.'portal_config');define('POSTS_TABLE', $table_prefix.'posts');define('POSTS_TEXT_TABLE', $table_prefix.'posts_text');define('PRIVMSGS_IGNORE_TABLE', $table_prefix.'privmsgs_ignore');define('PRIVMSGS_TABLE', $table_prefix.'privmsgs');define('PRIVMSGS_TEXT_TABLE', $table_prefix.'privmsgs_text');define('PRUNE_TABLE', $table_prefix.'forum_prune');define('RANKS_TABLE', $table_prefix.'ranks');define('REFERERS_TABLE', $table_prefix.'referers');define('RULES_TABLE', $table_prefix.'rules');define('SEARCH_MATCH_TABLE', $table_prefix.'search_wordmatch');define('SEARCH_TABLE', $table_prefix.'search_results');define('SEARCH_WORD_TABLE', $table_prefix.'search_wordlist');define('SESSIONS_TABLE', $table_prefix.'sessions');define('SESSIONS_KEYS_TABLE', $table_prefix.'sessions_keys');define('SHOUTBOX_TABLE', $table_prefix.'shout');define('SMILIES_TABLE', $table_prefix.'smilies');define('SUBSCRIPTIONS_TABLE', $table_prefix.'mod_subscriptions');define('SUBSCRIBED_FORUMS_TABLE', $table_prefix.'mod_subscribed_forums');define('THEMES_NAME_TABLE', $table_prefix.'themes_name');define('THEMES_TABLE', $table_prefix.'themes');define('TOPICS_TABLE', $table_prefix.'topics');define('TOPICS_WATCH_TABLE', $table_prefix.'topics_watch');define('USER_GROUP_TABLE', $table_prefix.'user_group');define('USERS_TABLE', $table_prefix.'users');define('VOTE_DESC_TABLE', $table_prefix.'vote_desc');define('VOTE_RESULTS_TABLE', $table_prefix.'vote_results');define('VOTE_USERS_TABLE', $table_prefix.'vote_voters');// RegMod-Begindefine('REGISTRATION_TABLE', $table_prefix.'registration');// RegMod-Enddefine('WEBLOG_BLOCKED_TABLE', $table_prefix.'weblog_blocked'); define('WEBLOG_CONFIG_TABLE', $table_prefix.'weblog_config'); define('WEBLOG_ACTIONS_TABLE', $table_prefix.'weblog_actions'); define('WEBLOG_ENTRIES_TABLE', $table_prefix.'weblog_entries'); define('WEBLOG_FRIENDS_TABLE', $table_prefix.'weblog_friends'); define('WEBLOG_MOODS_TABLE', $table_prefix.'weblog_moods'); define('WEBLOG_MOOD_SETS_TABLE', $table_prefix.'weblog_mood_sets'); define('WEBLOG_CONTRIBUTORS_TABLE', $table_prefix.'weblog_contributors'); define('WEBLOG_REPLIES_TABLE', $table_prefix.'weblog_replies'); define('WEBLOG_SHOUTBOX_TABLE', $table_prefix.'weblog_shoutbox'); define('WEBLOG_TEMPLATES_TABLE', $table_prefix.'weblog_templates'); define('WEBLOG_TRACKBACKS_TABLE', $table_prefix.'weblog_trackbacks'); define('WEBLOGS_TABLE', $table_prefix.'weblogs'); define('WORDS_TABLE', $table_prefix.'words');define('WPM', $table_prefix.'wpm'); // ### Database Connection ###define('BEGIN_TRANSACTION', 1);define('END_TRANSACTION', 2); // ### Error Codes ###define('GENERAL_MESSAGE', 200);define('GENERAL_ERROR', 202);define('CRITICAL_MESSAGE', 203);define('CRITICAL_ERROR', 204); // ### Group Settings ###define('GROUP_OPEN', 0);define('GROUP_CLOSED', 1);define('GROUP_HIDDEN', 2);define('GROUP_AUTO', 3);define('GROUP_PAYMENT', 4); // ### Page Numbers for Session Handling ###define('PAGE_INDEX', 0);define('PAGE_LOGIN', -1);define('PAGE_SEARCH', -2);define('PAGE_REGISTER', -3);define('PAGE_PROFILE', -4);define('PAGE_VIEWONLINE', -6);define('PAGE_VIEWMEMBERS', -7);define('PAGE_FAQ', -8);define('PAGE_POSTING', -9);define('PAGE_PRIVMSGS', -10);define('PAGE_GROUPCP', -11);define('PAGE_FORUM_TOUR', -12);define('PAGE_PORTAL', -13);define('PAGE_CARD', -14);define('PAGE_RULES', -15);define('PAGE_COOKIES', -16);define('PAGE_STAFF', -17);define('PAGE_LINKS', -18);define('PAGE_DOWNLOAD', -19);#======================================================================= |#==== Start: == Activity Mod Plus ====================================== |#==== v1.1.0 =========================================================== |#====define('PAGE_ACTIVITY', -20);define('PAGE_PLAYING_GAMES', -21);#====#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-amod.com] === |#==== End: ==== Activity Mod Plus ====================================== | #======================================================================= |define('PAGE_ALBUM', -50);define('PAGE_ALBUM_PERSONAL', -51);define('PAGE_ALBUM_PICTURE', -52);define('PAGE_ALBUM_SEARCH', -53);define('PAGE_REDIRECT', -1031);define('PAGE_SHOUTBOX_MAX', -1035);define('PAGE_SHOUTBOX', -1035);define('PAGE_CONTACT', -8050);define('PAGE_PRILLIAN', -8051);define('PAGE_TOPIC_OFFSET', 5000); // ### Points Status ###define('POINTS_DISABLED', 1);define('POINTS_ENABLED', 0); // ### Post Types ###define('POST_NORMAL', 0);define('POST_STICKY', 1);define('POST_ANNOUNCE', 2);define('POST_GLOBAL_ANNOUNCE', 3);// RegMod-Begindefine('POST_REGISTER', 4); // Registration typesdefine('REG_DO', 1);define('REG_MAYBE', 2);define('REG_DONT', 3);// RegMod-Enddefine('POST_BIRTHDAY', 9);define('POST_CALENDAR', 10); // ### Prillian Constants ###// prillian installed?if (defined('PRILLIAN_INSTALLED')){define('ALLOW_BUDDY_SELF', false);define('CONTACT_PATH', $phpbb_root_path.'mods/contact/');define('CONTACT_URL', $phpbb_root_path.'contact.'.$phpEx);define('IM_NEW_MAIL', 6);define('IM_READ_MAIL', 7);define('IM_UNREAD_MAIL', 8);define('OFF_SITE', -2);define('OFF_SITE_USERS_URL', 'u');define('OFF_SITE_POST_URL', 'p');define('PRILL_PATH', $phpbb_root_path.'mods/prillian/');define('PRILL_URL', $phpbb_root_path.'imclient.'.$phpEx);define('MAIN_MODE', 1);define('WIDE_MODE', 2);define('MINI_MODE', 3);define('FRAMES_MODE', 4);define('NO_FRAMES_MODE', 5);} // ### Private Message System ###define('PRIVMSGS_READ_MAIL', 0);define('PRIVMSGS_NEW_MAIL', 1);define('PRIVMSGS_SENT_MAIL', 2);define('PRIVMSGS_SAVED_IN_MAIL', 3);define('PRIVMSGS_SAVED_OUT_MAIL', 4);define('PRIVMSGS_UNREAD_MAIL', 5); // ### Session Parameters ###define('SESSION_METHOD_COOKIE', 100);define('SESSION_METHOD_GET', 101); // ### Software Status ###define('FORUM_UNLOCKED', 0);define('FORUM_LOCKED', 1); // ### Topic Status ###define('TOPIC_UNLOCKED', 0);define('TOPIC_LOCKED', 1);define('TOPIC_MOVED', 2);define('TOPIC_WATCH_NOTIFIED', 1);define('TOPIC_WATCH_UN_NOTIFIED', 0); // ### URL Parameters ###define('POST_TOPIC_URL', 't');define('POST_CAT_URL', 'c');define('POST_FORUM_URL', 'f');define('POST_USERS_URL', 'u');define('POST_POST_URL', 'p');define('POST_GROUPS_URL', 'g');define('POST_WEBLOG_URL', 'w'); define('POST_ENTRY_URL', 'e'); define('POST_REPLY_URL', 'r'); // ### User Avatar Settings ###define('USER_AVATAR_NONE', 0);define('USER_AVATAR_UPLOAD', 1);define('USER_AVATAR_REMOTE', 2);define('USER_AVATAR_GALLERY', 3); // ### User Levels ###define('DELETED', -1);define('ANONYMOUS', -1);define('USER', 0);define('ADMIN', 1);define('MOD', 2);define('JADMIN', 7);define('ADMIN_FOUNDER', 99);define('GUEST_ONLY', 1000); // ### Special Constants ###define('NO', 0);define('YES', 1);define('FRIEND_ONLY',2);define('UNKNOWN', 0);define('MALE', 1);define('FEMALE', 2);define('VIP_RANK_TITLE', 'VIP');define('OVERIDE_THEME', false);define('DIGEST_THEME', 1);define('DIGEST_LOGGING', true);define('DIGEST_SUPPORT', "http://www.phpbb.com/phpBB/viewtopic.php?t=187868");define('DIGEST_HTML', 1);define('DIGEST_TEXT', 0); #======================================================================= |#==== Start: == Activity Mod Plus ====================================== |#==== v1.1.0 =========================================================== |#====define('iNA', $table_prefix.'ina_data');define('iNA_GAMES', $table_prefix.'ina_games');define('iNA_SCORES', $table_prefix.'ina_scores');#====#==== Author: aUsTiN [austin@phpbb-amod.com] [http://phpbb-amod.com] === |#==== End: ==== Activity Mod Plus ====================================== | #======================================================================= |define('LOTTERY_TABLE', $table_prefix.'lottery');define('LOTTERY_HISTORY_TABLE', $table_prefix.'lottery_history');/* Start Helpdesk By aUsTiN */define('HELPDESK_E', $table_prefix.'helpdesk_emails');define('HELPDESK_I', $table_prefix.'helpdesk_importance');define('HELPDESK_M', $table_prefix.'helpdesk_msgs');define('HELPDESK_R', $table_prefix.'helpdesk_reply');/* End Helpdesk By aUsTiN */define('SHOPS_TABLE','phpbb_shops');define('SHOPITEMS_TABLE', 'phpbb_shopitems');define('TABLE_USER_SHOPS', $table_prefix . 'user_shops');define('TABLE_USER_SHOP_ITEMS', $table_prefix . 'user_shops_items'); ?>
##-----[ OPEN ]------------------------------------------#common.php ##-----[ FIND ]------------------------------------------#?> ##-----[ BEFORE, ADD ]------------------------------------------#include_once($phpbb_root_path . 'includes/functions_vault.'.$phpEx); ##-----[ OPEN ]------------------------------------------#admin/xs_cache.php ##-----[ FIND ]------------------------------------------#$skip_files = array( '.', '..', '.htaccess', 'index.htm', 'index.html', 'index.php', 'attach_config.php', ); ##-----[ REPLACE WITH ]------------------------------------------#$skip_files = array( '.', '..', '.htaccess', 'index.htm', 'index.html', 'index.php', 'vault_config.php', 'vault_config_def.tpl', 'attach_config.php', );
include_once($phpbb_root_path . 'includes/functions_vault.'.$phpEx);
"MWE_001";p="5213" wrote:Now back to the blog mod..ha ha ha... Sorry for the trouble Dragonsys... I thought it was all just coincidental.
"Jason Sanborn";p="7753" wrote:I've been using a slightly older version on my site, and it works well. It does have some minor issues that were probably addressed in the newer release. I just haven't taken the time to update it. <img>
"Jason Sanborn";p="7765" wrote:The older version had bugs within the templates. Some images were corrupted and a couple files were missing. It was easily resolved by copying the missing files and images from other templates that had them, though.
I also have an issue with some people who aren't authorized to post blogs getting messages that they weren't authorized to view or reply to them, even though the permissions were set to Guests. This doesn't happen with everyone, either. I don't know if you can get the older version anymore, though.
"MWE_001";p="7577" wrote:Thats what I was leaning towards as well........Da**it! have to get into shell afterall........I hate that.....How close is this to the final? How many templates are currently available? Tanks! <img>
"Michaelo";p="7942" wrote:Dragonsys, I would like to test the mod in 1.4.1 beta how it coming along?
[color=red]Update]
I downloaded and installed the blog mod on one of my 1.4.1 test installs, and from my preliminary test it works perfectly with only a few edits required to the install instructions regards Findà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€šÃ‚ ¦ several of markers (the text you are required to find) are either altered of do not appear in the complete form as indicatedà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€šÃ‚ ¦
For my part I would have liked the block to appear inside the portal page similar to viewtopics/viewforums but I suppose I cant have everything still it could be done in the futureà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€šÃ‚ ¦![]()
Many thanksà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€šÃ‚ ¦ Mike
"Michaelo";p="7952" wrote:[color=red]Security] I came across these should they be added? [url=http]Security Update Here![/url]
I had to install themes a couple of times? Changing themes requires setting the Load Template option?
I downloaded several themes but I note some images were corrupt... Perhaps some text file were also corrupt <img>
Mike
"doswald";p="8454" wrote:Questions Compadres...
Is this compatible with IntegraMOD 132c? I wish it is <img>
Regards.
Doswald
"Dragonsys";p="8495" wrote:"doswald";p="8454" wrote:Questions Compadres...
Is this compatible with IntegraMOD 132c? I wish it is <img>
Regards.
Doswald
I honestly have no idea, I have never used IM 1.3.x
Maybe someone here has tried it.
"Dragonsys";p="9750" wrote:it sounds like you missed an edit in templates/fisubice/admin/group_edit_body.tpl
"Threat009";p="10062" wrote:Got this up and running and seems to be running smoothly, but for some reason I have triple entries in Portal configuration
Number of Blogs x 3
Recent blog style x 3
As I said, no biggie since it seems to be running okay, but just curious if the update overwrite is okay. I could be wrong, but I think I only had one entry for each prior to update. Did I edit something wrong maybe or is there perhaps a bad file in the update?
"billsatx";p="10118" wrote:opppsss..sorry this should prob be under the BlogMOD thread...please move if needed...thanks
Attempting to install the Blog MOD....
all seemed to install OK, however in the ACP I get this msg below
Am I overlooking something?
Also the "WEBLOG_CONFIG_TABLE" does exist in my sql data base. In fact dleted it and the re-installed it..still same msg
[code]phpBB ]
thanks
Bill
"Threat009";p="10072" wrote:honestly, I don't remember, but for some reason I think I may have ran both <img>
"Dragonsys";p="10251" wrote:"billsatx";p="10118" wrote:opppsss..sorry this should prob be under the BlogMOD thread...please move if needed...thanks
Attempting to install the Blog MOD....
all seemed to install OK, however in the ACP I get this msg below
Am I overlooking something?
Also the "WEBLOG_CONFIG_TABLE" does exist in my sql data base. In fact dleted it and the re-installed it..still same msg
- Code: Select all
phpBB : Critical Error Could not query config information DEBUG MODE SQL Error : 1146 Table 'website.WEBLOG_CONFIG_TABLE' doesn't exist SELECT * FROM WEBLOG_CONFIG_TABLE Line : 61File : weblogs_common.php
thanks
Bill
Check your edits to includes/constants.php file.
"billsatx";p="10353" wrote:All is corrected. At first I tought maybe I wouldn't confess what I have did...or didn't do, but for others benfit, I guess I should......
Before making MOD changes I download (into a file folder) the files that need to be MODDED.
Then I duplicate the know working files.... and make changes to the duplicate files. If anything doesn't work, I can simply re-upload the known good files and usually nothing but time is lost.
After your email I checked all the files again to make sure that I had applied all the changes....All was perfect
I checked the permissons to make sure that all the CHMOD's were correct....All was perfect.
I was totally baffled, so I reloaded the MODDED files to the server.....WHAM...All was perfect.
Bottom Line...After you spent time modding files and checking and double checking and bothering the Moderators at IM2 for help, at least make sure you've uploded the modded files from your hard drive to the server. They work much better up there
DAH....![]()
"Dragonsys";p="10251" wrote:"billsatx";p="10118" wrote:opppsss..sorry this should prob be under the BlogMOD thread...please move if needed...thanks
Attempting to install the Blog MOD....
all seemed to install OK, however in the ACP I get this msg below
Am I overlooking something?
Also the "WEBLOG_CONFIG_TABLE" does exist in my sql data base. In fact dleted it and the re-installed it..still same msg
- Code: Select all
phpBB : Critical Error Could not query config information DEBUG MODE SQL Error : 1146 Table 'website.WEBLOG_CONFIG_TABLE' doesn't exist SELECT * FROM WEBLOG_CONFIG_TABLE Line : 61File : weblogs_common.php
thanks
Bill
Check your edits to includes/constants.php file.
"Dragonsys";p="10320" wrote:hmmmm, if they only show once in that table, then I do not know why you are seeing them two or three times in the ACP....
"billsatx";p="10421" wrote:Just looked at my ACP portal configuration and have the same 3 @ entries as Threat009. Also looked at the SQL data base and only one entry each.
Hmmm...I know..I know...I'm the guy that forgot to upload the modded files <img>"Dragonsys";p="10320" wrote:hmmmm, if they only show once in that table, then I do not know why you are seeing them two or three times in the ACP....
"Dragonsys";p="10426" wrote:"billsatx";p="10421" wrote:Just looked at my ACP portal configuration and have the same 3 @ entries as Threat009. Also looked at the SQL data base and only one entry each.
Hmmm...I know..I know...I'm the guy that forgot to upload the modded files <img>"Dragonsys";p="10320" wrote:hmmmm, if they only show once in that table, then I do not know why you are seeing them two or three times in the ACP....
hmmmm, strange. You are seeing them in ACP -> IM Portal -> Block Variables correct?
Try deleting your IM Portal Cache and your style cache.
"billsatx";p="10448" wrote:"Dragonsys";p="10426" wrote:"billsatx";p="10421" wrote:Just looked at my ACP portal configuration and have the same 3 @ entries as Threat009. Also looked at the SQL data base and only one entry each.
Hmmm...I know..I know...I'm the guy that forgot to upload the modded files <img>"Dragonsys";p="10320" wrote:hmmmm, if they only show once in that table, then I do not know why you are seeing them two or three times in the ACP....
hmmmm, strange. You are seeing them in ACP -> IM Portal -> Block Variables correct?
Try deleting your IM Portal Cache and your style cache.
No, the ACP, IMPortal, Blocks Variables only have one listing.
I am seeing the multiple list in ACP, IM Portal, Portal Configuration area.
Registered users: App360MonitorBot, Bing [Bot], Google [Bot]