*

Gabriel Popa

  • ***
  • 46 posts
of receiving this error in the debugge?
« on: May 02, 2016, 08:17:03 AM »
PHP No
tice: Undefined index: score_overall in /home/anunturi/public_html/oc-content/plugins/backoffice_manager/function/feedback.php on line 108

if($user_id <> '' and $user_id <> 0) {
    $avg = $feedback['score_overall'];
    $avg = round($avg*2)/2;

PHP Notice: Undefined index: score_quality in /home/anunturi/public_html/oc-content/plugins/backoffice_manager/function/feedback.php on line 145
[02-May-2016 09:00:48 Europe/Bucharest] PHP Notice: Undefined index: score_delivery in /home/anunturi/public_html/oc-content/plugins/backoffice_manager/function/feedback.php on line 146
[02-May-2016 09:00:48 Europe/Bucharest] PHP Notice: Undefined index: score_communication in /home/anunturi/public_html/oc-content/plugins/backoffice_manager/function/feedback.php on line 147 

  $fb['score_quality'] = round($fb['score_quality']);
  $fb['score_delivery'] = round($fb['score_delivery']);
  $fb['score_communication'] = round($fb['score_communication']);


[02-May-2016 09:00:48 Europe/Bucharest] PHP Notice: Undefined index: feedback_id in /home/anunturi/public_html/oc-content/plugins/backoffice_manager/function/feedback.php on line 154
[02-May-2016 09:00:48 Europe/Bucharest] PHP Notice: Undefined index: feedback_id in /home/anunturi/public_html/oc-content/plugins/backoffice_manager/function/feedback.php on line 155
[02-May-2016 09:00:48 Europe/Bucharest] PHP Notice: Undefined index: feedback_id in /home/anunturi/public_html/oc-content/plugins/backoffice_manager/function/feedback.php on line 156
[02-May-2016 09:00:48 Europe/Bucharest] PHP Notice: Undefined index: feedback_id in /home/anunturi/public_html/oc-content/plugins/backoffice_manager/function/feedback.php on line 157
[02-May-2016 09:00:48 Europe/Bucharest] PHP Notice: Undefined index: feedback_id in /home/anunturi/public_html/oc-content/plugins/backoffice_manager/function/feedback.php on line 158


$text .= '<input name="rating-quality_' . $fb['feedback_id'] . '" type="radio" class="star" value="1"' . ($fb['score_quality'] == 1 ? 'checked' : '') . ' disabled="disabled"/>';
    $text .= '<input name="rating-quality_' . $fb['feedback_id'] . '" type="radio" class="star" value="2"' . ($fb['score_quality'] == 2 ? 'checked' : '') . ' disabled="disabled"/>';
    $text .= '<input name="rating-quality_' . $fb['feedback_id'] . '" type="radio" class="star" value="3"' . ($fb['score_quality'] == 3 ? 'checked' : '') . ' disabled="disabled"/>';
    $text .= '<input name="rating-quality_' . $fb['feedback_id'] . '" type="radio" class="star" value="4"' . ($fb['score_quality'] == 4 ? 'checked' : '') . ' disabled="disabled"/>';
    $text .= '<input name="rating-quality_' . $fb['feedback_id'] . '" type="radio" class="star" value="5"' . ($fb['score_quality'] == 5 ? 'checked' : '') . ' disabled="disabled"/>';

[02-May-2016 09:00:48 Europe/Bucharest] PHP Notice: Undefined index: feedback_id in /home/anunturi/public_html/oc-content/plugins/backoffice_manager/function/feedback.php on line 163
[02-May-2016 09:00:48 Europe/Bucharest] PHP Notice: Undefined index: feedback_id in /home/anunturi/public_html/oc-content/plugins/backoffice_manager/function/feedback.php on line 164
[02-May-2016 09:00:48 Europe/Bucharest] PHP Notice: Undefined index: feedback_id in /home/anunturi/public_html/oc-content/plugins/backoffice_manager/function/feedback.php on line 165
[02-May-2016 09:00:48 Europe/Bucharest] PHP Notice: Undefined index: feedback_id in /home/anunturi/public_html/oc-content/plugins/backoffice_manager/function/feedback.php on line 166
[02-May-2016 09:00:48 Europe/Bucharest] PHP Notice: Undefined index: feedback_id in /home/anunturi/public_html/oc-content/plugins/backoffice_manager/function/feedback.php on line 167


   $text .= '<input name="rating-communication_' . $fb['feedback_id'] . '" type="radio" class="star" value="1"' . ($fb['score_communication'] == 1 ? 'checked' : '') . ' disabled="disabled"/>';
    $text .= '<input name="rating-communication_' . $fb['feedback_id'] . '" type="radio" class="star" value="2"' . ($fb['score_communication'] == 2 ? 'checked' : '') . ' disabled="disabled"/>';
    $text .= '<input name="rating-communication_' . $fb['feedback_id'] . '" type="radio" class="star" value="3"' . ($fb['score_communication'] == 3 ? 'checked' : '') . ' disabled="disabled"/>';
    $text .= '<input name="rating-communication_' . $fb['feedback_id'] . '" type="radio" class="star" value="4"' . ($fb['score_communication'] == 4 ? 'checked' : '') . ' disabled="disabled"/>';
    $text .= '<input name="rating-communication_' . $fb['feedback_id'] . '" type="radio" class="star" value="5"' . ($fb['score_communication'] == 5 ? 'checked' : '') . ' disabled="disabled"/>';






*

MB Themes

Re: of receiving this error in the debugge?
« Reply #1 on: May 02, 2016, 08:37:08 AM »
@Gabriel
Disable reporting of notices on your hosting, it is not recommended to have it activated on live site.
http://stackoverflow.com/questions/2867057/how-do-i-turn-off-php-notices
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

Gabriel Popa

  • ***
  • 46 posts
Re: of receiving this error in the debugge?
« Reply #2 on: May 02, 2016, 09:10:01 AM »
I have to talk with my host to close?
can you tell me what to do in PHP?

*

MB Themes

Re: of receiving this error in the debugge?
« Reply #3 on: May 02, 2016, 11:05:10 AM »
@Gabriel Popa
Please check link I have sent you or google it.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots