electrostuff_de Posted March 27, 2017 Share Posted March 27, 2017 Moin, ich brauche mal eure Hilfe. Wenn ich einen Artikel importiere, meckert ein Modul herum, unzwar mit diesem Fehlercode: Missing argument 1 for GroupCategory::hookActionProductAdd()... also habe ich mir die betroffene Zeile angesehen, und diese Funktion als Fehlerquelle lokalisiert: public function hookActionProductAdd($params) { $this->clearCache(); return true; } Anscheinend wird für $this->clearCache() ein weiteres Argument erwartet. Hat jemand eine Idee? Link to comment Share on other sites More sharing options...
eleazar Posted April 1, 2017 Share Posted April 1, 2017 Nee! Die Funktion selbst bekommt kein Argument mit. $params ist leer. Link to comment Share on other sites More sharing options...
electrostuff_de Posted April 4, 2017 Author Share Posted April 4, 2017 Nee! Die Funktion selbst bekommt kein Argument mit. $params ist leer. Danke eleazar. Ich habe mir die Logfiles angeschaut und muss erschreckend feststellen: [Tue Apr 04 22:28:12.xxxxxx 2017] [:error] [pid xxx] [client xxxx:xxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:xxxxx] PHP Warning: Missing argument 1 for GroupCategory::hookActionProductAdd(), called in /home/ilzpcrmv/htdocs/modules/groupcategory/groupcategory.php on line 2063 and defined in /home/ilzpcrmv/htdocs/modules/groupcategory/groupcategory.php on line 2045, referer: https://www.electrostuff.de/nvus4s7npmxmxsyy/index.php?controller=AdminProducts&token=581bcddc2a097a202c3b4b37c1155247&productFilter_sav!quantity=0&productFilter_active=1&submitFilterproduct=1 Dann sehe ich mir betreffende Zeile der groupcategory.php an und stelle folgendes fest: (Missing Argument called in 2063) public function hookActionProductUpdate($params) { return $this->hookActionProductAdd(); } $params enthält die id_product. Also müsste hier die id_product fehlen. "... and defined in 2045": public function hookActionProductAdd($params) { $this->clearCache(); return true; } Und genau jetzt werde ich nicht mehr schlau draus... hast du noch eine Idee eleazar? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now