Author Topic: Show upload form again after an upload  (Read 6244 times)

0 Members and 1 Guest are viewing this topic.

Offline jerseygirl

  • Newbie
  • *
  • Posts: 22
    • View Profile
Show upload form again after an upload
« on: August 03, 2006, 06:07:57 PM »
Hello,

I'm sure this has been discussed before but I can't seem the finf the old thread  :?
What I'm looking for is a way to show the upload form again and not the uploaded image after an upload.
Thanks

Offline jerseygirl

  • Newbie
  • *
  • Posts: 22
    • View Profile
Re: Show upload form again after an upload
« Reply #1 on: August 03, 2006, 06:17:17 PM »
never mind, I found it  :roll:

Offline mawenzi

  • 4images Moderator
  • 4images Guru
  • *****
  • Posts: 4.500
    • View Profile
Re: Show upload form again after an upload
« Reply #2 on: August 03, 2006, 07:37:43 PM »
in member.php in section "if ($action == "uploadimage")" find

Code: [Select]
    }
    else {
      $action = "uploadform";
      $sendprocess = 1;
    }
  }
  else {
    $action = "uploadform";
    $sendprocess = 1;
  }
}

insert the following code above
Code: [Select]
$action = "uploadform";
$sendprocess = 1;
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 ...

You are on search for top 4images MOD's ?
- then please search here ... Mawenzi's Top 100+ MOD List (unsorted sorted) ...

Offline chrissim

  • Pre-Newbie
  • Posts: 4
    • View Profile
Re: Show upload form again after an upload
« Reply #3 on: December 07, 2011, 03:20:10 PM »
in member.php in section "if ($action == "uploadimage")" find

Code: [Select]
    }
    else {
      $action = "uploadform";
      $sendprocess = 1;
    }
  }
  else {
    $action = "uploadform";
    $sendprocess = 1;
  }
}

insert the following code above
Code: [Select]
$action = "uploadform";
$sendprocess = 1;


hi mawenzi ,

The above code work if the member uploaded the same category folder but the upload form will still maintained the same old category if we choose other new category.
Can we clear or refresh the upload form so new category can be uploaded. Any way we can sort out these issues?

Offline mawenzi

  • 4images Moderator
  • 4images Guru
  • *****
  • Posts: 4.500
    • View Profile
Re: Show upload form again after an upload
« Reply #4 on: December 07, 2011, 05:58:33 PM »
[MOD] Categories upload dropdown form : http://www.4homepages.de/forum/index.php?topic=7722.0
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 ...

You are on search for top 4images MOD's ?
- then please search here ... Mawenzi's Top 100+ MOD List (unsorted sorted) ...