Keyword
Please note that official support for commercial extensions & templates is provided in the Subscriber Help Desk.
Support requests should ONLY be directed there and require an active subscription plan.
This forum board is to be used for archive purposes and knowledge exchange ONLY.

PHP Error Notices

  • Michael Anderson
  • Michael Anderson's Avatar Topic Author
  • Offline
  • New Member
More
16 years 11 months ago #3355 by Michael Anderson
PHP Error Notices was created by Michael Anderson
Anyone know how to get rid of the error notices that are appearing on my content page? See below. The gallery and thumbs are both working, but this long list of errors is at the beginning of the window... HELP!

Notice: Undefined offset: 1 in /var/www/html/2007conferencecoverage/mambots/content/plugin_jw_sigpro.php on line 81

Notice: Undefined offset: 2 in /var/www/html/2007conferencecoverage/mambots/content/plugin_jw_sigpro.php on line 82

Notice: Undefined offset: 3 in /var/www/html/2007conferencecoverage/mambots/content/plugin_jw_sigpro.php on line 83

Notice: Undefined index: 2393f6ade4f54fa6d4a238d3e81cd671 in /var/www/html/2007conferencecoverage/mambots/content/plugin_jw_sigpro.php on line 278

Notice: Undefined index: 2393f6ade4f54fa6d4a238d3e81cd671 in /var/www/html/2007conferencecoverage/mambots/content/plugin_jw_sigpro.php on line 298

Notice: Undefined index: 75211a9174e838b1aecde8560b956a6d in /var/www/html/2007conferencecoverage/mambots/content/plugin_jw_sigpro.php on line 278

Notice: Undefined index: 75211a9174e838b1aecde8560b956a6d in /var/www/html/2007conferencecoverage/mambots/content/plugin_jw_sigpro.php on line 298

Notice: Undefined index: 5fd2e18e6c6cc11bf938f490574453e9 in /var/www/html/2007conferencecoverage/mambots/content/plugin_jw_sigpro.php on line 278

Notice: Undefined index: 5fd2e18e6c6cc11bf938f490574453e9 in /var/www/html/2007conferencecoverage/mambots/content/plugin_jw_sigpro.php on line 298

Notice: Undefined index: d83f896735d0ffd95fa77a71e0d19a52 in /var/www/html/2007conferencecoverage/mambots/content/plugin_jw_sigpro.php on line 278

Notice: Undefined index: d83f896735d0ffd95fa77a71e0d19a52 in /var/www/html/2007conferencecoverage/mambots/content/plugin_jw_sigpro.php on line 298

Please Log in or Create an account to join the conversation.

More
16 years 11 months ago #3356 by JoomlaWorks
Replied by JoomlaWorks on topic Re: PHP Error Notices
URL please?

Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

  • JoomlaWorks Support Team
  • JoomlaWorks Support Team's Avatar
  • Offline
  • Platinum Member
More
16 years 11 months ago #3357 by JoomlaWorks Support Team
Replied by JoomlaWorks Support Team on topic Re: PHP Error Notices
Hi there!!!

Can you please provide us a link to see the problem?!

And please, can you tell as the version of the SIG you use?!

Thank you!

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

More
16 years 6 months ago #3358 by depika
Replied by depika on topic Re: PHP Error Notices
HI am getting the same errors.
I have fixed the Notice: Undefined offset from a post I found in the forum but I cannot seem to find a solution for the
Notice: Undefined index: 8bfb18232d5208208a04979cbee48239 in /var/www/vhosts/liquidengine.flvservers.com/httpdocs/liquidengine/mambots/content/plugin_jw_sigpro.php on line 278

Notice: Undefined index: 8bfb18232d5208208a04979cbee48239 in /var/www/vhosts/liquidengine.flvservers.com/httpdocs/liquidengine/mambots/content/plugin_jw_sigpro.php on line 298

Notice: Undefined index: 459e95727c544c8db895eb3a39cd1b56 in /var/www/vhosts/liquidengine.flvservers.com/httpdocs/liquidengine/mambots/content/plugin_jw_sigpro.php on line 278

Notice: Undefined index: 459e95727c544c8db895eb3a39cd1b56 in /var/www/vhosts/liquidengine.flvservers.com/httpdocs/liquidengine/mambots/content/plugin_jw_sigpro.php on line 298

Notice: Undefined index: 44585ef1abb16643bc88d6b0e15fb8cd in /var/www/vhosts/liquidengine.flvservers.com/httpdocs/liquidengine/mambots/content/plugin_jw_sigpro.php on line 278

Notice: Undefined index: 44585ef1abb16643bc88d6b0e15fb8cd in /var/www/vhosts/liquidengine.flvservers.com/httpdocs/liquidengine/mambots/content/plugin_jw_sigpro.php on line 298

now the errors are 3 lines down because I have commented out the lines in the plugin_jw_sigpro.php and have added the 3 lines of code needed in order to fix the error Notice: Undefined offset

The url to see the error is here: javascript:pajaxload('index2.php?option=com_content&task=view&id=13&Itemid=27')

Please Log in or Create an account to join the conversation.

  • JoomlaWorks Support Team
  • JoomlaWorks Support Team's Avatar
  • Offline
  • Platinum Member
More
16 years 6 months ago #3359 by JoomlaWorks Support Team
Replied by JoomlaWorks Support Team on topic Re: PHP Error Notices
Hi my friend!

The "Notice" message that server gives in output cause the lines 278-298 can be fixed this way
Change the line 278
if ($labels[md5($mosConfig_absolute_path.$rootfolder.$_images_dir_.'/'.$images[$a])]!="") {
to
if (@$labels[md5($mosConfig_absolute_path.$rootfolder.$_images_dir_.'/'.$images[$a])]!="") {

and change the line 298
if ($labels[md5($mosConfig_absolute_path.$rootfolder.$_images_dir_.'/'.$images[$a])]!="") {
to
if (@$labels[md5($mosConfig_absolute_path.$rootfolder.$_images_dir_.'/'.$images[$a])]!="") {

Well, this is not exactly an error. Cause you don't use the label option, the server find in the script an empty array. Some servers give this Notice in output, some others not!
The solution for now is just mute this Notice output!

Thank you!

JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

Please Log in or Create an account to join the conversation.

More
16 years 6 months ago #3360 by depika
Replied by depika on topic Re: PHP Error Notices
thank you for your quick answer. It works !!!  ;D :D

Please Log in or Create an account to join the conversation.

More
16 years 4 months ago #3361 by scorpion77
Replied by scorpion77 on topic Re: PHP Error Notices
All is well now, thank you :)

Please Log in or Create an account to join the conversation.


Powered by Kunena Forum