Seite 1 von 1

posten geht nicht, leider

Verfasst: 12.09.2006 15:19
von fragenueberalles
ch weiß nicht, was das heißt. Wenn ich die erste Kategorie öffne, kommt dieser Text:

Zitat:

Failed obtaining forum access control lists

DEBUG MODE

SQL Error : 1054 Unknown column 'a.auth_download' 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_attachments, a.auth_download, 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 AND a.forum_id = 1

Line : 157
File : auth.php



Wie kann ich das wieder zum verbessern? also dass man wieder posten kann bei meinem forum?

danke.

Verfasst: 12.09.2006 17:23
von Miriam
Vor allem würde ich den Mod, den Du wahrscheinlich installiert hast auch bis zu Ende installieren.... Denn eine Spalte auth_download gibt es in der Tabelle phpbb_auth_access standardmässig nicht.

Oder mach das in Deinem phpMyAdmin

Code: Alles auswählen

ALTER TABLE `phpbb_auth_access` ADD `auth_download` TINYINT( 1 ) NOT NULL DEFAULT '0';

Verfasst: 20.09.2006 21:28
von fragenueberalles
posten kann man jetzt, aber wenn man das eingegeben hat und das thema öffnen mag, kommt

Could not obtain topic information

DEBUG MODE

SQL Error : 1054 Unknown column 'f.auth_download' in 'field list'

SELECT t.topic_id, t.topic_title, t.topic_status, t.topic_replies, t.topic_time, t.topic_type, t.topic_vote, t.topic_last_post_id, f.forum_name, f.forum_status, f.forum_id, f.auth_view, f.auth_read, f.auth_post, f.auth_reply, f.auth_edit, f.auth_delete, f.auth_sticky, f.auth_announce, f.auth_pollcreate, f.auth_vote, f.auth_attachments, f.auth_download, t.topic_attachment, COUNT(p2.post_id) AS prev_posts FROM phpbb_topics t, phpbb_forums f, phpbb_posts p, phpbb_posts p2 WHERE p.post_id = 2 AND t.topic_id = p.topic_id AND p2.topic_id = p.topic_id AND p2.post_id <= 2 AND f.forum_id = t.forum_id GROUP BY p.post_id, t.topic_id, t.topic_title, t.topic_status, t.topic_replies, t.topic_time, t.topic_type, t.topic_vote, t.topic_last_post_id, f.forum_name, f.forum_status, f.forum_id, f.auth_view, f.auth_read, f.auth_post, f.auth_reply, f.auth_edit, f.auth_delete, f.auth_sticky, f.auth_announce, f.auth_pollcreate, f.auth_vote, f.auth_attachments, f.auth_download, t.topic_attachment ORDER BY p.post_id ASC

Line : 157
File : viewtopic.php

Verfasst: 20.09.2006 21:53
von Miriam
Hast Du den Attachment MOD eingebaut und das SQL Update nicht gemacht?