viktormk25 Posted March 20, 2017 Share Posted March 20, 2017 Hallo Community, unser Shop hat nach einem Umzug auf einen Cloud Server eine Problem. Sobald Kategorie, Produktseiten etc. geladen werden, kommt ein Fehler in product.php in Product.php line .... Notice: Undefined index: unit_price_ratio Was könnte es sein ? Hat jemand Idee ! Link to comment Share on other sites More sharing options...
0 Klemart3D Posted December 24, 2018 Share Posted December 24, 2018 Problème : Zitat (1/1) ContextErrorException Notice: Undefined index: unit_price_ratio in Product.php line 4798 Lösung: In der Datei /classes/Product.php, in Zeile 4798, ersetzen: $row['unit_price'] = ($row['unit_price_ratio'] != 0 ? $row['price'] / $row['unit_price_ratio'] : 0); durch: $row['unit_price'] = ((isset($row['unit_price_ratio']) && $row['unit_price_ratio'] != 0) ? $row['price'] / $row['unit_price_ratio'] : 0); 1 Link to comment Share on other sites More sharing options...
0 m4rek11 Posted September 4, 2017 Share Posted September 4, 2017 Same error... :/ Did you find solution? Link to comment Share on other sites More sharing options...
0 Devmix Posted March 8, 2020 Share Posted March 8, 2020 On 12/24/2018 at 3:21 PM, Klemart3D said: Problème : Lösung: In der Datei /classes/Product.php, in Zeile 4798, ersetzen: $row['unit_price'] = ($row['unit_price_ratio'] != 0 ? $row['price'] / $row['unit_price_ratio'] : 0); durch: $row['unit_price'] = ((isset($row['unit_price_ratio']) && $row['unit_price_ratio'] != 0) ? $row['price'] / $row['unit_price_ratio'] : 0); Parfaite , merci pour la réponse Link to comment Share on other sites More sharing options...
Question
viktormk25
Hallo Community, unser Shop hat nach einem Umzug auf einen Cloud Server eine Problem.
Sobald Kategorie, Produktseiten etc. geladen werden, kommt ein Fehler in product.php
Notice: Undefined index: unit_price_ratio
Was könnte es sein ? Hat jemand Idee !
Link to comment
Share on other sites
3 answers to this question
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