collapse

* Simple Portal Archived Forum

This is an Archive Forum.

The content in this forum may be out-of-date or have been superseded by newer information, and links in forum pages to other sites may not work.
This forum contains archives for future reference.

Visit our thread at Simple Machines Forum for current support.

SMF 2.1 users: EhPortal is a ported version of Simple Portal specifically designed for the SMF 2.1 branch.
Please visit web-develop.ca to download EhPortal and for its support.

* User Info

 
 
Welcome, Guest. Please login or register.

* Who's Online

  • Dot Guests: 897
  • Dot Hidden: 0
  • Dot Users: 0

There aren't any users online.

* Shoutbox

Refresh History
  • Shoutbox is not for support!
  • {OCS}MasterSeal: Yup, Still adore SP
    April 21, 2019, 07:08:06 PM
  • {OCS}MasterSeal: STILL love SP :)
    November 24, 2018, 05:05:50 AM
  • ♦ Ninja ZX-10RR ♦: <3 aegersz
    September 13, 2018, 03:36:09 PM
  • aegersz: I STILL <3 LOVE SimplePortal
    September 13, 2018, 07:11:39 AM
  • aegersz: o LOVE you guys - Simple Portal rocks !
    May 09, 2018, 05:18:59 AM
  • Chen Zhen: our apologies for the site being down.. please read server issues topic
    March 22, 2018, 05:32:38 AM
  • {OCS}MasterSeal: LOL PLEASE forget I just posted that. I found the answer in my own dang post back in 2015. lol sorry!
    July 04, 2017, 10:47:55 PM
  • {OCS}MasterSeal: I know this SB isnt' for support, but I just have a general question. Who would I contact to find out where SP stores its block info? Is it DB driven or files? I searched the site but came up with nothing. probably my fault any insight is appreciated.
    July 04, 2017, 10:43:36 PM
  • ♦ Ninja ZX-10RR ♦: Excuse me but what does Simpleportal have to deal with that?
    February 05, 2017, 08:21:14 PM
  • WhiteEagle: of course IMHO that site appears to be dead :(
    February 04, 2017, 01:08:05 PM
  • WhiteEagle: If I can get that, then I'll use it for that site...
    February 04, 2017, 01:07:35 PM
  • WhiteEagle: decided to not use SMF for any projects, unless I can get a copy of the premium version of the fanfiction archive plugin
    February 04, 2017, 01:06:54 PM
  • expertdecisions: cloudflare
    January 28, 2017, 08:01:47 AM
  • aegersz: SM release 2.0.13 !
    January 12, 2017, 06:00:13 AM
  • raffo: Tks Emanuele, even if I didn't understand the fix :D
    November 07, 2016, 02:01:20 AM
  • emanuele: [link]
    November 01, 2016, 12:43:50 PM
  • emanuele: raffo: the English support board is a good place. ;)
    November 01, 2016, 12:43:38 PM
  • raffo: Where can I find the fix for the shoutbox?
    November 01, 2016, 05:06:09 AM
  • {OCS}MasterSeal: To the SP team, I make a point to come here and thank you as much as possible for your work.  so again, THANK YOU!
    October 28, 2016, 10:38:05 AM
  • emanuele: That's indeed funny, the limit is present only in the patch and not the full install.
    October 22, 2016, 06:14:58 PM

* Recent Posts

Adding Forums Button to Nav bar by jirapon
[August 01, 2019, 09:07:12 AM]


Re: Board Icons by ♦ Ninja ZX-10RR ♦
[July 30, 2019, 04:03:41 PM]


MOVED: Czech translation???? by ♦ Ninja ZX-10RR ♦
[July 30, 2019, 03:04:51 PM]


Board Icons by jirapon
[July 30, 2019, 07:28:44 AM]


Re: Thankyou Simpleportal, by ♦ Ninja ZX-10RR ♦
[July 29, 2019, 09:41:29 AM]

Installation errors? Mod incompatibilities? Upgrade problems? Make your way over to the Install and Upgrade Support board for all your solutions!

Author Topic: Just Install, set up, but error log is filling up fast  (Read 3482 times)

0 Members and 1 Guest are viewing this topic.

