Author Topic: ACP Image Upload not mandatory / ACP Bilderuploadpflicht ausschalten  (Read 6618 times)

0 Members and 1 Guest are viewing this topic.

Offline Sunny C.

  • Addicted member
  • ******
  • Posts: 1.806
  • I ♥ 4I
    • View Profile
Gibt es irgendeinen Weg die Pflicht ein Bild hochzuladen auszuschalten?
Es klingt zwar Schwachsinnig in einem Galleriesystem diese Funktion auszuschalten beziehungsweise zu entschärfen aber das bräuchte ich für eine Erweiterung

----

Is there any way the obligation to upload a picture off?
It sounds moronic in a gallery system to defuse or disable this feature but I would need for an extension

Offline V@no

  • If you don't tell me what to do, I won't tell you where you should go :)
  • Global Moderator
  • 4images Guru
  • *****
  • Posts: 17.849
  • mmm PHP...
    • View Profile
    • 4images MODs Demo
Re: ACP Image Upload not mandatory / ACP Bilderuploadpflicht ausschalten
« Reply #1 on: September 26, 2010, 10:21:53 PM »
Exactly how do you propose this should be done? Submitting just name of an image and no image?
Your first three "must do" before you ask a question:
Please do not PM me asking for help unless you've been specifically asked to do so. Such PMs will be deleted without answer. (forum rule #6)
Extension for Firefox/Thunderbird: Master Password+    Back/Forward History Tweaks (restartless)    Cookies Manager+    Fit Images (restartless for Thunderbird)

Offline Sunny C.

  • Addicted member
  • ******
  • Posts: 1.806
  • I ♥ 4I
    • View Profile
Re: ACP Image Upload not mandatory / ACP Bilderuploadpflicht ausschalten
« Reply #2 on: September 26, 2010, 10:48:33 PM »
I would add another upload field, which is not a mandatory field. The picture should be in the folder media/catid/teaser.
I have since tried something, but this is a foreign script and therefore does not work.

I made the following:

search in admin images.php
    show_upload_row($lang['image'], "file_".$i"<br /><span class=smalltext>".$lang['allowed_mediatypes_desc'].str_replace(",",", ",$config['allowed_mediatypes'])."</span>");

add after
    show_upload_spezial_row($lang['image'], "file_".$i"<br /><span class=smalltext>".$lang['allowed_mediatypes_desc'].str_replace(",",", ",$config['allowed_mediatypes'])."</span>");

search
  printf("<p>%s</p>\n"$lang['upload_note']);
Add after
//define a maxim size for the uploaded images in Kb
define ("MAX_SIZE","100");

//This function reads the extension of the file. It is used to determine if the file is an image by checking the extension.
function getExtension($str) {
$i strrpos($str,".");
if (!
$i) { return ""; }
$l strlen($str) - $i;
$ext substr($str,$i+1,$l);
return 
$ext;
}

//This variable is used as a flag. The value is initialized with 0 (meaning no error found) and it will be changed to 1 if an errro occures. If the error occures the file will not be uploaded.
$errors=0;
//checks if the form has been submitted
if(isset($_POST['Submit']))
{
//reads the name of the file the user submitted for uploading
$image=$_FILES['image']['name'];
//if it is not empty
if ($image)
{
//get the original name of the file from the clients machine
$filename stripslashes($_FILES['image']['name']);
//get the extension of the file in a lower case format
$extension getExtension($filename);
$extension strtolower($extension);
//if it is not a known extension, we will suppose it is an error and will not upload the file, otherwize we will do more tests
if (($extension != "jpg") && ($extension != "jpeg") && ($extension != "png") && ($extension != "gif"))
{
//print error message
echo '<h1>Unknown extension!</h1>';
$errors=1;
}
else
{
//get the size of the image in bytes
//$_FILES['image']['tmp_name'] is the temporary filename of the file in which the uploaded file was stored on the server
$size=filesize($_FILES['image']['tmp_name']);

//compare the size with the maxim size we defined and print error if bigger
if ($size MAX_SIZE*1024)
{
echo 
'<h1>You have exceeded the size limit!</h1>';
$errors=1;
}

//we will give an unique name, for example the time in unix time format
$image_name=time().'.'.$extension;
//the new name will be containing the full path where will be stored (images folder)
$newname="".MEDIA_PATH."/".$image_row['cat_id']."/teaster/".$image_name;
//we verify if the image has been uploaded, and print error instead
$copied copy($_FILES['image']['tmp_name'], $newname);
if (!
$copied)
{
echo 
'<h1>Copy unsuccessfull!</h1>';
$errors=1;
}}}}

//If no errors registred, print the success message
if(isset($_POST['Submit']) && !$errors)
{
echo 
"<h1>File Uploaded Successfully! Try again!</h1>";
}

The path I have indicated
$newname="".MEDIA_PATH."/".$image_row['cat_id']."/teaster/".$image_name;

search in admin_functions.php
function show_image_row($title$src$border 0$delete_box ""$height 0$width 0) [php]
add above
[php]function show_upload_spezial_row($title$name$extra ""$value "") {
  global 
$error$HTTP_POST_VARS$textinput_size;
  if (isset(
$error[$name]) || isset($error['remote_'.$name])) {
    
$title sprintf("<span class=\"marktext\">%s *</span>"$title);
  }
  if (isset(
$HTTP_POST_VARS['remote_'.$name])/* && $value == ""*/) {
    
$value stripslashes($HTTP_POST_VARS['remote_'.$name]);
  }

  echo 
"<tr class=\"".get_row_bg()."\" valign='top'>\n<td><p class=\"rowtitle\">$title</p></td>\n";
  echo 
"<td><p>";
  echo 
"<b>Upload:</b><br><input type=\"file\" name=\"image\"><br>";
  echo 
$extra."</p></td>\n</tr>\n";
}


It works logically not be wise, but I have just tried and tried.
Basically I just want to be able to upload multiple images at once but by the ACP from

That is probably not possible right? It will only be possible that you can upload more than just a picture.
« Last Edit: September 27, 2010, 02:20:28 PM by Benny »

Offline Sunny C.

  • Addicted member
  • ******
  • Posts: 1.806
  • I ♥ 4I
    • View Profile
Re: ACP Image Upload not mandatory / ACP Bilderuploadpflicht ausschalten
« Reply #3 on: September 30, 2010, 11:58:10 AM »
obody has any idea?
There must be possible to add more upload fields. These fields should not be mandatory. Also, the folder should be always mentioned.

Offline Foxhound

  • Newbie
  • *
  • Posts: 17
    • View Profile
Re: ACP Image Upload not mandatory / ACP Bilderuploadpflicht ausschalten
« Reply #4 on: September 30, 2010, 01:00:38 PM »
thats interesting!
Iam interested too!
are there any suggestions?