cback_supportticket_system

Du hast Probleme beim Einbau oder bei der Benutzung eines Mods? In diesem Forum bist du richtig.
Forumsregeln
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.0, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
Benutzeravatar
tazzi
Mitglied
Beiträge: 801
Registriert: 15.10.2004 14:08
Wohnort: Rickling
Kontaktdaten:

Beitrag von tazzi »

hm?
bye bye Tazzi
_______________
ich bin imaginär
Benutzeravatar
tazzi
Mitglied
Beiträge: 801
Registriert: 15.10.2004 14:08
Wohnort: Rickling
Kontaktdaten:

Beitrag von tazzi »

hallo? antwort?
bye bye Tazzi
_______________
ich bin imaginär
Benutzeravatar
tazzi
Mitglied
Beiträge: 801
Registriert: 15.10.2004 14:08
Wohnort: Rickling
Kontaktdaten:

Beitrag von tazzi »

jo..mal wieder push, in der hoffnung, daß sich doch noch einer hinreißen läßt, mir zu helfen..
bye bye Tazzi
_______________
ich bin imaginär
Benutzeravatar
Markus67
Ehrenadmin
Beiträge: 28346
Registriert: 12.01.2004 16:02
Wohnort: Neuss
Kontaktdaten:

Beitrag von Markus67 »

Hi ...

ich meld mich mal :D

Hast du auch das Addon von Oxpus eingebaut oder nur den MOD von CBack?

Verlinke mal bitte die komplette admin_forums.php und auch die common.php

Markus
Benutzeravatar
tazzi
Mitglied
Beiträge: 801
Registriert: 15.10.2004 14:08
Wohnort: Rickling
Kontaktdaten:

Beitrag von tazzi »

cback_supportticket_system.zip und cback_supportticket_system_add_on.zip

hier die links
admin_forums
common
bye bye Tazzi
_______________
ich bin imaginär
Benutzeravatar
Markus67
Ehrenadmin
Beiträge: 28346
Registriert: 12.01.2004 16:02
Wohnort: Neuss
Kontaktdaten:

Beitrag von Markus67 »

Hi ....

das hier fehlt in deiner common.php

Code: Alles auswählen

#
#-----[ OPEN ]------------------------------------------
#
  common.php


#
#-----[ FIND ]------------------------------------------
#
include($phpbb_root_path . 'includes/constants.'.$phpEx);
include($phpbb_root_path . 'includes/template.'.$phpEx);
include($phpbb_root_path . 'includes/sessions.'.$phpEx);
include($phpbb_root_path . 'includes/auth.'.$phpEx);
include($phpbb_root_path . 'includes/functions.'.$phpEx);
include($phpbb_root_path . 'includes/db.'.$phpEx);


#
#-----[ AFTER, ADD ]------------------------------------------
#

//
// CBACK SupportTicket System (Support Forum IDs)
// please add here the forum IDs wich are Support Forums at your board and
// where you want to use the CBACK SupportTicket System.
//
// Example:
// $stforums = array('2','4','6');
//

$stforums = array('0');

//
// END CBACK SupportTicket System
//
Markus
Benutzeravatar
tazzi
Mitglied
Beiträge: 801
Registriert: 15.10.2004 14:08
Wohnort: Rickling
Kontaktdaten:

Beitrag von tazzi »

echt?
und nur wegen

Code: Alles auswählen

$stforums = array('0'); 
hat das nicht mehr gefunzt??
oha.. na gut, mal gucken.. thx :)
und nochmal thx thx thx! ..was täte ich ohne dich :)

edit: aber nur steht da, wenn ich n forum erstellen will auch nicht, ob ich n subforum will oder nicht
und wieder Couldn't insert row in forums table

Code: Alles auswählen

DEBUG MODE

SQL Error : 1136 Column count doesn't match value count at row 1

INSERT INTO phpbb_forums (forum_id, forum_name, cat_id, forum_desc, forum_order, forum_status, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_vote, auth_pollcreate) VALUES ('12', 'test2', 6, 'testforum', 20, 0, 0, 0, 0, 0, 0, 0, 1, 1, 3, 3, 1, 1)

Line : 408
File : admin_forums.php 
:(
bye bye Tazzi
_______________
ich bin imaginär
Benutzeravatar
tazzi
Mitglied
Beiträge: 801
Registriert: 15.10.2004 14:08
Wohnort: Rickling
Kontaktdaten:

Beitrag von tazzi »

:cry:
bye bye Tazzi
_______________
ich bin imaginär
Benutzeravatar
Markus67
Ehrenadmin
Beiträge: 28346
Registriert: 12.01.2004 16:02
Wohnort: Neuss
Kontaktdaten:

Beitrag von Markus67 »

Hi ...

die Änderungen in der common.php kannst du wieder rückgängig machen .. das ganze wird durch das Addon von Oxpus wieder gelöscht. Und das was eigefügt werden musste ist drin .... sorry .. (man sollte doch auch alles lesen) :oops:

admin_forums.php

suche:

Code: Alles auswählen

			$sql = "INSERT INTO " . FORUMS_TABLE . " (forum_id, forum_name, cat_id, forum_desc, forum_order, forum_status, prune_enable" . $field_sql . ")
				VALUES ('" . $next_id . "', '" . str_replace("\'", "''", $HTTP_POST_VARS['forumname']) . "', " . intval($HTTP_POST_VARS[POST_CAT_URL]) . ", '" . str_replace("\'", "''", $HTTP_POST_VARS['forumdesc']) . "', $next_order, " . intval($HTTP_POST_VARS['forumstatus']) . ", " . intval($HTTP_POST_VARS['prune_enable, cst']) . ", " . intval($HTTP_POST_VARS['cst']) . $value_sql . ")";
ersetze mit:

Code: Alles auswählen

			$sql = "INSERT INTO " . FORUMS_TABLE . " (forum_id, forum_name, cat_id, forum_desc, forum_order, forum_status, prune_enable, cst" . $field_sql . ")
				VALUES ('" . $next_id . "', '" . str_replace("\'", "''", $HTTP_POST_VARS['forumname']) . "', " . intval($HTTP_POST_VARS[POST_CAT_URL]) . ", '" . str_replace("\'", "''", $HTTP_POST_VARS['forumdesc']) . "', $next_order, " . intval($HTTP_POST_VARS['forumstatus']) . ", " . intval($HTTP_POST_VARS['prune_enable']) . ", " . intval($HTTP_POST_VARS['cst']) . $value_sql . ")";
Markus
Benutzeravatar
tazzi
Mitglied
Beiträge: 801
Registriert: 15.10.2004 14:08
Wohnort: Rickling
Kontaktdaten:

Beitrag von tazzi »

ok..forum erstellen kann ich jetzt wieder, aber ich kann nciht mehr auswählen, obs n unterforum haben soll/sein soll :oops:
bye bye Tazzi
_______________
ich bin imaginär
Antworten

Zurück zu „phpBB 2.0: Mod Support“