Author Topic: Uploading problems  (Read 9412 times)

0 Members and 1 Guest are viewing this topic.

Offline Jay10

  • Newbie
  • *
  • Posts: 25
    • View Profile
Uploading problems
« on: May 07, 2002, 06:14:41 PM »
I tested some images, I uploaded them into the categories, but the images aren't uploading in the categories. When I went into the Admin control panel to look into "Edit Images" the images were there, but they aren't in the Photo Gallery categories. What could be the problem?

Offline rp

  • Newbie
  • *
  • Posts: 36
    • View Profile
Uploading problems
« Reply #1 on: May 07, 2002, 10:41:34 PM »
gleiches Problem (1.5 Beta):

Wenn man als Administrator eingeloggt ist und versucht Bilder über die Galerie Hompage (nicht über's Control Panel) hochzuladen werden diese nachher im Control Panel zwar angezeigt (z.B. unter Bilder bearbeiten) auf der Galerie Hompage jedoch nicht. (müssen ja nicht freigeschaltet werden, da als Admin Direktupload möglich).

Offline Jan

  • Administrator
  • 4images Guru
  • *****
  • Posts: 5.024
    • View Profile
    • 4images - Image Gallery Management System
Uploading problems
« Reply #2 on: May 07, 2002, 10:50:11 PM »
Your first three "must do" before you ask a question:
1. Forum rules
2. FAQ
3. Search

Offline Jay10

  • Newbie
  • *
  • Posts: 25
    • View Profile
Uploading problems
« Reply #3 on: May 08, 2002, 12:14:34 AM »
I speak english only, so the information at the link is confusing for me.

Offline Jay10

  • Newbie
  • *
  • Posts: 25
    • View Profile
Uploading problems
« Reply #4 on: May 08, 2002, 12:16:04 AM »
Quote from: rpiatti
gleiches Problem (1.5 Beta):

Wenn man als Administrator eingeloggt ist und versucht Bilder über die Galerie Hompage (nicht über's Control Panel) hochzuladen werden diese nachher im Control Panel zwar angezeigt (z.B. unter Bilder bearbeiten) auf der Galerie Hompage jedoch nicht. (müssen ja nicht freigeschaltet werden, da als Admin Direktupload möglich).



can you translate your post? I speak english only.

Offline Nicky

  • Administrator
  • 4images Guru
  • *****
  • Posts: 3.195
    • View Profile
Uploading problems
« Reply #5 on: May 08, 2002, 12:38:50 AM »
hi,

is the same problem like yours..
there is a little bug in member.php

row 58:
change:
Code: [Select]

  $image_active = (isset($HTTP_POST_VARS['image_active']) && $HTTP_POST_VARS['image_active'] == 1) ? 1 : 0;

to:
Code: [Select]

  $image_active = (isset($HTTP_POST_VARS['image_active']) && $HTTP_POST_VARS['image_active'] == 0) ? 0 : 1;


and row 60:

change:
Code: [Select]

  $image_allow_comments = (isset($HTTP_POST_VARS['image_allow_comments']) && $HTTP_POST_VARS['image_allow_comments'] == 1) ? 1 : 0;

to:
Code: [Select]

  $image_allow_comments = (isset($HTTP_POST_VARS['image_allow_comments']) && $HTTP_POST_VARS['image_allow_comments'] == 0) ? 0 : 1;
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 Jay10

  • Newbie
  • *
  • Posts: 25
    • View Profile
Uploading problems
« Reply #6 on: May 08, 2002, 12:43:23 AM »
Thanks a lot.