Danke habe es hin bekommen,gibt es eigentlich noch Programmiere für das wBB2?
Beiträge von Shorty
-
-
Danke aber es geht ja um das alte wbb2 würde es da so klappen?
<if $variable == 5></if> oder so <if $boarid == 5></if>
-
Hallo ich befasse mich wider mit dem wBB2 und möchte in einem Template ein Link aus bestimmten Foren ausblenden,aber ich weis leider dafür nicht mehr die Passende f abfrage,kann mir da hier jeman helfen und sie mir sagen oder auf die sprünge helfen.
Ich glaube das war ungefähr so <if ($boardi=??????? dann weiss ich leider nicht mehr wie genau das war.
-
Ich konnte den fehler beheben,aber es wird keine Mail versendet und ich kann den fehler nicht finden,würdest du dir das Plugin mal anschauen?
-
Oh man ich sollte mich schämen,auf das nahe liegensde kommt man nicht Vielen dank es war in der Sprachvariable.
-
Hallo ich bin dabei mir ein Formular Plugin zu Entwickeln,aber bin nun an einen Fehler gekommen der mich schon den ganzen Tag beschäftigt.
Code
Alles anzeigenPHP notice in file /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/templates/compiled/0_wcf_1_sale.php (1478): Use of undefined constant APPLICATION_LENGTH_TEXTAREA_USERMESSAGE - assumed 'APPLICATION_LENGTH_TEXTAREA_USERMESSAGE' Datum 1. September 2017, 20:33 Datei (Zeile) /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/system/WCF.class.php (309) Aufgerufene URL /index.php?sale/&s=e98c6ac54a1ace135efb64fb86b287b65f726f96 Referrer https://test.computer-fun-area.de/index.php?sale/&s=e98c6ac54a1ace135efb64fb86b287b65f726f96 Browser Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36 Stacktrace #0 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/templates/compiled/0_wcf_1_sale.php(1478): wcf\system\WCF::handleError(8, 'Use of undefine...', '/var/www/vhosts...', 1478, Array) #1 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/system/template/TemplateEngine.class.php(323): include('/var/www/vhosts...') #2 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/page/AbstractPage.class.php(305): wcf\system\template\TemplateEngine->display('sale', 'wcf') #3 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/form/SaleForm.class.php(324): wcf\page\AbstractPage->show() #4 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/page/AbstractPage.class.php(100): wcf\form\SaleForm->show() #5 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/system/request/Request.class.php(58): wcf\page\AbstractPage->__run() #6 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/system/request/RequestHandler.class.php(139): wcf\system\request\Request->execute() #7 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/index.php(10): wcf\system\request\RequestHandler->handle('wbb') #8 {main}
Ich habe nun schon das Ganze Plugin nach APPLICATION_LENGTH_TEXTAREA_USERMESSAGE abgesucht,aber es ist nirgends zu Finden,was kann ich nun machen um den Fehler zu finden und zu beheben?
-
Ich blicke bei den namenspace und use immer noch nicht durch,wenn ich Folgende .php für den eventlistener erstellen würde welche namenspace und use müsste ich dafür nehmen und woher weiss ich das?
Code
Alles anzeigenclass MarkThreadModeratedAction extends AbstractSecureAction { protected $threadID; protected $reason = ''; protected $setAction = ''; protected $url = ''; /** * @see AbstractSecureAction::readParameters() */ public function readParameters() { parent::readParameters(); //get threadID if (isset($_REQUEST['threadID']) && isset($_REQUEST['reason']) && isset($_REQUEST['setAction']) && isset($_REQUEST['url'])) { $this->threadID = intval($_REQUEST['threadID']); if (!empty($_REQUEST['reason'])) { $this->reason = escapeString($_REQUEST['reason']); } $this->setAction = escapeString($_REQUEST['setAction']); $this->url = escapeString($_REQUEST['url']); } else { throw new IllegalLinkException(); } //check permission if (!WCF::getUser()->getPermission('mod.board.thread.canSetThreadAsModerated')) { throw new PermissionDeniedException(); } } /** * @see AbstractAction::execute() */ public function execute() { parent::execute(); // set thread state if ($this->setAction == 'setModerated') { $sql = "UPDATE wbb".WBB_N."_thread SET isMarkedModerated = 1, isModeratedByUserID = ".WCF::getUser()->userID.", isModeratedByUserName = '".WCF::getUser()->username."', isModeratedReason = '".$this->reason."', isModeratedTime = ".TIME_NOW." WHERE threadID = ".$this->threadID; WCF::getDB()->sendQuery($sql); } elseif ($this->setAction == 'unsetModerated') { $sql = "UPDATE wbb".WBB_N."_thread SET isMarkedModerated = 0, isModeratedByUserID = 0, isModeratedByUserName = '', isModeratedReason = '', isModeratedTime = 0 WHERE threadID = ".$this->threadID; WCF::getDB()->sendQuery($sql); } else { throw new IllegalLinkException(); } $this->executed(); // redirect to previous page HeaderUtil::redirect($this->url.SID_ARG_2ND_NOT_ENCODED); exit; } } ?>
-
Vielen dank meinstest im templateListener.xml?
*EDIT*
Habe es nun hin zu gefügt,aber bekomme immer noch.
Fatal error: XML document '/var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/tmp/xml_2a927a525ddc02bc99b719216c131ef678d78bb7' is not valid XML.
Code
Alles anzeigenLibXML output: #18 xmlParseEntityRef: no name #18 xmlParseEntityRef: no name Information: id: e63dacf6829d56d4dee76710d9de59da6aee1583 error message: XML document '/var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/tmp/xml_2a927a525ddc02bc99b719216c131ef678d78bb7' is not valid XML. error code: 0 file: /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/util/XML.class.php (184) php version: 5.6.31 wcf version: 2.1.17 (Typhoon) date: Mon, 28 Aug 2017 20:02:50 +0000 request: /acp/index.php?install-package/&t=406843e420e4a7fe256154fbc723832877a8ef44&s=3adcb755bacf3aa5ffb9c197f97f911ba00eee08 referer: https://test.computer-fun-area.de/acp/index.php?package-installation-confirm/&queueID=19&s=3adcb755bacf3aa5ffb9c197f97f911ba00eee08 Stacktrace: #0 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/util/XML.class.php(68): wcf\util\XML->throwException('XML document '/...', Array) #1 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/system/package/plugin/AbstractXMLPackageInstallationPlugin.class.php(300): wcf\util\XML->load('/var/www/vhosts...') #2 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/system/package/plugin/AbstractXMLPackageInstallationPlugin.class.php(58): wcf\system\package\plugin\AbstractXMLPackageInstallationPlugin->getXML('templateListene...') #3 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/system/package/PackageInstallationDispatcher.class.php(571): wcf\system\package\plugin\AbstractXMLPackageInstallationPlugin->install() #4 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/system/package/PackageInstallationDispatcher.class.php(139): wcf\system\package\PackageInstallationDispatcher->executePIP(Array) #5 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/acp/action/InstallPackageAction.class.php(73): wcf\system\package\PackageInstallationDispatcher->install('9abdd2dd') #6 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/action/AbstractDialogAction.class.php(70): wcf\acp\action\InstallPackageAction->stepInstall() #7 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/action/AbstractAction.class.php(49): wcf\action\AbstractDialogAction->execute() #8 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/system/request/Request.class.php(58): wcf\action\AbstractAction->__run() #9 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/system/request/RequestHandler.class.php(139): wcf\system\request\Request->execute() #10 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/acp/index.php(10): wcf\system\request\RequestHandler->handle('wbb', true) #11 {main}
-
Hallo ich habe mir mal wider etwas zusammen gebaut und bekomme nun Folgenden fehler.
Code
Alles anzeigenFatal error: XML document '/var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/tmp/xml_4dddfc4103b70840810093a9ad5ee2bdbdefc566' is not valid XML. LibXML output: #17 xmlParseEntityRef: no name #17 xmlParseEntityRef: no name Information: id: 2fb8c42f8c4bc1c2035264426500f6f51c70dbf3 error message: XML document '/var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/tmp/xml_4dddfc4103b70840810093a9ad5ee2bdbdefc566' is not valid XML. error code: 0 file: /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/util/XML.class.php (184) php version: 5.6.31 wcf version: 2.1.17 (Typhoon) date: Mon, 28 Aug 2017 19:35:09 +0000 request: /acp/index.php?install-package/&t=7da9879514ae76c096acaa8d3ef8cd51ad2e6e46&s=733242a1254d0c12767118fecad50d3d9c4c0c70 referer: https://test.computer-fun-area.de/acp/index.php?package-installation-confirm/&queueID=13&s=733242a1254d0c12767118fecad50d3d9c4c0c70 Stacktrace: #0 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/util/XML.class.php(68): wcf\util\XML->throwException('XML document '/...', Array) #1 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/system/package/plugin/AbstractXMLPackageInstallationPlugin.class.php(300): wcf\util\XML->load('/var/www/vhosts...') #2 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/system/package/plugin/AbstractXMLPackageInstallationPlugin.class.php(58): wcf\system\package\plugin\AbstractXMLPackageInstallationPlugin->getXML('templateListene...') #3 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/system/package/PackageInstallationDispatcher.class.php(571): wcf\system\package\plugin\AbstractXMLPackageInstallationPlugin->install() #4 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/system/package/PackageInstallationDispatcher.class.php(139): wcf\system\package\PackageInstallationDispatcher->executePIP(Array) #5 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/acp/action/InstallPackageAction.class.php(73): wcf\system\package\PackageInstallationDispatcher->install('15450134') #6 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/action/AbstractDialogAction.class.php(70): wcf\acp\action\InstallPackageAction->stepInstall() #7 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/action/AbstractAction.class.php(49): wcf\action\AbstractDialogAction->execute() #8 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/system/request/Request.class.php(58): wcf\action\AbstractAction->__run() #9 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/wcf/lib/system/request/RequestHandler.class.php(139): wcf\system\request\Request->execute() #10 /var/www/vhosts/computer-fun-area.de/test.computer-fun-area.de/acp/index.php(10): wcf\system\request\RequestHandler->handle('wbb', true) #11 {main}
Meckert er nun wegen dem templateListener.xml oder oackage.xml?
Ich habe beide Kontroliert und konnte keinen Fehler finden.
Aber hier mal beide .xml vielleicht habe ich etwas übersehen.
Code
Alles anzeigen<data xmlns="http://www.woltlab.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.woltlab.com http://www.woltlab.com/XSD/templatelistener.xsd"> <import> <!-- admin --> <templatelistener name="infoTemplatesBoardAddListener"> <environment>admin</environment> <templatename>boardAdd</templatename> <eventname>generalFieldsets</eventname> <templatecode>{include file='boardInfoTemplatesACPBoardAdd' application='wbb'}</templatecode> </templatelistener> <!-- /admin --> <!-- user --> <templatelistener name="infoTemplatesBoardEditListener"> <environment>user</environment> <templatename>userNotice</templatename> <eventname>userNotice</eventname> <templatecode>{if $templateName == 'board' && $__wbb->isActiveApplication()}{include file='boardInfoTemplates' application='wbb'}{/if}</templatecode> </templatelistener> <!-- /user --> </import> </data>
XML
Alles anzeigen<?xml version="1.0" encoding="UTF-8"?> <package name="de.computer-fun-area.wbb4.boardinfo" xmlns="http://www.woltlab.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.woltlab.com http://www.woltlab.com/XSD/maelstrom/package.xsd"> <packageinformation> <packagename>Board Information</packagename> <packagename language="de">Board Information</packagename> <packagedescription>This package gives you the opportunity to define Info for new thread.</packagedescription> <packagedescription language="de">Dieses Paket bietet die Möglichkeit, Information für Board festzulegen.</packagedescription> <version>1.0.0 Beta 1</version> <date>2014-12-27</date> </packageinformation> <authorinformation> <author>Shorty (netzreiter)</author> <authorurl>http://computer-fun-area.de</authorurl> </authorinformation> <requiredpackages> <requiredpackage minversion="2.0.0">com.woltlab.wcf</requiredpackage> <requiredpackage minversion="4.0.0">com.woltlab.wbb</requiredpackage> </requiredpackages> <instructions type="install"> <instruction type="file" application="wbb">files.tar</instruction> <instruction type="language">languages/*.xml</instruction> <instruction type="template" application="wbb">templates.tar</instruction> <instruction type="acpTemplate" application="wbb">acpTemplates.tar</instruction> <instruction type="eventListener">eventListener.xml</instruction> <instruction type="templateListener">templateListener.xml</instruction> <instruction type="sql">install.sql</instruction> </instructions> <instructions type="update" fromversion="1.0.0 Beta *"> <instruction type="file" application="wbb">files.tar</instruction> <instruction type="language">languages/*.xml</instruction> <instruction type="template" application="wbb">templates.tar</instruction> <instruction type="acpTemplate" application="wbb">acpTemplates.tar</instruction> </instructions> </package>
-
Nein Josh hatte es damals abgelehnt er sagte das würde ausreichennd sein.
-
Leider sieht es so aus als wenn es keine machen möchte.
-
Werde ich machen
-
Ok ich kann auch verstehen du hast genug zutun,ich hoffe das du mir da nicht böse bist das ich mich auch noch nach anderen die das Umsetzen können umschaue.
-
Könnte dir eventuell unter die Arme greifen,wenn du die .php,object und .js Dateien machen würdest würde ich versuchen den Rest zu machen?
-
Ich hoffe das Olaf das umsetzten wird,ich habe mir zwar schon etwas zur überbrückung gebastelt aber das ist von meiner Vorstellung weit entfernt.
-
Weil ich nicht vorhabe mir das neue zu holen,möchte beim 4.1 bleiben,ich würde es mir ja selbst erstellen wenn ich mit dem OOP besser klar kommen würde.
-
Hallo kannst du hier schon etwas sagen?
Ich hänge mal ein Screen an,so meinte ich das für Schliessen,Verschieben usw
-
Gut zu wissen. Denn das ging aus seiner Anfrage leider nicht hervor...
Doch ging es wenn du aufs Label geachtet hättest.
-
Ich habe mir ein Plugin gemacht welches eine Info zum Account Löschen anzeigt,mit der Gruppen Option es für jede Gruppe zu Deaktivieren.
Aber ich hätte da noch eine Frage zu einem anderen Plugin und muss wenn es hier beantwortet werden kann kein neues Thema eröffnen.
Ich bekomme das Template nicht so hin das die Box erst angezeigt wird wenn was ausgewählt wurde.
Smarty{if $__wcf->session->getPermission('user.federalFlags.canUse') && $user->getUserOption('federalFlags_federal') !== noselection} <fieldset> <legend>{lang}Bundesland{/lang}</legend> <div class="countryflagsprofile"> <img class="jsTooltip" src="{@$__wcf->getPath('wcf')}icon/federalflags/{$user->federalFlags_federal}.png" title="{$user->federalFlags_federal}"/> </div> </fieldset> {/if}
-
Danke euch erledigt habe eine Lösung gefunden