Offline sam

  • Semi Newbie
  • *
  • Posts: 13
  • SMF Version: 1.1.12
  • SP Version: 2.3.3
Just Install, set up, but error log is filling up fast
« on: July 26, 2009, 08:57:42 AM »
Installed 2.2.2 on smf 1.1.10  and error log keeps showing


8: Undefined index: member_groups
File: /xxx/xxxx/xxxxx/xxxx/Sources/SPortalAdmin1-1.php
Line: 735
?action=spadmin;area=blocks;sa=edit

Also in compatibility mode the browser shows no error but out of compatibility mode it shows Done with error

Like it a lot, loads more question but want to clear up this bug first

Any ideas?

Offline ccbtimewiz

  • Hero Member
  • *****
  • Posts: 2185
  • Gender: Male
  • $("div.content:dd").hide();
  • SMF Version: None
  • SP Version: None
  • Elkarte Version: None
  • EhPortal Version: None
Re: Just Install, set up, but error log is filling up fast
« Reply #1 on: July 26, 2009, 10:59:26 AM »
Open SPortalAdmin1-1.php

Find:
Code: [Select]
'allowed_groups' => $_POST['member_groups'],
Replace with:
Code: [Select]
'allowed_groups' => (!empty($_POST['member_groups']) ? $_POST['member_groups'] : ''),

Offline sam

  • Semi Newbie
  • *
  • Posts: 13
  • SMF Version: 1.1.12
  • SP Version: 2.3.3
Re: Just Install, set up, but error log is filling up fast
« Reply #2 on: July 26, 2009, 11:39:59 AM »
Thanks for that will give that a try. What causes this problem?

Offline ccbtimewiz

  • Hero Member
  • *****
  • Posts: 2185
  • Gender: Male
  • $("div.content:dd").hide();
  • SMF Version: None
  • SP Version: None
  • Elkarte Version: None
  • EhPortal Version: None
Re: Just Install, set up, but error log is filling up fast
« Reply #3 on: July 26, 2009, 11:51:24 AM »
For some reason or another, your browser does not send the contents of $_POST['member_groups'].

