- Berichten: 38
- Ontvangen bedankjes 2
Fatal error: Cannot use object of type objectInfo
14 jaren 2 weken geleden #13
door Sandra
Fatal error: Cannot use object of type objectInfo werd gestart door Sandra
Hi All I got ACA v2.3 installed and I've got following modules installed:
Category:
Htmlarea 1.7 Wysywyg Editor for category description 4
Htmlarea 1.7 Javascript for categories 2
Jpsy image uploader 3
Products:
Htmlarea 1.7 Wysywyg Editor for category description 4
Htmlarea 1.7 Javascript for categories 2
Jpsy image uploader 3
In Category everthing working fine, but in products ever time I try add a new product I get the following error:
Fatal error: Cannot use object of type objectInfo as array in C:\Server\htdocs\osCommerce\admin\includes\modules\products\jpsy.php on line 66
When I disable Jpsy image uploader 3 for products all working fine what is wrong??
Category:
Htmlarea 1.7 Wysywyg Editor for category description 4
Htmlarea 1.7 Javascript for categories 2
Jpsy image uploader 3
Products:
Htmlarea 1.7 Wysywyg Editor for category description 4
Htmlarea 1.7 Javascript for categories 2
Jpsy image uploader 3
In Category everthing working fine, but in products ever time I try add a new product I get the following error:
Fatal error: Cannot use object of type objectInfo as array in C:\Server\htdocs\osCommerce\admin\includes\modules\products\jpsy.php on line 66
When I disable Jpsy image uploader 3 for products all working fine what is wrong??
Graag Inloggen of een account aanmaken deelnemen aan het gesprek.
- Support Team
- Offline
- Moderator
Minder
Meer
- Berichten: 106
- Ontvangen bedankjes 10
14 jaren 2 weken geleden #14
door Support Team
Beantwoord door Support Team in topic Re: Fatal error: Cannot use object of type objectInfo
In the products/jpsy.php, replace the function repost_values() by this one:
Code:
function repost_values () {
// Repost all values that are not arrays
if ($this->is_image_handler) {
foreach ($this->pInfo as $key=>$val) {
if (!is_array($val)) echo tep_draw_hidden_field($this->code .'['.$key.']', stripslashes($val))."\n";
} // end for each pInfo
}
} // end method
Graag Inloggen of een account aanmaken deelnemen aan het gesprek.