Hi,
well i installed the contrib and see the "Save Product before adding options" message, when i try to add an article.
But when i try to edit an already saved article, nothing happens. Atrribute manager is missing. No errors, nothing. PHP error reporting is enabled.
However, in my local xampp installation, i see the attribute bar - everything works fine. But i am getting the
Deprecated: Assigning the return value of new by reference is deprecated
error message. Well this message doesn't apper on my product server, too.
Well i tried to fix it and changed line 55 from:
$attributeManager =& new attributeManagerAtomic(amGetSessionVariable(AM_SESSION_VAR_NAME));
to
$clone = attributeManagerAtomic(amGetSessionVariable(AM_SESSION_VAR_NAME));
$attributeManager = clone $clone;
I don't know, if that is the correct way! I tried to replace "=& new" with the "clone-function". It seems to work with line 55. But line
$attributeManager =& new attributeManagerInstant($_GET['products_id']);
isn't so simple?!? "$test = attributeManagerInstant($_GET['products_id']);" for example does not work. I am not really a coder. But i think to disable error reporting isn't even a correct way...
But at the moment my problem is, that the ajax attribute manager section is blank!
greetz Crusher