Seeing how $_POST is a request of content that is assumed that exists if you place a key, if it is empty (rather, if it wasn't ever set), the PHP will return an "undefined" error. I just made it so, if it doesn't exist, it will return nothing.

This may or may not be a bug in the file. Hopefully a developer or a customizer will look into this as soon as they see the topic.

Offline sam

  • Semi Newbie
  • *
  • Posts: 13
  • SMF Version: 1.1.12
  • SP Version: 2.3.3
Re: Just Install, set up, but error log is filling up fast
« Reply #4 on: July 26, 2009, 12:07:15 PM »
No didn't work, still showing an error on browser at bottom of page, will keep an eye on the error log.

Error on browser says object does not support this property or method
index.php  line44
code0   Char3

Off to see if the error log is still loading up

Offline sam

  • Semi Newbie
  • *
  • Posts: 13
  • SMF Version: 1.1.12
  • SP Version: 2.3.3
Re: Just Install, set up, but error log is filling up fast
« Reply #5 on: July 26, 2009, 12:23:52 PM »
8: Undefined index: cannot_sp_moderate
still reporting the same error on the error log

Offline ccbtimewiz

  • Hero Member
  • *****
  • Posts: 2185
  • Gender: Male
  • $("div.content:dd").hide();
  • SMF Version: None
  • SP Version: None
  • Elkarte Version: None
  • EhPortal Version: None
Re: Just Install, set up, but error log is filling up fast
« Reply #6 on: July 26, 2009, 12:28:13 PM »
This doesn't seem to be a simple PHP warning issue.

Could you list all the mods you have installed as well as a link to your forums?

Offline sam

  • Semi Newbie
  • *
  • Posts: 13
  • SMF Version: 1.1.12
  • SP Version: 2.3.3
Re: Just Install, set up, but error log is filling up fast
« Reply #7 on: July 26, 2009, 02:16:39 PM »
Think I agree with you, so its

Something I have done - do have some unusual settings
A host issue - had them before
Or as you say a mod conflict - So the mods

1. SimplePortal 2.2.2
2. Ad Managment 2.3.1 
3. Stop Spammer

Offline sam

  • Semi Newbie
  • *
  • Posts: 13
  • SMF Version: 1.1.12
  • SP Version: 2.3.3
Re: Just Install, set up, but error log is filling up fast
« Reply #8 on: July 26, 2009, 03:01:05 PM »
Thanks for your help so far ccbtimewiz

There are two issues her the repeat error logs and the browser error

Just installed a brand new smf and added simple portals to it as a test. so no mods a clean install with simple portals

browser error is there but no forum log error,  :D

Offline sam

  • Semi Newbie
  • *
  • Posts: 13
  • SMF Version: 1.1.12
  • SP Version: 2.3.3
Re: Just Install, set up, but error log is filling up fast
« Reply #9 on: July 26, 2009, 04:38:27 PM »
 :0 looks like all the forum error are coming from a regular visitor from the USA --- Google bot  ?????? thats the ip thats generating all the error log. How can that be?

As for the browser problem, its only there with XP ???

Very strange  head in hands smiley required   :D

Offline [SiNaN]

  • Mr. SimplePortal
  • Developer
  • *
  • Posts: 6782
  • SMF Version: 2.0.15
  • SP Version: 2.3.7
Re: Just Install, set up, but error log is filling up fast
« Reply #10 on: August 09, 2009, 12:02:09 PM »
Here is a suggested solution for the IE:

http://simpleportal.net/index.php?topic=2624.msg17444#msg17444

This was fixed in 2.3 version.

As for the errors in the log, I have never seen them. Re-installing the mod may help in this case.
And slowly, you come to realize... It's all as it should be...

Offline Nothingness

  • Jr. Member
  • **
  • Posts: 69
  • Gender: Male
  • I am...the architect of my own destruction...
  • SMF Version: 2 RC4
  • SP Version: 2.3.3
Re: Just Install, set up, but error log is filling up fast
« Reply #11 on: June 17, 2010, 12:55:16 AM »
I just have this simliar error.

Code: [Select]
/index.php?action=admin;area=portalblocks;sa=edit
8: Undefined index: member_groups
File: /Sources/PortalAdminBlocks.php
Line: 359
I used CB's fix...hopefully it solves it.

EDIT: Nah, sounds like a new bug
« Last Edit: June 20, 2010, 10:26:13 PM by Dismal Shadow »
"Do you wallow in self-pity, or do you learn to use the gifts God gave you and command fear and respect, and defend against those who would do us harm"

Offline AngelinaBelle

  • Comrade
  • *
  • Posts: 4870
  • Gender: Female
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: Just Install, set up, but error log is filling up fast
« Reply #12 on: June 18, 2010, 10:06:17 AM »
Or an old bug.
 
sam -- are you really using SimplePortal 2.2.2?
Why not come up to the latest version, 2.3.2.  It is just the same, only better.
 
Please to keep this website running, if you like SimplePortal, make a
one-time subscription. Thank you for your support.

Have you tried the SimplePortal documentation?

Offline Nothingness

  • Jr. Member
  • **
  • Posts: 69
  • Gender: Male
  • I am...the architect of my own destruction...
  • SMF Version: 2 RC4
  • SP Version: 2.3.3
Re: Just Install, set up, but error log is filling up fast
« Reply #13 on: June 18, 2010, 02:46:30 PM »
So the 'old' bug was never fixed?

* Dismal Shadow looks at sam's reply date:  Reply #8 on: July 26, 2009, 01:01:05 PM ยป
"Do you wallow in self-pity, or do you learn to use the gifts God gave you and command fear and respect, and defend against those who would do us harm"

Offline AngelinaBelle

  • Comrade
  • *
  • Posts: 4870
  • Gender: Female
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: Just Install, set up, but error log is filling up fast
« Reply #14 on: June 20, 2010, 07:45:02 PM »
DismalShadow -- I don't know the answer to that one, but I do know that it would be easier to support sam if he came up to the latest version.
Please to keep this website running, if you like SimplePortal, make a
one-time subscription. Thank you for your support.

Have you tried the SimplePortal documentation?