1 頁 (共 1 頁)

[問題]Re全區公告外掛之問題?(已解決)

發表於 : 2004-03-10 16:33
Andy Lee
:idea: 小弟已依說明將Global Announcement 1.2.8版安裝及修改,但進入後發現畫面一點都沒變,why?

可是其他功能似乎完全正常咧!!!

發表於 : 2004-03-10 16:50
天霜
在發表主題的頁面\r
看"發表主題為:"後面有沒有多出東西來

發表於 : 2004-03-10 16:55
Andy Lee
哈哈!天霜兄,我發現是自己把操作順序顛倒,後來試著進入文章看,才發現已經進不去了。剛把所有修改的部份還原,正努力重新掛上,有問題再請教您了!

發表於 : 2004-04-12 17:10
jessie
[php]<?php
Failed obtaining forum access control lists

DEBUG MODE

SQL Error : 1054 Unknown column 'a.auth_globalannounce' in 'field list'

SELECT a.forum_id, a.auth_view, a.auth_read, a.auth_post, a.auth_reply, a.auth_edit, a.auth_delete, a.auth_sticky, a.auth_announce, a.auth_vote, a.auth_pollcreate, a.auth_globalannounce, a.auth_mod FROM phpbb_auth_access a, phpbb_user_group ug WHERE ug.user_id = 2 AND ug.user_pending = 0 AND a.group_id = ug.group_id

Line : 160
File : c:\appserv\www\phpbb\includes\auth.php
?>[/php]
請問我這是什麼問題呢?
附上檔案..

代碼: 選擇全部

case AUTH_ALL:
			$a_sql = 'a.auth_view, a.auth_read, a.auth_post, a.auth_reply, a.auth_edit, a.auth_delete, a.auth_sticky, a.auth_announce, a.auth_vote, a.auth_pollcreate, a.auth_globalannounce';
			$auth_fields = array('auth_view', 'auth_read', 'auth_post', 'auth_reply', 'auth_edit', 'auth_delete', 'auth_sticky', 'auth_announce', 'auth_vote', 'auth_pollcreate', 'auth_globalannounce');
			break;

		case AUTH_VIEW:
			$a_sql = 'a.auth_view';
			$auth_fields = array('auth_view');
			break;

		case AUTH_READ:
			$a_sql = 'a.auth_read';
			$auth_fields = array('auth_read');
			break;
		case AUTH_POST:
			$a_sql = 'a.auth_post';
			$auth_fields = array('auth_post');
			break;
		case AUTH_REPLY:
			$a_sql = 'a.auth_reply';
			$auth_fields = array('auth_reply');
			break;
		case AUTH_EDIT:
			$a_sql = 'a.auth_edit';
			$auth_fields = array('auth_edit');
			break;
		case AUTH_DELETE:
			$a_sql = 'a.auth_delete';
			$auth_fields = array('auth_delete');
			break;

		case AUTH_ANNOUNCE:
			$a_sql = 'a.auth_announce';
			$auth_fields = array('auth_announce');
			break;
		case AUTH_STICKY:
			$a_sql = 'a.auth_sticky';
			$auth_fields = array('auth_sticky');
			break;

		case AUTH_POLLCREATE:
			$a_sql = 'a.auth_pollcreate';
			$auth_fields = array('auth_pollcreate');
			break;
		case AUTH_VOTE:
			$a_sql = 'a.auth_vote';
			$auth_fields = array('auth_vote');
			break;
		case AUTH_ATTACH:
			break;

		case AUTH_GLOBALANNOUNCE: 
$a_sql = 'a.auth_globalannounce'; 
$auth_fields = array('auth_globalannounce');