Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

I have notices in Administration after a New Upgrade from 7.02.07 to 8.00.21 in a subdomain

Asked Modified Viewed 1,230 times
A
afoster
A
  • Senior Member, joined since
  • Contributed 725 posts on the community forums.
  • Started 128 threads in the forums
  • Started this discussions
asked
Senior Member

Backed up my database and all the files and then proceeded to follow the instructions to upgrade. Seems to have gone well and after fixing some errors in the error log, this error message popped up and I can't seem to find the functions.php file in my includes folder. Where else should I look for it and what does the error message mean?

Error Date Status
includes/functions.php
Undefined index: NX Line: 280

Update: After going back into the admin module, the error log now shows the following error messages:

includes/functions.php
Undefined index: NX Line: 280 April 26 2019 06:33:21
include/core.php
Constant DB_USERS already defined Line: 23 April 26 2019 06:28:40
include/core.php
Constant DB_MESSAGES already defined Line: 24 April 26 2019 06:28:40
db_handlers/pdo_functions_include.php
Edited by N/A on 30-04-2019 12:49,
0 replies

3 posts

F
Falk
F
Falk 131
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 11 questions
answered
Super Admin

It looks like a Infusion, include/core.php / & includes/functions.php is nothing native.
NX is either a undefined variable or a missing locale ( varible as well )....
The other is repeating DB Definitions.
0 replies
A
afoster
A
  • Senior Member, joined since
  • Contributed 725 posts on the community forums.
  • Started 128 threads in the forums
  • Started this discussions
answered
Senior Member

Just realized that the following error comes from themes/admin_themes/Venus/includes/function.php but can't figure out what is generating it.

includes/functions.php
Undefined index: NX Line: 280
0 replies
F
Falk
F
Falk 131
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 11 questions
answered
Super Admin

I see now. It is a custom comment system with comment type NX,
Since the Theme is customized to a standard system you need to add it to this list ( Also in includes/functions.php ).

Change
 $comments_type = [
 'N' => $locale['269'],
 'D' => $locale['268'],
 'P' => $locale['272'],
 'A' => $locale['270'],
 'B' => $locale['269b'],
 'C' => $locale['272a'],
 'PH' => $locale['261'],
 ];

To
 $comments_type = [
 'N' => $locale['269'],
 'D' => $locale['268'],
 'P' => $locale['272'],
 'A' => $locale['270'],
 'B' => $locale['269b'],
 'C' => $locale['272a'],
 'PH' => $locale['261'],
 'NX' => "Your Comment System Name",
 ];


We sure need a fail safe fallback so it does not throw notices. Just Unknown.
Edited by N/A on 30-04-2019 12:48,
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 3 posts
  • Votes 0 votes
  • Topic users 2 members

2 participants

F
F
Falk 131
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 11 questions
A
A
  • Senior Member, joined since
  • Contributed 725 posts on the community forums.
  • Started 128 threads in the forums
  • Started this discussions

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet