Author Topic: more people with this problem?  (Read 6718 times)

0 Members and 1 Guest are viewing this topic.

Offline wax

  • Newbie
  • *
  • Posts: 13
    • View Profile
more people with this problem?
« on: May 21, 2002, 04:32:36 PM »
hi everyone,

we've got a strange problem:
all systems crash on the permissionpage (of the categories)
on our site. so we can't use the pulldowns to set permissions.

we have over 75 categories wich results in a 102 kb large page.

we've tried to view the permissions with different systems and OS:

-. pentium 2 and 3: only few pulldowns visible in netscape,
   explorer shows nothing.
-. amd 800 mhz: the same
-. apple G4: shows up fine in explorer, netscape crashes like hell.

the page seems to use up all internal memory on the machines.
after visiting the permissionpage, we get messages of low memory,
have to exit all programs, or right click is suddenly disabled etc.

anyone with ideas how to avoid this? We can't do it on the G4
(it's not ours..)

(for Jan: you had no problems at all, what system do you use?)

what can be the problem? the coding looks fine.
we are getting a bit depressed right now, so any help would be really nice.

thanks


derek

Offline Jan

  • Administrator
  • 4images Guru
  • *****
  • Posts: 5.024
    • View Profile
    • 4images - Image Gallery Management System
more people with this problem?
« Reply #1 on: May 21, 2002, 05:47:55 PM »
Win2K, tested with IE 6, NS 4.7/6, Opera 6.1, Mozilla 1.0 RC-2... all working.

Greets Jan
Your first three "must do" before you ask a question:
1. Forum rules
2. FAQ
3. Search

Offline Nicky

  • Administrator
  • 4images Guru
  • *****
  • Posts: 3.195
    • View Profile
more people with this problem?
« Reply #2 on: May 22, 2002, 12:20:53 AM »
hi,

notebook > w2k:
p2 -> 300mhz 96mb ram
netscape 4.78 / 6.2
IE 5.5 / 6
Opera 6.1

pc > suse linux:
p3 - > 600 mhz 256mb ram
netspace 4.77 / 6.2
opera 6
konqueror

w.o. problems..

tip:
make a mySQL dump of your category table, zip it and upload to your server..
give me the url of you zip file...
cheers
Nicky
Your first three "must do" before you ask a question ! (© by V@no)
- please read the Forum Rules ...
- please study the FAQ ...
- please try to Search for your answer ...

nicky.net 4 4images
Signature stolen from mawenzi

Offline Mec4D

  • Jr. Member
  • **
  • Posts: 75
    • View Profile
    • http://www.mec4d.com
more people with this problem?
« Reply #3 on: May 22, 2002, 01:03:55 AM »
I got the same problem with the permissionpage , this was very strange I rebot my computer and try many time without effect , after I set the browser window to whole screen I access again the permissionpage and was enable to edit all with success.

Cath
Catharina

Offline Nicky

  • Administrator
  • 4images Guru
  • *****
  • Posts: 3.195
    • View Profile
more people with this problem?
« Reply #4 on: May 22, 2002, 01:25:02 AM »
hi again....

i maked other permissions for categories..

you are in right !

i got the same message "low of memory" :(
p3 600 with 256ram and w98..
cheers
Nicky
Your first three "must do" before you ask a question ! (© by V@no)
- please read the Forum Rules ...
- please study the FAQ ...
- please try to Search for your answer ...

nicky.net 4 4images
Signature stolen from mawenzi

Offline wax

  • Newbie
  • *
  • Posts: 13
    • View Profile
problem solved!
« Reply #5 on: May 23, 2002, 09:37:46 AM »
hi everyone,

thanks for thinking with me!
it seems that handling form-elements is a local-userthing.
overall: explorer handles form-elements worse then
netscape.

i have solved the problem by replacing the pulldowns in
radiobuttons, everything works fine now.

also: thanks Jan for your support!

greets,

derek


here is the changed code for the people who want it:
change admin/usergroups.php  line 67 in this:

        if ($cat_cache[$category_id][$val] == AUTH_ACL) {
          if (isset($cat_access_array[$category_id]) && $cat_access_array[$category_id][$val] == 1) {
            echo "<input type='radio' name='auth[", $category_id, "][", $val, "]' value='1' checked='checked' /> ", $lang["yes"], " \n";
            echo "<input type='radio' name='auth[", $category_id, "][", $val, "]' value='0' /> ", $lang["no"], " \n";
        }
          else {
          echo "<input type='radio' name='auth[", $category_id, "][", $val, "]' value='1' /> ", $lang["yes"], " \n";
       echo "<input type='radio' name='auth[", $category_id, "][", $val, "]' value='0' checked='checked' /> ", $lang["no"], " \n";
        }