4images Forum & Community

4images Modifications / Modifikationen => Mods & Plugins (Releases & Support) => Topic started by: V@no on March 15, 2005, 07:51:01 AM

Title: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: V@no on March 15, 2005, 07:51:01 AM
This is a modified admin/images.php file, that now can copy/move files to the selected category.
new feature added in v2.3: copied/moved files date handling, either keep its original, or use current date.

------- [ Features ] ----------


Legend:

Normal view:
 
(http://img228.exs.cx/img228/1074/images24bz.png)

With "Quick edit":
 
(http://img228.exs.cx/img228/1484/images34th.png)

Since v4.8:

Image search form:


Search results without "quick edit":


Multi-image edit:


------- [ Installation ] ----------

1. Backup admin/images.php file
2. Download attached (#post_attachment) package(s) (note, attached image_config.php file is optional and can be used to store settings. It might not be the same version as images.php, it only getting updated if some settings are changed or added/removed)
3. Unpack them and upload into admin/ dir (replace the old one).


------- [ Configuration ] --------

The following settings are located at admin/image_config.php file:
//--- Settings --------

/*set BIGDIR variable with the name of your "big" folder for "big" images (no trailing slashes!)*/
//define("BIGDIR", "");
define('BIGDIR', "big"); // http://www.4homepages.de/forum/index.php?topic=3236.0

/*set BACKUPDIR variable with the full path to your backup dir (no trailing slashes!)*/
if (!defined('BACKUPDIR'))
{
  define('BACKUPDIR', "");
//  define('BACKUPDIR', "/home/4images/backup"); //example full path on unix systems
//  define('BACKUPDIR', "C:/4images/backup"); //example full path on windows systems
}

$thumbsize = 48; //thumbnail size showed at find image page (will be resized by browser)
$imagesize = 600; //image size showed at edit image page (will be resized by browser)

//quick edit description and keywords field size
$cols = 30; //textarea width
$rows = 4; //textarea height
$target = false; //Open links to edit/delete a single image in a new window? (true or false)

$limitnumber = 25; //number of images per page by default

//Quick Edit options:
$quickedit_checkboxes = 0; //1 = show checkboxes; 0 = show multiline dropdown
$quickedit_checkboxes_height = 200; //when show checkboxes limit height of the column in pixels (0 = disable)
$quickedit_default = array(); //list of image fields that will be selected by default and after search form reset.

//example select image name, description and date by default or when reset search form
/*
$quickedit_default = array(
  "image_name",
  "image_description",
  "image_date",
);
*/
$nextpage_default = 1; //select "Continue next page after save" by default? (1 = yes, 0 = no)

$savedate = 1; //select "save date" on copy/move by default? (1 = yes, 0 = no)

$use_media_template = 1; //use media template at edit image page (useful for non-image files)

$num_newimages_max = 10; //max number of "add new images"

$exif_enable = 1; //use exif? if PHP doesn't support read_exif_data() function, this setting will be ignored and exif support will be disabled.

$image_resize_default = 1; //resize image by default for add new images page (1 = yes, 0 = no)
$thumb_tools_default = 2; //thumbnail tools by default for add new images page (0 = skip, 1 = resize, 2 = create)

$image_resize_type = -1; //image resize type (-1 = use settings, 1 = proportionally, 2 = fixed width, 3 = fixed height)
$image_resize_quality = -1; //image quality (-1 = use settings, 0-100 = quality)
$image_resize_width = -1; //image resize width (-1 = use settings)
$image_resize_height = -1; //image resize height (-1 = use settings)

$thumb_resize_type = -1; //thumbnail resize type (-1 = use settings, 1 = proportionally, 2 = fixed width, 3 = fixed height)
$thumb_resize_quality = -1; //thumbnail quality (-1 = use settings, 0-100 = quality)
$thumb_resize_dimension = -1; //thumbnail resize dimention (-1 = use settings)

$presets_session = 0; //use sessions to store presets? (1 = yes, 0 = no) If no, use $presets_file
$presets_file = ROOT_PATH."data/images_presets.txt"; //file where presets will be stored. Must be writable!

//--- End Settings -------------------



------- [ Addons ] ---------

Select images from lightbox (http://www.4homepages.de/forum/index.php?topic=6759.msg79393#msg79393) (by e-trader_2002)



-------- [ How to use ] ---------

1. Login into ACP (Admin Control Panel).
2. Click on "Edit Images" link on left.
3. Find needed images.
4. Select a category to witch u want the images be copied/moved to
5. Click on "Copy" or "Move" button


-------- [ Version history ] --------
v4.15.7 (2011-01-09)
 - FIXED: search keywords not being saved at quick edit unless image keywords edited
 - FIXED: yet another issue with keywords when adding images

v4.15.6 (2011-01-07)
 - FIXED: another keywords issue from quick edit page...

v4.15.5 (2011-01-06)
 - FIXED: compatibility issue with config file from previous versions.

v4.15.4 (2010-12-18)
 - FIXED: not all template tags generated when use of templates activated

v4.15.3 (2010-12-17)
 - FIXED: keywords not saved properly (hopefully) on multi image edit

v4.15.2 (2010-12-12)
 - FIXED: keywords not saved properly

v4.15.1 (2010-08-14)
 - FIXED: keywords handling for 4images >= v1.7.8

v4.15 (2010-07-17)
 - FIXED: presets filtering
 - FIXED: unable remove autoload from a preset, if no other presets exist
 - ADDED: search in subcategories

v4.14.1 (2008-12-30)
 - Fixed: incorrect loaded preset name displayed when clicked "back" button
 - Fixed: would not let save new preset if "Default" selected in the dropdown
 - Fixed: quick edit category id would not move images
 - Changed: save at quick edit will only update images that had changes
 - Changed: "Media file" and "Thumb file" removed from quick edit options. This is due to possible conflicts with existing filenames

v4.14 (http://www.4homepages.de/forum/index.php?topic=6759.msg129752#msg129752) (28-12-2008)
 - Added: search form presets

v4.13 (http://www.4homepages.de/forum/index.php?topic=6759.msg129698#msg129698) (27-12-2008)
 - Added: image resize, thumbnail resize/create at add/edit image pages
 - Added: edit image link after new image added
 - Added: delete image link at image edit page (next to image name header)
 - Changed: image name field at add images page is no longer required, if left empty filename will be used
 - Changed: return to "add images" page after image(s) successfully added
 - Changed: improved message display after new image(s) added

v4.12 (26-12-2008)
 - Fixed: if error occur while saving an image, it didn't mark the form field where the error was.
 - Added: direct links to media/thumb files at edit image page. (links are at filename)
 - Added: new setting $exif_enable to enable/disable EXIF support. This setting will only work if PHP itself supports EXIF, otherwise it will be ignored and EXIF support will be disabled.

v4.11 (22-11-2008)
- Fixed: Multi image upload adds user_id from last image to all images.
- Fixed: Wrong message showed when error occur while deleting image comments.
- Added: EXIF support, for now only DateTimeOriginal, DateTimeDigitized and DateTime EXIF values used in edit image page and in quick edit.
- Added: When selected "User ID" in quick edit it allowes you enter username instead of user id. To activate this feature you must install this: http://www.4homepages.de/forum/index.php?topic=23387.0

v4.10 (06-11-2008)
- Fixed: incompability with 4images v1.7 - 1.7.1
- Added: max number of new images is configurable via $num_newimages_max variable and can be set manually on the page.

v4.9.2 (13-10-2008)
- Fixed: keywords not being properly saved when used quick edit

v4.9.1 (05-10-2008)
- Fixed: image name and date wasn't updated after save at quick edit page

v4.9 (05-10-2008)
- Added: javascript select all/none in quick edit dropdown box
- Fixed: javascript calendar doesn't work on quick edit page
- Fixed: when used none-english language pressing some buttons would show a blank page
- Fixed: none-english usernames and categories showed incorrectly

v4.8 (04-10-2008)
- Added: color in dropdown menu if it will affect search results
- Added: at "batch image edit" page keywords field will show unique keywords from all selected images
- Added: quick calendar for date inputs at quick edit and multi edit pages.
- Changed: "quick edit" is rewriten, now any image fields can be edited
- Changed: after save "batch image edit" shows result above search form (used to be results with a link to search form)
- Changed: layout at search form.
- Fixed: at batch image edit page fields showed the searched data
- Removed: $editname, $editdescription, $editkeywords, $editdate variables no longer used, $quickedit_default array used instead.

v4.7 (22-09-2008)
- Added dropdown options for more precise searches
- Checkboxes for additional fiels replaced by dropdown menus
- Added highlited entire row for images with missing files (additional to a red "!")
- $big and $backup variables no longer used, instead BIGDIR and BACKUPDIR constant used.
- Added new feature: use media template at edit image page (useful for non-images media files). Controlled by $use_media_template variable
- Fixed php warning message showed when replaced remote image with an uploaded one
- Fixed "reset" button didn't work when $savesearchform = 0 and pressed "back" button after search.
- Fixed old keywords references not being removed from database when saved via quick edit

v4.6 (16-09-2008)
- Internal configuration now moved into separate file admin/images_config.php
- Added support for easier show/hide additional image fields via admin/images_config.php
- Fixed all additional image fields checkboxes get selected after pressing "next page" button

v4.5 (16-09-2008)
- Added experemental support for additional image fields on search form

v4.4 (16-09-2008)
- Added thumbnails to multi-image edit page
- Now if only one image selected and pressed edit button, a normal image edit page opens
- Fixed displaying missing thumbnails
- Fixed progress window popup wouldn't close after save at multi-image edit.

v4.3 (16-09-2008)
- Added link to image details in edit image page and after new image added
- Added error message if trying edit non-existent image
- Image preview size is now can be changed via $imagesize variable
- Date column at search images page now shows image date and time
- Fixed uploaded image file not being deleted if something went wrong and image was not updated/saved in the database
- Fixed cat image being overwritten by moved in image

v4.2 (14-09-2008)
- "Reset" button will now reset form to default
- Added "internal" setting to enable/disable save search form in session

v4.1 (14-09-2008)
- "Results per page" number and selection of dropdown menus and radio buttons are now restored from last search.
- Fixed moving a category image to a new category not being removed from old category
- Fixed language misspellings

v4.0.3 (13-09-2008)
- Minor layout tweaks
- Fixed some deutsch translation incompatibilities.

v4.0.2 (13-09-2008)
- Fixed image doesn't get deleted from old category when category changed at "normal" edit page
- Fixed "big" and "backup" image not being deleted from old category when category changed at "normal" edit image page
- Fixed white page with non-english language and pressed "change owner" button
- Fixed "0" showed in some search fields when pressed back button

v4.0.1 (13-09-2008)
- Fixed "big" image not being moved if changed category at "normal" edit image page.
- Fully multilingual support. Included english and deutsch translation
- More settings on top of the file (see "configuration" above)
- Some minor visual changes on page after image search

v4.0 (22-02-2008) by ivan (http://www.4homepages.de/forum/index.php?topic=20501.0)

v3.7.3 (10-08-2006)
- Fixed a minor bug on line 214

v3.7.2 (16-05-2005)
- Fixed thumbnails with the same name being overwritten on copy/move (more info here (http://www.4homepages.de/forum/index.php?topic=6759.msg36455#msg36455))

v3.7.1 (01-04-2005)
- Fixed little bug that would not let remove "Category image"

v3.7 (31-03-2005) (more info here (http://www.4homepages.de/forum/index.php?topic=6759.msg31565#msg31565))
- Added button to change owner of the selected images
- Added support for images in backup directory
- fixed few minor bugs
- moved most of the messages into appropriate $lang array, so now its easier translate to other languages

v3.6 (11-02-2005)
- Added option to open links to edit/delete a single image in a new window (edit setting inside the file to disable it)

v3.5.1 (06-12-2004)
-Fixed a minor bug, that could delete images in "big" folder when images deleted, even though the "big" folder wasnt set.

v3.5
-Added support for Category Image mod

v3.4.1
-Fixed quick edit date problem

v3.4
-Fixed minor bug that produced error messages when on quick edit save

v3.3
-Added search active/inactive images

v3.2
-Added new option "Continue on next page" after quick edit save

v3.1
-Added new option in "Quick edit": edit date

v3
-Added new option: "Quick edit"
It let u edit image's name, description and keywords in the search results.

v2.5
-Fixed overwriting files with same name

v2.4
-Fixed error with a missing function
-Added new feature: batch images edit. It let edit description and keywords for selected images.
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.6
Post by: ascanio on March 15, 2005, 08:05:47 AM
woooow I have not seen this MOD before the hack and it is a very useful one!!  :) :)
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.6
Post by: Ach-Iem on March 15, 2005, 08:43:30 AM
I also didn't see that MOD!
Great work!

Ach-Iem

PS: may be a silly question: but where do i find the link to download?
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.6
Post by: V@no on March 15, 2005, 08:50:24 AM
PS: may be a silly question: but where do i find the link to download?
download what? the mod? its in the instructions part ;)
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.6
Post by: Ach-Iem on March 15, 2005, 08:54:28 AM
Ok; it is early in the morning; didn't see the Link  :oops: :oops:

Ach-iem
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.6
Post by: mawenzi on March 15, 2005, 01:44:26 PM
Thank you V@no for this great tool ...  :D 
It works absolutely perfectly and is very efficient.

mawenzi
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.6
Post by: ascanio on March 15, 2005, 03:46:15 PM
Hi V@no I love this MOD but I have a question :?: if I wanna change the person who upload the picture of all the pictures that I select at once ... Can I do it with this MOD or this MOD does not have that feature ... I think it would be very useful too because when I want to do that I have to download the pcitures that I wnat to edit delet them from the server and then upload them and change the user .... I don't know a faster way  :oops: :oops: :oops:
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.6
Post by: V@no on March 16, 2005, 12:51:03 AM
its a good idea, I'll see what I can do about it ;)
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.6
Post by: ascanio on March 16, 2005, 02:01:31 AM
Thanks V@no
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.6
Post by: Amosnet on March 16, 2005, 01:26:18 PM
How can i activate the: Quick Edit  :?: :?: :?:
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.6
Post by: V@no on March 16, 2005, 02:35:32 PM
How can i activate the: Quick Edit :?: :?: :?:
on the main page where u enter the search createria, at the bottom there are 4 options.
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.6
Post by: Amosnet on March 16, 2005, 02:38:39 PM
Thank you  :oops:

i found a error, one Checkbox is called: Keyowords
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.6
Post by: V@no on March 16, 2005, 02:41:37 PM
Thank you :oops:

i found a error, one Checkbox is called: Keyowords
I think this misstake in your lang files ;)
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.6
Post by: Amosnet on March 16, 2005, 02:43:36 PM
OK!

Thank you, you have done a realy good job.
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.6
Post by: marcus_s on March 16, 2005, 07:41:50 PM
great great work!! :D
gonna try it tommorrow.
if it´s running - 4images will be nearly perfect!!
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.6
Post by: marcus_s on March 17, 2005, 11:17:43 AM
yea! up & running. good job mate!
 :D
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.6
Post by: sweetmisery29f on March 17, 2005, 01:02:53 PM
 :D
Thank you so much! Works great!

One more thing... would it be possible to add a "Activate/Deactivate" radio button in the Quick edit list?  :roll:

Sweet
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.6
Post by: larissa on March 17, 2005, 11:09:12 PM
Hi v@no
would it be possible to add all fields define in db_field_definitions.php I mean iclude all $additional_image_fields in the QUICK EDIT Option list and course the possbility to Edit and SAVE them IT WOULD BE  TO MUCHHHHHH !!!!!
Thanks a lot Larissa :roll:
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.6
Post by: ascanio on April 01, 2005, 02:24:02 AM
Hi V@no I love this MOD but I have a question :?: if I wanna change the person who upload the picture of all the pictures that I select at once ... Can I do it with this MOD or this MOD does not have that feature ... I think it would be very useful too because when I want to do that I have to download the pcitures that I wnat to edit delet them from the server and then upload them and change the user .... I don't know a faster way  :oops: :oops: :oops:
hi V@no! have u done anything? This would be very useful  :)
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7
Post by: V@no on April 01, 2005, 05:41:07 AM
its added in v3.7

Also, in v3.7 added support for backup directory for this mod:
http://www.4homepages.de/forum/index.php?topic=4754.0
and
http://www.4homepages.de/forum/index.php?topic=4754.msg29534#msg29534
(if u've installed the code from second link, then u dont need edit images.php to active it, it should automaticaly know what is your backup directory)
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7
Post by: martrix on April 01, 2005, 09:36:14 AM
Quote
- Added button to change owner of the selected images

That's very nice - ther "change-owner" feature is one thing I was also missing and 'till today doing in phpmyadmin  :D
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.1
Post by: vanish on May 16, 2005, 02:24:30 PM
When I move image to another category, which contains the image with same name (example has one-digit name), I have this problem:
Destination image is overwrited, thumbnail is from destination image.
I have tried move image with letters name ; has following - image not overwrited, but thumbnails is equal  :(
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.1
Post by: V@no on May 16, 2005, 02:51:59 PM
fixed in v3.7.2
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: vanish on May 19, 2005, 12:51:38 AM
When I delete an image, comments deleted, but user comments counter don't updated  :(
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: V@no on May 19, 2005, 12:55:08 AM
When I delete an image, comments deleted, but user comments counter don't updated :(
oh, for crying out loud stop looking for bugs! :lol: hehe j/k ;)
I'll look into it later. Thanks for reporting it.
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7
Post by: suprdave71 on May 23, 2005, 12:23:19 AM
Quote
- Added button to change owner of the selected images

That's very nice - ther "change-owner" feature is one thing I was also missing and 'till today doing in phpmyadmin  :D


How do you do it in phpmyadmin? The username I want to change is "guest", and the mod isn't set up to let me do that (or at least, I can't figure out how to do it).

Or maybe I should ask...

V@no! Can I change all of the images with username "guest" to my own username? The database got screwed up a long time ago (via phpBB2 integration) and I've not been able to change half of my pictures from guest to "me" ever since. I'm hoping this mod is what I need!

Thanks, dude...
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: V@no on May 23, 2005, 12:28:55 AM
I'm not sure why u cant...
u should filter your search by user id (-1) and then select needed images, chose your name from the dropdown menu and click "change owner"
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: suprdave71 on May 23, 2005, 03:34:47 AM
I'm not sure why u cant...
u should filter your search by user id (-1) and then select needed images, chose your name from the dropdown menu and click "change owner"

I bow before the ease with which you understand and instruct us.

Thanks a mllion!
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: vanish on May 23, 2005, 08:46:33 AM
May be quickedit code (batch procedure) can be like this:
Code: [Select]
  foreach ($image_ids as $key => $val) {
$set = "";
    $image_keywords[$key] = preg_replace("/[\n\r]/is", " ", $image_keywords[$key]);
    $image_keywords[$key] = str_replace(","," ",$image_keywords[$key]);
    $image_keywords[$key] = ereg_replace("( ){2,}", " ", $image_keywords[$key]);
if ($editname && !empty($image_name[$key])) { $set.= " image_name = '"; $set.= trim($image_name[$key]); $set.= "'";};
if ($editdescription) { $set.= ", image_description = '"; $set.= trim($image_description[$key]); $set.= "'";};
if ($editkeywords) { $set.= ", image_keywords = '"; $set.= trim($image_keywords[$key]); $set.= "'";};
if ($editdate) { $set.= ", image_date = UNIX_TIMESTAMP('".$image_date[$key]."')";};
    $sql = "UPDATE ".IMAGES_TABLE."
            SET".trim($set, ",")."
            WHERE image_id = $val";
    $result = $site_db->query($sql);
    if ($editkeywords) {
      $search_words = array();
      foreach ($search_match_fields as $image_column => $match_column) {
        $image_col = $$image_column;
        if (isset($image_col[$key])) {
          $search_words[$image_column] = stripslashes($image_col[$key]);
        }
      }
      add_searchwords($val, $search_words);
    }
  }

Because your code insert slashes in image name if it contains ".
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.1
Post by: Anto on July 21, 2005, 08:11:47 PM
fixed in v3.7.2
Hi V@no,
I'm Anto from Italy and I'm sorry for my bad english language...
I'm trying your modified admin/images.php and it's greet...but maybe there is a bug on updating the keywords on quick edit...
I'm trying to edit some images keywords deleting on some images all keywords and later I push save button, but if i try to search only by keyword using a past deleted keyword, the images I deleted all keywords showing on results...If I edit in normal mode (not quick edit) the some images it's OK.
Can you help me please?
Thanks
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: Anto on July 21, 2005, 08:28:04 PM
Sorry V@no,
is it possible to add to quick edit images the hits, rating, numbers of rating and activation  items?
Thanks
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: V@no on July 22, 2005, 12:03:55 AM
I'm trying your modified admin/images.php and it's greet...but maybe there is a bug on updating the keywords on quick edit...
I'm trying to edit some images keywords deleting on some images all keywords and later I push save button, but if i try to search only by keyword using a past deleted keyword, the images I deleted all keywords showing on results...If I edit in normal mode (not quick edit) the some images it's OK.
Can you help me please?
Thanks

sorry, I didnt understand what is the problem...:oops:

quick edit will erase any previously entered keywords for the edited images and insert only the ones entered through quick edit form.
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: Anto on July 22, 2005, 09:51:39 AM
I'm trying your modified admin/images.php and it's greet...but maybe there is a bug on updating the keywords on quick edit...
I'm trying to edit some images keywords deleting on some images all keywords and later I push save button, but if i try to search only by keyword using a past deleted keyword, the images I deleted all keywords showing on results...If I edit in normal mode (not quick edit) the some images it's OK.
Can you help me please?
Thanks

sorry, I didnt understand what is the problem...:oops:

quick edit will erase any previously entered keywords for the edited images and insert only the ones entered through quick edit form.
I try to explain better...
for wxample:
i've 10 images on database and all 10 images have 5 keywords...2 of this keywords are "pretty girl"...
if i try to search now only by keywords using "pretty girl" all 10 images will be shown...
then i prefer to delete all keywords from 3 images of all 10 images:
- 1. if I use quick edit to delete all keywors on keyword fild for each image and save...if i try to search the phrase "pretty girl" it will shown always all 10 images...
- 2. if i delete usind normal edit each image deleting all keyword on keyword fild ... if i try to search the phrase "pretty girl" it will shown only 7 images, the images deleted keywords no...
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.6
Post by: hinzwiekunz on September 03, 2005, 11:29:58 AM
First, these mods are excellent, V@no, thanks.

Hi v@no
would it be possible to add all fields define in db_field_definitions.php I mean iclude all $additional_image_fields in the QUICK EDIT Option list and course the possbility to Edit and SAVE them IT WOULD BE  TO MUCHHHHHH !!!!!
Thanks a lot Larissa :roll:

I also want to try to get a new radio-field in the quick-edit-window. When i search new images in ACP, its there, but if i want to change old images I must edit each image for itself...
ciao,
hinzwiekunz
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: soapycats on October 15, 2005, 07:51:08 AM
Link to site to download the MOD (search list):
http://mirror2.vano.org/

Link to actual download:
http://mirror2.vano.org/index.php?action=dl&id=41

keep up the good work,
michelle
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: ewolff on October 20, 2005, 12:09:34 PM
@vano

great job ! but is it possible to change a other db-field of a picture. For instance. I use the shop mod. I want to change the Price-field. It's possible to integrate this in your mod? Thanks


Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: hyde101 on October 24, 2005, 04:21:04 PM
Very useful mod, just wanted to say Thank You! Must be standart on 4images! :)
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: ripat on December 13, 2005, 10:19:30 AM
V@no,

Excellent job!

Extremely usefull as it fixes what I considered as a weak point.

I'll have a close look to your other mod's!
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: V@no on December 13, 2005, 02:37:22 PM
Hello, this mod is really great

Have still a small one weakens mod, namely becomes big folder if I on is a matter extinguishing, not remotely.
What must I do to extinguish big folder with this mod?
Are files stays in big folder? if not, I see no problem...
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: Acidgod on December 13, 2005, 02:48:29 PM
i think he will delete the folder... but why? (o:
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: V@no on December 13, 2005, 03:30:31 PM
if so, then categories.php should be modified to delete "big" folder and not images.php
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: Acidgod on December 13, 2005, 04:57:51 PM
Ist doch klar, Du musst die Kategorie auch ganz normal löschen sonst wird das nichts... (o:

Weil nicht jeder will die KAtegorie löschen nur weil er die Bilder verschiebt...
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: Acidgod on December 13, 2005, 05:04:39 PM
Tja und wieso bitte?

Reicht doch wenn man die Kategorie löscht und dann der Ordner mitgelöscht wird... (o:

Des weiteren checkt das Script ja nicht ob noch Bilder im Ordner sind, wie soll es also dann den big Ordner löschen?
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: abda53bd on January 25, 2006, 08:46:46 PM
awesome v@no!!

just a quick typo

Quote
show_radio_row("Keyowrds", "editkeywords", 0);

should be
Quote
show_radio_row("Keywords", "editkeywords", 0);
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: TheOracle on January 25, 2006, 08:47:51 PM
Quote

show_radio_row("Keywords", "editkeywords", 0);


How about :

Quote

show_radio_row($lang["keywords"], "editkeywords", 0);


period ? ! ;)
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: abda53bd on January 27, 2006, 08:12:31 AM
kind of off topic...

but is it slower when you use language files, compared to hardcoding the words in the script?
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: V@no on January 27, 2006, 02:35:07 PM
If you could notice the difference in the speed with "naked eye", then you probably would in Guinness book already ;)
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: abda53bd on January 28, 2006, 07:15:40 PM
If you could notice the difference in the speed with "naked eye", then you probably would in Guinness book already ;)

haha thanks v@no.. oh im not sure if you still need it, but i still have your ftp on my server with some of your files you were mirroring.. pm me and let me know either way!
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: karimun on March 10, 2006, 06:18:17 PM
I have a big problem with my description fields when I have HTML code inside of it:

I choose ´Quick edit --> Descriptions --> Yes´. My images with descriptions containing HTML code get listed.
And now when I press the save-button all my html code gets slashed even w/o having personally modified that field.

Example:
What before was color="#FF0000" is now color=\"#FF0000\"
Another strange thing is that those slashes are not visible while I get the discription displayed.

Clear that links and layout are broken now.
This does not happen when I choose to edit the description w/o using the MOD features and only like this I can put back the correct code - one by one.

I have read somewhere else that this might come from an incorrect or missing ´stripslashes()´ function.
Please help. Without this MOD life gets hard ..
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: V@no on March 11, 2006, 12:19:14 AM
And what about the original images.php file? does it work properly?
Or better yet, what if you edit one image (find an image, and click edit link)?
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.6
Post by: Lunique on March 11, 2006, 01:47:44 PM
First, these mods are excellent, V@no, thanks.

Hi v@no
would it be possible to add all fields define in db_field_definitions.php I mean iclude all $additional_image_fields in the QUICK EDIT Option list and course the possbility to Edit and SAVE them IT WOULD BE  TO MUCHHHHHH !!!!!
Thanks a lot Larissa :roll:

I also want to try to get a new radio-field in the quick-edit-window. When i search new images in ACP, its there, but if i want to change old images I must edit each image for itself...
ciao,
hinzwiekunz

I'm also waiting for a way to do this! Maybe you can explain it on one example how to add "quick edit" for an additional field?
Would be great!
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: karimun on March 11, 2006, 04:35:32 PM
Quote
And what about the original images.php file? does it work properly?
Or better yet, what if you edit one image (find an image, and click edit link)?

... Yes, if I edit only a single image it works properly: with your images.php and the original one.
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: karimun on March 15, 2006, 12:55:08 PM
I need to bring up again my problem described above:

Anybody any idea why my html code inside of the description-fields gets slashed when I use this MODs batch function?
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: novw on March 21, 2006, 09:52:49 AM
hm... the "file upload in progress" window opens and refuses to close when it is finished ? (using 4images 1.7.2) ? Superb add-on when you are adding 1000's of pics in a run ! Thank you !
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: V@no on March 21, 2006, 02:34:49 PM
usualy clear cookies and internet temp files, solves this problem.
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: mentally on April 14, 2006, 07:07:09 PM
hey great mod!

but is it possible to get this to work for validate images also???

because lots of people upload images in the wrong category and i have to go edit them one by one to move them...  8O

Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: Bodyworks on April 16, 2006, 12:20:28 AM
This is really a great MOD.
Thanks to V@no.

Regards
Frank
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: mentally on April 19, 2006, 08:00:28 PM
is it possible to get this to work for validate images also???

because lots of people upload images in the wrong category and i have to go edit them one by one to move them
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: zaisk on April 21, 2006, 01:45:32 PM
Thank you Vano, Very Great MOD !

But this mod can be helpful for me just if I add extra db fields in quick edit.

Please help me to add more 2 fields in quick editting.

Thank you.
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: mentally on May 31, 2006, 07:00:44 PM
anyone?
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: V@no on June 01, 2006, 12:20:22 AM
anyone?
Your question is not related to this mod, its rather a separate mod request.
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: pixus.ch on June 22, 2006, 02:33:36 PM
A really great and useful mod, thank v@no.

As i am reviewing my keywords in my gallery i am using your mod to change the keywords.
the problem is, that when i delete a keyword and search for it, the image still appears even though the keyword
doesnt show. if i open the same image via the standard edit button and simply save it, the image doesnt show up.

i am using 1.7.2.
any idea?
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: Lunique on June 22, 2006, 02:39:26 PM
just use this plugin: http://4homepages.de/forum/index.php?topic=1096.0
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: pixus.ch on June 22, 2006, 04:42:25 PM
thanks lunique, works perfectly!
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: BitBull on July 25, 2006, 11:04:58 AM
Hi v@no,

I really like that MOD! hot work!  :twisted:

hmmm....  :? ... but as zaisk already mentioned ...

But this mod can be helpful for me just if I add extra db fields in quick edit.

Please help me to add more 2 fields in quick editting.

... I got some additional db-fields as well and the batch-editing is just a real help when it supports the editing of these extra fields as well. 

I am watching this thread now for a while, but you haven't mentioned anything to this point so far ...  :|

From your point of view, is there a way to edit the extra db-fileds within your MOD?  ... are you eventually working on that improvement already?

Don't get me wrong, please - no pressure at all!  :wink: ... just let us know whether you are planning to improve your MOD (so we can hope for help) or not.

Thanks a lot v@no!  :)

best regards

BitBull
__________

www.noether.net/publik/ (http://www.noether.net/publik/)

Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: fabiomeneses on August 09, 2006, 04:43:56 PM
Hello Everyone,

I Have installed the Batch Edit images MOD, and its is really usefull, thanks to the developer, but a have noted one thing that can be improved, and will be very helpfull.
When i select more than one image to edit, the script open only one page to edit the Description, Keywords, and Date, for the selected images. So when i try to edit "multiple" images keywords, then the actually assigned keywords for the refered words, are deleted, to give space for the new words. Have any manner to sum the keywords ? I want to select some images and put the keyword entered for every image selected, in a sum fashion, without delete the existing keywords.

I Think this will be very useful ... actually i use the Extensis Portfolio 8 to edit my keywords, but when the images are in the server, will be good some batch editing modes !

Thanks again, for the developers that help us to adjust the portal for our needs !!! 

Regards,

- Frosa
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: sajwal on August 10, 2006, 04:45:57 AM
First of All, I thank with my heart to V@no for publishing this mode  :P :P

and now i feel a little nervous as nobody encountered this problem anywhere

when i move my image from one cat to other the image is moved nodoubt ... but shows me this error : (local as well as host server)

Notice: Undefined variable: image_row in C:\wamp\www\impgal\4images1.7.3\4images\admin\images.php on line 214
Image moved 54 (in category ID: 4 to 5)

am i clashing with anyof my mod?

Pls. help
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: V@no on August 10, 2006, 06:49:07 AM
hmmm...strange nobody ever reported this...yes, its a bug, fixed in v3.7.3
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.2
Post by: sajwal on August 10, 2006, 10:17:28 AM
hmmm...strange nobody ever reported this...yes, its a bug, fixed in v3.7.3
I AM COMPLETELY ADMIT YOU A GENIUS V@no... just to settle my curosity ... i wanted to ask as why people did not get this error (not to make you sarcastic  :wink:) but only me....is there something missing in my server settings? ... or is it a real miracle for a newbie like me reporting a second error at a stretch !!!  :P
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: V@no on August 10, 2006, 02:22:11 PM
I guess, your server does not accept error_reporting command, or its altered in your gallery (in global.php)
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: winti on September 14, 2006, 02:47:56 PM
Hi V@no,

Wanted to download your great mod, but apparently your site is down ??

Thanks

Winti
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: babe on September 14, 2006, 06:33:04 PM
What exactly I should edit in the images.php to make it show the original media files on the results page, instead of the thumbs?

And can I turn the "change owner" dropdown box (which takes annoyingly long to load because of the many members) into a text input field so I can just enter the name of an existing member?

Super mod, been using it for a long time!
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: robtastik on September 14, 2006, 08:45:37 PM
I would like to download this mod but the link is not working. Can anyone help.
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: V@no on September 15, 2006, 12:40:57 AM
Sorry about that, guys. I'm totaly reinstalling OS on the server, so it might take a few more days or so...
I've attached the file to the original post.
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: klawitter on September 21, 2006, 02:55:21 PM
Dear Vano,
I have no idea where to get this mod. Can you please attach the MOD to this reply. I would like to put it on our site !
Tnaks for your time and best wishes from germany
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: V@no on September 21, 2006, 03:03:41 PM
its already attached to the original post...
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: klawitter on September 21, 2006, 03:08:08 PM
Sorry Vano, to bother you again. Being an absolute beginner I have no idea where to find the attached MOD . When I click on
2. Download this file.
all I get is an error message !
Any more help would be appreciated.
Tanks and best wishes from germany
Werner
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: V@no on September 21, 2006, 03:25:17 PM
scroll down the first message (on first page) untill you hit my signature. The attached file is above it. All attachments are placed at the end of the reply.

(http://img246.imageshack.us/img246/7042/fromvno20060921092612os4.png)
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: klawitter on September 21, 2006, 03:32:11 PM
WOW, what a service ! I found it ! :-) Thanks for your help.
Dumb me should have found it by myself, now that I see it.
Well, blame it on my age.
Thanks again, i really appreciate it.
Best wishes from germany
Werner
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: paburmester on September 23, 2006, 03:59:42 AM
this mod works in 1.7.3 ??
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: V@no on September 23, 2006, 04:11:31 AM
yes
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: paburmester on September 23, 2006, 05:10:12 AM
ok, thanks men..
installing.........................
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: e-trader_2002 on September 23, 2006, 12:54:42 PM
Hi,

I'm using this clever and timesaving MOD quite often to move images among categories. It is ok if you can select the images via the provided search-fields.
But as a new frequent task I have to move a lot of images from different categories into a single target category. But the problem is that those images don't fit any simple, single search-condition.
I would like to gather all the images manually into the lightbox for transfer. So I needed three things as a little ADD-ON to this MOD:

==> Don't forget to backup every module before applying changes !!!

#1: A radio button saying "Process images in lightbox only".

To have this insert the red code-fragment into \admin\images.php

Quote
  show_input_row($lang['field_hits_upper'], "hitsupper", "", $textinput_size);
  show_input_row($lang['field_hits_lower'], "hitslower", "", $textinput_size);
#
#   [MOD] Process images in lightbox only <Start Part #1>
#
   show_radio_row($lang['lightbox_only'], "lightbox_only", $lightbox_only);
#
#   [MOD] Process images in lightbox only <END Part #1>
#
  show_table_separator($lang['sort_options'], 2);

#2: The code performing what the radio button promises:

To have this insert the red code-fragments also into \admin\images.php

Quote
  $limitnumber = (isset($HTTP_POST_VARS['limitnumber'])) ? trim($HTTP_POST_VARS['limitnumber']) : 1;
  if (!$limitnumber) {
    $limitnumber = 1;
  }
 
#
#   [MOD] Process images in lightbox only <Start Part #2>
#
  $lightbox_only = (isset($HTTP_POST_VARS['lightbox_only'])) ? trim($HTTP_POST_VARS['lightbox_only']) : 0;
  if (!$lightbox_only) {
    $lightbox_only = 0;
  }
#
#   [MOD] Process images in lightbox only <End Part #2>
#

  if (isset($HTTP_GET_VARS['direction']) || isset($HTTP_POST_VARS['direction'])) {
    $direction = (isset($HTTP_GET_VARS['direction'])) ? trim($HTTP_GET_VARS['direction']) : trim($HTTP_POST_VARS['direction']);
  }
  else {
    $direction = "ASC";
  }

Quote
  if ($nextpage && !$nextpageabort) {
    $limitstart = $limitstart + $limitnumber;
  }
#
#   [MOD] Process images in lightbox only <Start Part #3>
#
     if ($lightbox_only == 1)
     {
         if (!empty($user_info['lightbox_image_ids']))  {
           $image_id_sql = str_replace(" ", ", ", trim($user_info['lightbox_image_ids']));
         } else {
           $image_id_sql = "0";
         }
        $sql = "SELECT COUNT(*) AS images
                FROM (".IMAGES_TABLE." i,  ".CATEGORIES_TABLE." c)
                LEFT JOIN ".USERS_TABLE." u ON (".get_user_table_field("u.", "user_id")." = i.user_id) 
                WHERE image_active = 1 AND image_id IN ($image_id_sql) AND c.cat_id = i.cat_id AND i.cat_id NOT IN (".get_auth_cat_sql("auth_viewcat", "NOTIN").")";
        $countimages = $site_db->query_firstrow($sql);
     } else {

        $sql = "SELECT COUNT(*) AS images
                FROM ".IMAGES_TABLE." i
                LEFT JOIN ".USERS_TABLE." u ON (".get_user_table_field("u.", "user_id")." = i.user_id)
                WHERE $condition";
        $countimages = $site_db->query_firstrow($sql);
     }
#
#   [MOD] Process images in lightbox only <End Part #3>
#

  $limitfinish = $limitstart + $limitnumber;

Quote
    echo "<td class=\"tableseparator\">".$lang['field_category']."</td>\n<td class=\"tableseparator\">".$lang['field_username']."</td>\n<td class=\"tableseparator\">".$lang['field_date']."</td>\n<td class=\"tableseparator\">".$lang['options']."</td>\n</tr>\n";

#
#   [MOD] Process images in lightbox only <Start Part #4>
#
     if ($lightbox_only == 1)
     {
         if (!empty($user_info['lightbox_image_ids']))  {
           $image_id_sql = str_replace(" ", ", ", trim($user_info['lightbox_image_ids']));
         } else {
           $image_id_sql = "0";
         }
       $sql = "SELECT i.image_id, i.cat_id, i.user_id, i.image_active, i.image_name, i.image_media_file, i.image_thumb_file, i.image_date, i.image_description, i.image_keywords".get_user_table_field(", u.", "user_name")."
                FROM (".IMAGES_TABLE." i,  ".CATEGORIES_TABLE." c)
                LEFT JOIN ".USERS_TABLE." u ON (".get_user_table_field("u.", "user_id")." = i.user_id) 
                WHERE image_active = 1 AND image_id IN ($image_id_sql) AND c.cat_id = i.cat_id AND i.cat_id NOT IN (".get_auth_cat_sql("auth_viewcat", "NOTIN").")
                ORDER BY $orderby $direction
                LIMIT ".(($limitstart) ? $limitstart-1 : 0).", $limitnumber";
        $result = $site_db->query($sql);
     }
     else
     {

       $sql = "SELECT i.image_id, i.cat_id, i.user_id, i.image_name, i.image_media_file, i.image_thumb_file, i.image_date, i.image_description, i.image_keywords".get_user_table_field(", u.", "user_name")."
               FROM ".IMAGES_TABLE." i
               LEFT JOIN ".USERS_TABLE." u ON (".get_user_table_field("u.", "user_id")." = i.user_id)
               WHERE $condition
               ORDER BY $orderby $direction
               LIMIT ".(($limitstart) ? $limitstart-1 : 0).", $limitnumber";
       $result = $site_db->query($sql);
     }
#
#   [MOD] Process images in lightbox only <END Part #4>
#

    $i = 0;
    while ($image_row = $site_db->fetch_array($result)) {


Quote
    show_hidden_input("hitsupper", $hitsupper);
    show_hidden_input("hitslower", $hitslower);
#
#   [MOD] Process images in lightbox only <Start Part #5>
#
    show_hidden_input("lightbox_only", $lightbox_only);
#
#   [MOD] Process images in lightbox only <End Part #5>
#

    show_hidden_input("orderby", $orderby, 1);

#3: The text displayed by the radio button:

To have this insert  the red code-fragment into \lang\deutsch\admin.php ...

Quote
$lang['field_hits_upper'] = "Anzahl Hits größer als";
$lang['field_hits_lower'] = "Anzahl Hits kleiner als";
$lang['lightbox_only'] = "Nur Bilder aus Leuchtkasten bearbeiten";

//-----------------------------------------------------
//--- Navigation --------------------------------------
//-----------------------------------------------------

... and into \lang\english\admin.php ...

Quote
$lang['field_hits_upper'] = "Hits higher than";
$lang['field_hits_lower'] = "Hits lower than";
$lang['lightbox_only'] = "Process images in lightbox only";

//-----------------------------------------------------
//--- Navigation --------------------------------------
//-----------------------------------------------------

That's all folks. I hope my ADD-ON will be usefull to somebody.

e-trader_2002
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: V@no on September 23, 2006, 06:16:19 PM
nice! thanks for sharing :D
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: Lunique on September 28, 2006, 06:14:27 AM
Das Problem liegt nicht an diesem Mod, Lösung bietet dir http://4homepages.de/forum/index.php?topic=1096.0

Gruß, Luna
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: 2ndzenith on September 29, 2006, 09:41:08 PM
I have this mod working on version 1.7.3. I have added a few mods including multi-upload, auto image resize, avatar, alternate directory for download.

Right now when an image is uploaded it stores:
1. A scaled version within /data/media/{folder number}/example.jpg
2. The original in /data/media/{folder number}/big/example.jpg

When I go to delete the photo it removes the scaled version but leaves the file within the /big folder. How can I have it remove it in both places when deleted from the members detail page and also the control panel?
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: cpuswe on October 09, 2006, 11:39:42 AM
This mod has saved me alot of time in the short period i have used 4images, thanks!

...but, i have a question. Where do you define the size of the text input field for "Image name"? I have rather long Image names and would like to edit the whole name without scrolling. Today its 20 chars i think.

Possible?

/Thomas
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: desperate_housewif on October 29, 2006, 09:41:19 AM
Ich habe die image.php getauscht. Offline funktioniert es wunderbar. In meiner Online Datenbank erscheint folgender Fehler:
I exchanged image.php. Off-line functions it marvelously. In my on-line data base the following error appears:

Quote
I exchanged image.php. Off-line functions it marvelously. In my on-line data base the following error appears:

Dies ist die Zeile / this is the line:

Quote
show_hidden_input("old_file_name", $image_row['image_media_file']);

Was muß ich ändern?   
What do I have to change?
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: Nicky on October 29, 2006, 02:55:39 PM
thx V@no,
working fine for me!
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: __G__ on October 30, 2006, 06:14:46 AM
gave this error on my 1.7.4 Parse error: syntax error, unexpected $end in /home3/mehsus/public_html/admin/images.php on line 1732
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3 - Fehlerhafte Ausgabe ?
Post by: Helimb on November 01, 2006, 05:07:13 PM
Hallo zusammen,

Ich finde diesen MOD wirklich gut und notwendig;
folgendes ist mir beim Testen aber aufgefallen:

ich habe 107 Fotos suchen lassen.
Die erste Ergebnisseite (Anzahl 50) wird korrekt dargestellt (Reihenfolge der Fotos)
Die zweite Seite ist fehlerhaft:

1. Seite / letztes Foto: DSCF0153
2. Seite / erstes Foto : leider nicht DSCF0154 >> sondern: DSCF0161

Die Reihenfolge stimmt irgendwie nicht;
die Gesamtanzahl ist ok.

Softwarefehler oder Anwenderfehler ?

Kann man die Ausgabe eigentlich irgendwie konfigurieren ?
Hab ich nicht ganz verstanden...

mfg
aus Hamburg
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: unite on November 01, 2006, 09:09:39 PM
Fantastic mod.... WOW this saves me time.
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: Fireball22 on November 09, 2006, 03:17:28 PM
Leider funktioniert die "Change Owner" Funktion nicht.
Ich bekomme nach anklicken der Check-Box und Auswählen des neuen Eigentümers nur eine weiße Seite zurück und danach aber keien Änderungen.

Was kann ich machnen?

Fireball22
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: Acidgod on November 09, 2006, 03:33:06 PM
Ändere die folgende Zeile:

if ($action == $lang['changeowner'] || $action == "Changeowner") {

Einfach das C GROß schreiben....
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: Fireball22 on November 09, 2006, 03:58:53 PM
Vielen Dank, funktioniert perfekt!

Fireball22
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: mikevid on November 09, 2006, 08:30:02 PM
I have this mod installed and working great on 1.7.3.  Very nice, Thank you.

I have one problem.  Below is an image before the new images.php please notice the " ' " in the Image Name:

(http://i70.photobucket.com/albums/i103/mikevid/Image10.jpg)

After installing the new images.php it looks like this:

(http://i70.photobucket.com/albums/i103/mikevid/Image11-1.jpg)

Is there a way to remove the added " \ " in the Image Name?
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: m.a on November 26, 2006, 04:27:42 AM

p.s original 4images (images.php) funktioniert einwandfrei, unterschied dort wird nur ein
bild behandelt, bei vanos mod werden mehrere bilder uploatet.

gruss ivan



Hallo,
das Mod ist wirklich tool und fine und es war und ist toole Arbeit von V@no

Aber ich habe auch das Problem! nämlich (bei vanos mod werden bei einem Bild-Upload mehrere bilder uploadet oder erzeugt manchmal 3 oder 5 sogar)


Köntest du bis jetzt das Problem lösen?
Aber wenn ich von Admin cp das Bild hochlade, gibt es eben keine Probleme.

Vile Grüße
m.a
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: m.a on December 06, 2006, 11:53:15 PM

p.s original 4images (images.php) funktioniert einwandfrei, unterschied dort wird nur ein
bild behandelt, bei vanos mod werden mehrere bilder uploatet.

gruss ivan


Hi,

komisch.
Nach einige Tagen habe ich die 4images, besonderes datei images.php von V@no auf dem Server hochgeladen, es gibt mit images.php von v@no keine Probleme mehr.
Das unterschied zwischen mein instalierte PHP (also PHP 5) und auf dem Server instalierte PHP ist die Verion von denen.
Am Server ist PHP 4 instaliert.

Wahrscheinlich gab es Probleme mit PHP 5 . :idea: (Aber ich bin nicht sicher)

Jetzt funktioniert  :arrow: [MOD] Batch Copy/Move/Edit Images v3.7.3 von V@no prima!

Noch Mal vielen Danke V@no ! :P

Mit besten Dank
m.a
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: Po4emu4Man on December 20, 2006, 07:38:55 PM
Where can i get a files for this MOD?
There is a problems with old...
Somebody have it?

mcmoll@breezein.net
Will be a great THX!
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: CeJay on December 20, 2006, 08:46:58 PM
This seems like the only file you need http://www.4homepages.de/forum/index.php?action=dlattach;topic=6759.0;attach=950

Which is attached under the Directions (1st post by V@no)
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: Po4emu4Man on December 20, 2006, 08:54:35 PM
THX a lot!
That link was broken. I still can't download the file by that link! And all MOD's by V@no.
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: CeJay on December 20, 2006, 09:33:20 PM
THX a lot!
That link was broken. I still can't download the file by that link! And all MOD's by V@no.
Your welcome.

On all his posts just above the signature he has attached the files that would be needed.
Quote
My site is down. Files for MODs will be attached to the posts uppon requests.
So, please reply to the MODs topic if you need a file. But before you do that, check if file already attached.
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: mawenzi on December 20, 2006, 10:41:01 PM
@Po4emu4Man

... the download link at the bottom of the first post works ...
... please try it again ...
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: Po4emu4Man on December 21, 2006, 02:13:51 PM
Oops... sorry mates. I'm a noob here  :oops:
Thanx for help!
Offtopic: your forum and support for 4images is greatful. Description of MODS, instructions... well done! Other products like this haven't it.
But the number of MOD's is low... I believe in you, guys!
4images - is the best gallery I ever meet.
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: LoganSix on December 29, 2006, 04:22:11 PM
Nice mod.
Works great.

I wonder if this could be done for a user to edit their own pictures.
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: Lunique on January 15, 2007, 10:57:32 PM
Der Grund warum dir keiner antwortet ist vermutlich das es in diesem Thread bereits beantwortet wurde...
Gruß, Luna

Ändere die folgende Zeile:

if ($action == $lang['changeowner'] || $action == "Changeowner") {

Einfach das C GROß schreiben....
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: Lunique on January 16, 2007, 07:07:25 PM
Ich versteh zwar nich was das grad mit "wechsle mitglied" auf sich hat, aber wegen der weißen Seite mußt du darauf achten den eintrag an der richtigen stelle zu ändern.

zu ändern ist nicht
Code: [Select]
$lang['changeowner'] = "Change owner";
sondern
Code: [Select]
if ($action == $lang['changeowner'] || $action == "changeowner") {
und dort soll nur aus dem kleinen "c" ein großes werden also 
Code: [Select]
if ($action == $lang['changeowner'] || $action == "Changeowner") {
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: Lunique on January 16, 2007, 07:19:27 PM
also ich hatte das mit der weißen seite auch mal und nachdem ich das mit dem großen C gemacht hab ging alles und es kam auch ne bestätigung. Eigentlich dürfte es ja keine auswirkungen haben wenn du nur die Sprache an der stelle in "wechsle nutzer" önderst. Hast du denn probiert ob wenn du nur das C änderst alles geht?

edit: hab das von dir grad erst gelesen ;) naja dann kann ich dir leider auch nich helfen damit kenn ich mich dann nich aus. Kenn nur von mir das man einfach manchmal nen ' vergisst oder so sonst hab ich auch keine ahnung was es sein könnte...
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: babe on January 19, 2007, 12:48:36 PM
I love this script so much I can't live without. But recently one of its very useful features just broke down for me.

I'm using images.php 3.7.3 and 4images 1.7.3.

Since a month or two, there's the following error at the bottom of the results page:

Quote
DB Error: Bad SQL Query: SELECT user_id, user_name FROM pics_users WHERE user_id <> -1 ORDER BY user_name ASC
Error writing file '/tmp/MYtEnZjj' (Errcode: 28)

This error appears right above the Change owner button and the dropdown menu now only lists "Guest" and "--------------------------------", instead of the ten thousands of registered members.

I've searched this forum and learned that error 28 is MySQL-related, but the weird thing is I can't find anything wrong. The tmp-dir isn't even halfway full (which would explain the file writing-error).

I would really appreciate any help to get this fixed.
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: babe on January 22, 2007, 11:00:58 AM
It would be very useful for me if I could just replace the dropdown box with a simple text form field in which I can enter the (existing) username to change ownership to. Anyone know how to mod that?
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: Acidgod on January 23, 2007, 11:53:39 AM
search
Code: [Select]
      echo "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<select name=\"owner\" class=\"categoryselect\">\n";
      echo "<option value=\"".GUEST."\">".$lang['userlevel_guest']."</option>\n";
      echo "<option value=\"".GUEST."\">-------------------------------</option>\n";
      foreach ($user_select_row_cache as $key => $val) {
        echo "<option value=\"".$key."\"";
        if (($owner && $key == $owner) || (!$owner && $key == $user_info['user_id'])) {
          echo " selected=\"selected\"";
        }
        echo ">".$val."</option>\n";
      }
      echo "</select>\n";
replace with
Code: [Select]
<input type="text" size="30" name="owner" value="">
Then you can use the Userid NOT the Username!!!
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: babe on January 23, 2007, 07:02:42 PM
Then you can use the Userid NOT the Username!!!

Thanks, this is a good temporary fix.
Title: BUG: backslash zuviel bei Links in description / backslash too much
Post by: COMmander on February 05, 2007, 07:37:48 PM

---GER-----------------------------------------------------

Hallo,

habe jetzt alles gelesen, aber keine Antwort gefunden...

Ist das ein bug?!


Wenn man in der Beschreibung einen Link integriert, macht der batch-MOD daraus etwas Falsches.

Bsp:
 Eingabe im Beschreibungsfeld des MOD:
Code: [Select]
<a href="http://www.teamone.de/hypertext/">Hypertext</a>
 Ausgabe in der details.html:
Code: [Select]
<a href=\"http://www.teamone.de/hypertext/\">Hypertext</a>

Er setzt also einen backslash zuviel nach a href=\


Woooo isn das im Code?!





---ENG-----------------------------------------------------

Hi,

I've read all posts but was not able to find someting about this:

Is this a bug?


If you insert a link in the description-field like this:
Code: [Select]
<a href="http://www.teamone.de/hypertext/">Hypertext</a>
the mod changes this link into:
Code: [Select]
<a href=\"http://www.teamone.de/hypertext/\">Hypertext</a>
There is a backslash too much after the a href=\


But I cant find the bug in the code...  :?
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: COMmander on February 06, 2007, 02:09:12 PM

Quote from: COMmander
Er setzt also einen backslash zuviel nach a href=\

Korrektur: Es wird vor jedem Anführungszeichen innerhalb eines a href ein Backslash eingefügt.

Hat denn niemand sonst dieses Problem?!  :oops:
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: Acidgod on February 06, 2007, 02:22:00 PM
@COMmander
http://www.4homepages.de/forum/index.php?topic=6759.msg64185#msg64185
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: COMmander on February 06, 2007, 03:36:31 PM

@Acidgod
Ok - same problem - thx - but no solution?
Title: PROB: Extra Backslash in URLs in [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: COMmander on February 10, 2007, 12:07:49 PM

Quote from: COMmander
Er setzt also einen backslash zuviel nach a href=\

Korrektur: Es wird vor jedem Anführungszeichen innerhalb eines a href ein Backslash eingefügt.

Hat denn niemand sonst dieses Problem?!  :oops:


Muss es nochmal hochholen - Problem besteht bei mir immer noch - keine Lösung??  :cry:
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: COMmander on February 13, 2007, 05:16:09 PM

Hi,

ist es möglich, zusätzliche Felder in das Quick-Edit aufzunehmen?

Hintergrund: ich habe für die Google-Map zusätzliche Datenfelder in der 4images_images-Tabelle

Quote
4images_imagesimage_gmap_longitude   varchar(20)
image_gmap_latitude   varchar(20)
image_gmap_zoom   char(2)
image_gmap_type   tinyint(1)
image_gmap_show   tinyint(1)

(aus dem http://www.4homepages.de/forum/index.php?topic=16533.0 (http://www.4homepages.de/forum/index.php?topic=16533.0)-MOD


Nun möchte ich diese Felder auch gern in der Quick-Edit-Listenform ändern.

Was ist zu tun??  :?
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: callmefreak on February 21, 2007, 10:56:42 AM
its telling me that it won't move because the directory permissions aren't right. they're set at 777 so i dont see why it's not working
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: lemccoy on April 30, 2007, 09:31:18 PM
anyone have this file? the link doesn't work.  thanks!  and does this work well with 1.7.4?

ok i'm an idiot - it's attached to the original post.  also it seems to work with 1.7.4
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: janacat on May 10, 2007, 11:22:06 AM
Hallo,

das Mod ist echt nützlich und funktioniert soweit gut nur beim verschieben von Bildern bekomme ich immer folgende Fehlermeldung:

Warning: copy(): SAFE MODE Restriction in effect. The script whose uid is 10025 is not allowed to access /srv/www/vhosts/weichelt-foto.de/httpdocs/datenbank/4images/data/media/4 owned by uid 30 in /srv/www/vhosts/weichelt-foto.de/httpdocs/datenbank/4images/admin/images.php on line 257

Warning: copy(./../data/media/4/2I2L0244.jpg): failed to open stream: No such file or directory in /srv/www/vhosts/weichelt-foto.de/httpdocs/datenbank/4images/admin/images.php on line 257

Warning: copy(): SAFE MODE Restriction in effect. The script whose uid is 10025 is not allowed to access /srv/www/vhosts/weichelt-foto.de/httpdocs/datenbank/4images/data/thumbnails/4 owned by uid 30 in /srv/www/vhosts/weichelt-foto.de/httpdocs/datenbank/4images/admin/images.php on line 351

Warning: copy(./../data/thumbnails/4/2I2L0244.jpg): failed to open stream: No such file or directory in /srv/www/vhosts/weichelt-foto.de/httpdocs/datenbank/4images/admin/images.php on line 351


Was kann ich tun?

Grüße Jana
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: mawenzi on May 10, 2007, 12:02:54 PM
Warning: copy(): SAFE MODE Restriction in effect.

... suche im Forum nach "SAFE MODE Restriction in effect" ...
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: TB on June 22, 2007, 12:00:19 AM
Hallo,
kann jemand noch mal die modifizierte images.php zur Verfügung stellen? V@no's Server funktioniert nicht...
Danke!
Thomas

------------
Hello,
can somebody provide the modified images.php... V@no's Server is not working properly
Thanks!
Thomas
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: CeJay on June 22, 2007, 12:10:19 AM
The download is attached by his signature, use that.
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: nobita on June 27, 2007, 03:40:20 PM
Great mod!

Thank you alot! b-)
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: tippy on July 07, 2007, 01:18:15 AM
Ive read through this post and noticed many people having problems with backslashes being added to their description html, is there a fix for this as Im having the same prob. after installing/using this mod backslashes are being added to links/html in the description field on details.html

Thanks,

Mike
v 1.7.2
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: webmaster73 on July 27, 2007, 10:03:20 PM
this batch move / edit mod is very useful.

I am surprised it comes as a mod not as part of the original script.

Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: n3w on August 13, 2007, 09:44:05 AM
very nice addon :)

Only once question----

Can we add support for additional fileds to this mod?

For example, i have added a new field 'Photographer', can we add this new field to the batch edit area of this mod? Like with option like bulk keyword, description change... i can also change the value of new field also ie: Photographer.

Like if we have 30 images in a category,  i can add photogrpher's name to all 30 images in 1time with the help of this [MOD] Batch Copy/Move/Edit Images

thank you friends for helping me
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: thunderstrike on August 14, 2007, 12:02:38 AM
Hope is right ... use attachment (backup file).
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: thunderstrike on August 15, 2007, 01:29:42 AM
Post $clickstream of image 3. I fix. ;)
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: kowalski on August 15, 2007, 06:41:25 AM
Ive read through this post and noticed many people having problems with backslashes being added to their description html, is there a fix for this as Im having the same prob. after installing/using this mod backslashes are being added to links/html in the description field on details.html

I also have the backslashes problem with keywords
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.6
Post by: kowalski on August 15, 2007, 06:44:26 AM
Is there any chance we can add some more fields to this batch edit MOD ?

It's a really useful mod but if we can add our own custom fields to the 'quick edit' list that would be even better

Like the user n3w below, I would like to be able to quickly change custom fields I've created -  'Photographer', 'Venue' and 'Camera' using a drop down batch edit

Many thanks :)


========

Only once question----

Can we add support for additional fileds to this mod?

For example, i have added a new field 'Photographer', can we add this new field to the batch edit area of this mod? Like with option like bulk keyword, description change... i can also change the value of new field also ie: Photographer.

Like if we have 30 images in a category,  i can add photogrpher's name to all 30 images in 1time with the help of this [MOD] Batch Copy/Move/Edit Images

thank you friends for helping me

========

First, these mods are excellent, V@no, thanks.

Hi v@no
would it be possible to add all fields define in db_field_definitions.php I mean iclude all $additional_image_fields in the QUICK EDIT Option list and course the possbility to Edit and SAVE them IT WOULD BE  TO MUCHHHHHH !!!!!
Thanks a lot Larissa :roll:

I also want to try to get a new radio-field in the quick-edit-window. When i search new images in ACP, its there, but if i want to change old images I must edit each image for itself...
ciao,
hinzwiekunz

I'm also waiting for a way to do this! Maybe you can explain it on one example how to add "quick edit" for an additional field?
Would be great!
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.6
Post by: kowalski on August 15, 2007, 06:53:06 AM
Thank you :oops:

i found a error, one Checkbox is called: Keyowords
I think this misstake in your lang files ;)

This small spelling mistake can be fixed in the images.php file posted by v@no

It's on line 1437

Quote
show_radio_row("Keyowords", "editkeywords", 0);

just change to

Quote
show_radio_row("Keywords", "editkeywords", 0);
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: n3w on August 15, 2007, 09:11:10 AM
Hope is right ... use attachment (backup file).
Thank you thunderstrike for your hard work, but still i don't see additional filed added by me in your images.php while bulk editing  :!:

Other fileds are Description, Keywords, Activate, Allow comments...

edit: in my db_field_definitions.php i have added this field---

$additional_image_fields['Author'] = array($lang['Author'], "Author", 0);

so i want above new filed with other default fields during bulk edit :)
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: kowalski on August 15, 2007, 09:32:35 AM
Hope is right ... use attachment (backup file).

hi thunderstrike -- what has been changed in your images.php file attached?
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: thunderstrike on August 15, 2007, 01:33:02 PM
Additional image fields ...
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: mawenzi on August 15, 2007, 02:17:39 PM
Additional image fields ...

... but they are not shown in your version ...
... I think in $action == "modifyimages" we need show_radio_row("Additional Fields", "editadditional", 0); ...
... and so we need some more changes in all $action == " .... " ...
... I think, there is some more hard work on this file ...  :wink:
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: thunderstrike on August 15, 2007, 02:24:18 PM
7 block add $additional_image_fields (+ global command) ... I miss some ?
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: ascanio on September 15, 2007, 12:27:45 PM
when i use the change owner option using the 1.7.4 i get a white screen ... the rest of the options works but not the multi change owner tool
could you check that please?
thanks
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: knsin0 on September 15, 2007, 01:01:44 PM
Great mod and very easy to install  8) but i have a problem with the quick edition of the keywords, i have modified 4images for using commas for separating keywords, with that i can use multiple words as 1 keyword like: "car pictures, free pic, 4 images, etc"

The problem is that the quick edit of keywords dont allow the commas, how can i fix that?
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: knsin0 on September 15, 2007, 06:07:54 PM
Think i got it, this is what i did, in the admin/images.php commented this lines:

line 588:
Code: [Select]
$image_keywords = str_replace(","," ",$image_keywords);to
Code: [Select]
# $image_keywords = str_replace(","," ",$image_keywords);
line 818:
Code: [Select]
$image_keywords = str_replace(","," ",$image_keywords);to
Code: [Select]
# $image_keywords = str_replace(","," ",$image_keywords);
line 1056:
Code: [Select]
$image_keywords[$key] = str_replace(","," ",$image_keywords[$key]);to
Code: [Select]
# $image_keywords[$key] = str_replace(","," ",$image_keywords[$key]);

Pleaso could somebody confirm that this is correct? The script seems to work ok but would like to get opinions of the php masters  :D
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: thunderstrike on September 15, 2007, 06:19:08 PM
In admin/images.php file,

Quote
$image_keywords = str_replace(","," ",$image_keywords);

remove the comma in it ... is no remove before insert or update ?
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: knsin0 on September 15, 2007, 11:17:22 PM
Quote
remove the comma in it ... is no remove before insert or update ?

sorry but dont understand what you want to say  :?
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: KillerCookie on September 22, 2007, 02:14:32 PM
when i use the change owner option using the 1.7.4 i get a white screen ... the rest of the options works but not the multi change owner tool
could you check that please?
thanks

I got the same problem. Can somebody take a look at this?

Greets Maik
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: lemccoy on September 25, 2007, 07:23:24 PM
when i use the change owner option using the 1.7.4 i get a white screen ... the rest of the options works but not the multi change owner tool
could you check that please?
thanks

I got the same problem. Can somebody take a look at this?

Greets Maik

I am having the same problem...can someone please advise?  It only happened after the upgrade, should I try reinstall this mod or would it still not work? Thanks!
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: Patrick81 on October 07, 2007, 10:27:51 AM
when i use the change owner option using the 1.7.4 i get a white screen ... the rest of the options works but not the multi change owner tool
could you check that please?
thanks

I got the same problem. Can somebody take a look at this?

Greets Maik

I am having the same problem...can someone please advise?  It only happened after the upgrade, should I try reinstall this mod or would it still not work? Thanks!

any news? same problem :/
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: KillerCookie on October 10, 2007, 11:03:07 AM
when i use the change owner option using the 1.7.4 i get a white screen ... the rest of the options works but not the multi change owner tool
could you check that please?
thanks

I got the same problem. Can somebody take a look at this?

Greets Maik

I am having the same problem...can someone please advise?  It only happened after the upgrade, should I try reinstall this mod or would it still not work? Thanks!

any news? same problem :/

I wrote a little tool to mass change the owner of pictures, but you should only upload it to your site, use it and remove it because there are no security options set and everybody who knows the php filename can use it. If somebody is still interested -> PM . Note: It´s just a beta version until i get this MOD here to work.

Maik
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: skiemor on October 10, 2007, 01:23:48 PM
Super-MOD!!! I like it: download, safe old file, owerwrite, ready: WOW! ;-)

Gruß Chris.
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: skidpics on October 14, 2007, 10:45:35 PM
How can we get the preview thumbs to be bigger??
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: egyptsons on October 16, 2007, 06:59:37 PM
work fine with me
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: skidpics on October 17, 2007, 02:26:22 AM
work fine with me

The thumb sizes or pertaining to another subject in the discussion?
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: alphavto on October 22, 2007, 03:11:31 PM
when i use the change owner option using the 1.7.4 i get a white screen ... the rest of the options works but not the multi change owner tool
could you check that please?
thanks

I have the same problem with Version 1.7.4.
When I select the images and click on the button Change Owner I receive only a blank page, thats all.
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: thunderstrike on October 22, 2007, 08:37:34 PM
Quote
When I select the images and click on the button Change Owner I receive only a blank page, thats all.

Set error reporting in global and try page again. What is error message ?
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: alphavto on October 23, 2007, 02:36:20 AM
Sorry Thunderstrike, I can't follow you.
Where i can edit the errorreporting modus?
In /root/global.php is at line 28:
error_reporting(E_ERROR | E_WARNING | E_PARSE);
set_magic_quotes_runtime(0);
$start_time = microtime();

I used the forumsearch, but I don't find a post about this.
Thanks for your help.
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: thunderstrike on October 23, 2007, 05:01:31 AM
Quote
In /root/global.php is at line 28:
error_reporting(E_ERROR | E_WARNING | E_PARSE);

Change for:

Code: [Select]
//error_reporting(E_ERROR | E_WARNING | E_PARSE);
error_reporting(E_ALL);
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: alphavto on October 23, 2007, 01:07:38 PM
The same as before mit E_ALL. A blank page.
I also switched between PHP 4.4.1 and PHP 5.2.1. Ever and ever no error message.

PHP-Version: 5.2.1 phpinfo -> http://www.block-a.de/gallery/admin/phpinfo.php
mySQL-Version: 5.0.41
4images-Version: 1.7.4

Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: alphavto on October 23, 2007, 08:23:23 PM
I added a new 4images installation 1.7.4 without any MODS on my Webserver.
I have only changed the /admin/images.php and the /global.php (E_ALL)

The same effect, a blank page when I edit the owner.
You can use a admin-login for testing on:

http://stranglersforum.de/4images/admin/
User: test
Password: test
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: alphavto on October 23, 2007, 10:51:03 PM
Oh yeah, thats it!
Thanks a lot Ivan.
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: lemccoy on November 01, 2007, 05:54:12 PM
WOW! one little character...that did the trick for me!  Thanks Ivan!
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: musicsurfer on November 02, 2007, 03:27:42 PM
Hallo

Ich habe ein Problem, wenn ich Bilder aus eine Kategorie verschieben will
Ich bekomme bei Copy oder Move immer die Fehlermeldung

Datei konnte nicht auf den Server kopiert werden. Bitte überprüfen Sie ob die Zugriffsrechte des Zielordners richtig gesetzt sind Helloween No. 24 (in category ID: 49)

Error copying image Helloween No. 24 (from category ID: 49 to 48)

Ich habe den Ordner der ID48 aber auf 777 gesetzt
Kann mir jemand sagen, warum das nicht geht ?

Gruss
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: juergen on November 02, 2007, 04:23:49 PM
das Problem hatte ich auch schon mal gepostet, blieb unbeantwortet. Ich habe dann das Verzeichnis von 4images auf 770 gesetzt und dann hat alles funktioniert. Ob das sicherheitstechnisch so in Ordnung ist kann uns vielleicht ja noch jemand von den Spezialisten sagen.
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: musicsurfer on November 02, 2007, 04:25:47 PM
Komischerweise war das nur bei den Bildern die ich per FTP geladen habe
die ich über das Menü geladen habe konnte ich verschieben
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: Nicky on November 02, 2007, 10:03:06 PM
hi,

ich schätze das es mit datei group/user rechten zutun hat.
habts beide SAFE MODE auf OFF?
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: musicsurfer on November 02, 2007, 10:28:41 PM
hi,

ich schätze das es mit datei group/user rechten zutun hat.
habts beide SAFE MODE auf OFF?

Hallo
Wo kann ich das denn nachsehen ?

Gruss
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: Nicky on November 02, 2007, 10:43:06 PM
admin bereich und die phphinfo()
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: musicsurfer on November 02, 2007, 10:46:30 PM
safe_mode Off (Local Value)   Off  (Master Value)

Gruss
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: candys on November 19, 2007, 01:31:59 AM
Hallo zusammen,
habe diesen wirklich praktischen Mod installiert und  mir ist auf gefallen das  in der Tumbnail ansicht  als User ( Gast )steht.
klicke ich aber auf das Bild  um eine grosse ansicht zu bekommen Steht mein Username da.
wie kann ich das ändern und wo kann ich in einem schwung den Usernamen ändern.

hier ein Screen von der tumbnail ansicht

lg
Claudia
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: rinaldos on November 26, 2007, 05:52:03 PM
Hallo zusammen,
ich hatte mein anliegen hier]http://www.4homepages.de/forum/index.php?topic=19594]hier  (http://www.4homepages.de/forum/index.php?topic=19594) schon gepostet, aber dann machte mich IVAN darauf aufmerksam, das es ja zu diesem MOD gehört.

Ist es möglich bei der Auswahl der Kategorie (wohin ich die Bilder kopiere/verschiebe), das ich zusätzlich ein Feld bekommen in dem ich die cat_id händisch eingeben kann, und nicht via Dropdown.

Gruß
Ingo

Sorry für ggf Doppelpost .......
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: jojomart on December 10, 2007, 02:16:45 AM
Thank you soooo much for this tool!  It makes it so much more easy to do it this way - Bless You! You're an ^j^

Joanne
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: Mte90 on December 10, 2007, 09:05:54 PM
But to move files easily without going to edit as I do?

Quote
1. Login into ACP (Admin Control Panel).
2. Click on "Edit Images" link on left.
3. Find needed images.
4. Select a category to witch u want the images be copied/moved to
5. Click on "Copy" or "Move" button

The fifth transition as I do? By editimages?

Thanks for the help
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: kimsan on December 20, 2007, 03:06:09 AM
Thanks for the good work. It's a useful mod. BTW, I can't download the MOD from the link, seems like the site is down. May I ask where I can download this MOD besides the link on the instruction?

Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: jojomart on December 20, 2007, 03:11:04 AM
Thanks for the good work. It's a useful mod. BTW, I can't download the MOD from the link, seems like the site is down. May I ask where I can download this MOD besides the link on the instruction?



There is an attachment in the first post of this topic - towards the bottom - 2 lines above the red text on black background
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: IceCube on January 11, 2008, 10:44:06 AM
Hallo,

leider geht der Link (http://gallery.vano.org/file41dl) nicht mehr um den MOD downloaden zu können. Gibt es einen anderen Link der funktioniert?

Danke für eure Hilfe.

Gruß
IceCube
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: nobby on January 11, 2008, 10:49:10 AM
Hallo,

geht doch  :wink: schau im Anhang.

nobby
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: IceCube on January 11, 2008, 10:54:35 AM
Super, vielen Dank für deine Hilfe.  :)
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: nobby on January 11, 2008, 10:56:26 AM
Super, vielen Dank für deine Hilfe.  :)

Bitte, gern geschehen  :wink:
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: Jan-Lukas on January 25, 2008, 07:59:55 PM

Hi,

ist es möglich, zusätzliche Felder in das Quick-Edit aufzunehmen?

Hintergrund: ich habe für die Google-Map zusätzliche Datenfelder in der 4images_images-Tabelle

Quote
4images_imagesimage_gmap_longitude   varchar(20)
image_gmap_latitude   varchar(20)
image_gmap_zoom   char(2)
image_gmap_type   tinyint(1)
image_gmap_show   tinyint(1)

(aus dem http://www.4homepages.de/forum/index.php?topic=16533.0 (http://www.4homepages.de/forum/index.php?topic=16533.0)-MOD


Nun möchte ich diese Felder auch gern in der Quick-Edit-Listenform ändern.

Was ist zu tun??  :?



möchte da doch nochmal weiter fragen ;)
Habe auch diverse eigene Tabellen die ih da bearbeiten möchte.
Glaube habe soweit auch alles eingbaut, nur mit der html Kiste im php code komme ich einfach nicht weiter, ständig wird alles zerstückelt, oder woanders angezeigt.

Kann mir vielleicht jemand hier 3 bearbeitungsfelder einbauen, einfache Zeile wie bei Bildname
Felder lauten
image_bpz
image_kennung
image_serie

editbpz
editkenn
editserie



hier der html bereich wo ich nicht weiter komme (Sprachdatei schon eingefügt)
wäre klasse, wenn mir beim Schluss jemand hilft

Danke


Code: [Select]
  show_form_header("images.php", "removeimage", "form");
  echo "<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\" width=\"100%\" align=\"center\"><tr><td class=\"tableborder\">\n<table cellpadding=\"3\" cellspacing=\"1\" border=\"0\" width=\"100%\">\n";
  if ($countimages['images'] > 0) {
    echo "<tr class=\"tableseparator\">\n";
    if (!$editname && !$editbpz &&  !$editkenn &&  !$editserie && !$editdescription && !$editkeywords && !$editdate) {
      echo "<td class=\"tableseparator\"><input name=\"allbox\" type=\"checkbox\" onClick=\"CheckAll();\" /></td>\n";
    }
    echo "<td class=\"tableseparator\">&nbsp;</td><td class=\"tableseparator\">".$lang['field_image_name']."</td>\n";
    if ($editdescription) {
      echo "<td class=\"tableseparator\">".$lang['field_description']."</td>\n";
    }
    if ($editbpz) {
      echo "<td class=\"tableseparator\">".$lang['field_bpz']."</td>\n";
    }
    if ($editkenn) {
      echo "<td class=\"tableseparator\">".$lang['field_kenn']."</td>\n";
    }
    if ($editserie) {
      echo "<td class=\"tableseparator\">".$lang['field_serie']."</td>\n";
    }
    if ($editkeywords) {
      echo "<td class=\"tableseparator\">".$lang['field_keywords']."</td>\n";
    }
    echo "<td class=\"tableseparator\">".$lang['field_category']."</td>\n<td class=\"tableseparator\">".$lang['field_username']."</td>\n<td class=\"tableseparator\">".$lang['field_date']."</td>\n<td class=\"tableseparator\">".$lang['options']."</td>\n</tr>\n";

    $sql = "SELECT i.image_id, i.cat_id, i.user_id, i.image_name, i.image_media_file, i.image_thumb_file, i.image_date, i.image_description, i.image_keywords".get_user_table_field(", u.", "user_name")."
            FROM ".IMAGES_TABLE." i
            LEFT JOIN ".USERS_TABLE." u ON (".get_user_table_field("u.", "user_id")." = i.user_id)
            WHERE $condition
            ORDER BY $orderby $direction
            LIMIT ".(($limitstart) ? $limitstart-1 : 0).", $limitnumber";
    $result = $site_db->query($sql);
    $i = 0;
    while ($image_row = $site_db->fetch_array($result)) {
      echo "<tr class=\"".get_row_bg()."\">";
      if ($editname || $editbpz || $editkenn || $editserie || $editdescription || $editkeywords || $editdate) {
        echo "<input type=\"hidden\" name=\"selectimages[$i]\" value=\"".$image_row['image_id']."\" />";
      }
      else {
        echo "<td><input type=\"checkbox\" name=\"selectimages[]\" value=\"".$image_row['image_id']."\" /></td>";
      }
      $thumb_src = ROOT_PATH.THUMB_DIR."/".$image_row['cat_id']."/".$image_row['image_thumb_file'];
      $dim = $thumbsize;
      $width = $dim;
      $height = $dim;
      $thumb_size = get_resize2($thumb_src, $dim);
      $width = $thumb_size[0];
      $height = $thumb_size[1];

      echo "<td align=\"center\"><a href=\"".$site_sess->url(ROOT_PATH."details.php?".URL_IMAGE_ID."=".$image_row['image_id'])."\" target=_blank><img src=\"".((empty($image_row['image_thumb_file'])) ? ICON_PATH."/".get_file_extension($image_row['image_media_file']).".gif" : ((is_remote($image_row['image_thumb_file'])) ? $image_row['image_thumb_file'] : $thumb_src))."\" width=\"".$width."\" height=\"".$height."\" border=\"1\" alt=\"\" /></a></td><td>";
      if ($editname) {
        echo "<input name=\"name[$i]\" value=\"".str_replace("\"", "&quot;", stripslashes($image_row['image_name']))."\" /><br />";
      }
      else {
        echo "<b><a href=\"".$site_sess->url(ROOT_PATH."details.php?".URL_IMAGE_ID."=".$image_row['image_id'])."\" target=_blank>".$image_row['image_name']."</a></b> ";
      }
      echo "(".$image_row['image_media_file'];
      if (!get_file_path($image_row['image_media_file'], "media", $image_row['cat_id'], 1, 0)) {
        echo " <b class=\"marktext\">!</b>";
      }
      echo ")</td>\n";
      if ($editdescription) {
        echo "<td><textarea cols=\"$cols\" rows=\"$rows\" name=\"description[$i]\">".stripslashes($image_row['image_description'])."</textarea></td>\n";
      }
      if ($editkeywords) {
        echo "<td><textarea cols=\"$cols\" rows=\"$rows\" name=\"keywords[$i]\">".stripslashes($image_row['image_keywords'])."</textarea></td>\n";
      }
      echo "<td><a href=\"".$site_sess->url(ROOT_PATH."categories.php?".URL_CAT_ID."=".$image_row['cat_id'])."\" target=\"_blank\">".htmlspecialchars($cat_cache[$image_row['cat_id']]['cat_name'])." (ID: <b>".$image_row['cat_id']."</b>)</a></td>\n";
      $show_user_name = htmlspecialchars($image_row[$user_table_fields['user_name']]);
      if ($image_row['user_id'] != GUEST && empty($url_show_profile)) {
        $show_user_name = "<a href=\"".$site_sess->url(ROOT_PATH."member.php?action=showprofile&".URL_USER_ID."=".$image_row['user_id'])."\" target=\"_blank\">$show_user_name</a>";
      }
      echo "<td>".$show_user_name."</td>\n";
      echo "<td>";
      if ($editdate) {
        echo "<input name=\"image_date[$i]\" value=\"".format_date("Y-m-d H:i:s", $image_row['image_date'])."\" /><br />yyyy-mm-dd hh:mm:ss";
      }
      else {
        echo format_date($config['date_format'], $image_row['image_date']);
      }
      echo "</td>\n";
      echo "<td><p>";
      show_text_link($lang['edit'],"images.php?action=editimage&image_id=".$image_row['image_id'], $target);
      show_text_link($lang['delete'],"images.php?action=removeimage&image_id=".$image_row['image_id'], $target);
      echo "</p></td>\n";
      echo "</tr>\n";
      $i++;
    }
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: Jan-Lukas on January 28, 2008, 06:06:32 PM
So, folgendes Problem
Wenn ich die neuen Felder zum editieren auswähle, wird auch alles fein angezeigt (Bild 1)
wenn ich aber z.b. nur 2 auswähle wird die Tabelle verschoben, und das was nicht ausgewählt wird, wird nicht angezeigt.
Bild 2 zeigt die Tabelle wenn ich nichts zum bearbeiten ausgewählt habe, normal müsste ja trotzdem die neuen mit Inhalt angezeigt werden.

Bitte, wo ist da die Stelle die ich in der image.php bearbeiten muss  :?:

Danke Harald
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: musicsurfer on February 09, 2008, 04:21:50 PM
Hallo

Kann die Datei denn auch für die Version 1.7.6. genutzt werden ?

gruss
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: musicsurfer on February 09, 2008, 04:40:05 PM
Habe ich gemacht :)
1.7.6. geupdatet und dann die hier im Post 1 geladenen Datei reinkopiert (überschrieben)
Klappt einwandfrei

Danke !
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: Jan-Lukas on February 12, 2008, 07:59:10 PM
So, folgendes Problem
Wenn ich die neuen Felder zum editieren auswähle, wird auch alles fein angezeigt (Bild 1)
wenn ich aber z.b. nur 2 auswähle wird die Tabelle verschoben, und das was nicht ausgewählt wird, wird nicht angezeigt.
Bild 2 zeigt die Tabelle wenn ich nichts zum bearbeiten ausgewählt habe, normal müsste ja trotzdem die neuen mit Inhalt angezeigt werden.

Bitte, wo ist da die Stelle die ich in der image.php bearbeiten muss  :?:

Danke Harald

wirklich keine Hilfe in Sicht ?
müsste dringend einige tausend Bilder bearbeiten, und mit diesem Mod würde es 10x so schnller gehen, nur müsste ich da auch eigene Felder bearbeiten können.
hat das denn noch keiner erweitert ?

Büdde
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: webmaster73 on March 03, 2008, 12:39:26 AM
thank you very much for this nice mod.
I believe this must be part of the original script, not a mod.

we all change minds on how to organize photos on our galleries.

Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: heldmarkus on May 25, 2008, 04:37:00 PM
Hi everyone,

first of all thanks for this nice mod.

I only have one problem. I just recognised that you only cann move pics, moving of other file types is obviously not possible.
Now, i use a lot of pdfs and zip files so it would be very important for me to be able to move those without having to change the directory manually everytime. HAs anyone an idea how this could be done with this mod or is there another mod which can do it?

Thanks for your help, it's very important and urgent for me.

 :lol:
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: TIMT on July 01, 2008, 12:23:23 AM
Hi,

I'd like to add some new fields in "quick edit".

How can I do that?
With the new files i would be able to manage the pictures much more efficiently.

Thanks for helping me.

TIMIT
Title: Re: [MOD] Batch Copy/Move/Edit Images v3.7.3
Post by: heldmarkus on July 01, 2008, 09:10:06 AM
Hi everyone,

first of all thanks for this nice mod.

I only have one problem. I just recognised that you only cann move pics, moving of other file types is obviously not possible.
Now, i use a lot of pdfs and zip files so it would be very important for me to be able to move those without having to change the directory manually everytime. HAs anyone an idea how this could be done with this mod or is there another mod which can do it?

Thanks for your help, it's very important and urgent for me.

 :lol:

Really no one knows? The problem is still there, a solution would be very good.
Thanks
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.0.1 (2008-09-13)
Post by: V@no on September 13, 2008, 11:31:47 AM
Try new version.
Since I did quiet a few changes to the code, I could break something...I don't have time right now to fully test it.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.0.2 (2008-09-13)
Post by: V@no on September 13, 2008, 09:29:40 PM
Oh, this file is a mess...So many parts do the same thing, very hard to debug. I'm tempting just start over...
Try v4.0.2
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.0.2 (2008-09-13)
Post by: V@no on September 14, 2008, 01:46:25 AM
-the navigation below... (see image) is better when you assign/sort the button(s)
my old 4.0 version (see image) is easy ;)
The problem with your layout is that its confusing because "save date" only used with copy/move buttons, in your layout it looks like it used with "change owner" button. (btw, in english translation it looks different ;))

Anyway, first of all thank you very much for testing this and reporting it back, secondly, I've updated to v4.0.3 where I changed the buttons layout a bit, more like you did in v4.0, hope its less confusing now.
I've removed some of the deutsch language translations (replaced them with english), they are separated from the rest so its easy to spot :)
Code: [Select]
    $lang['copy_success'] = "<b>Image \"%s\" successfully copied</b> (from category %s to %s)";
    $lang['copy_error_skipped'] = "<b>Image</b> %s <b>was not coppied</b>";
    $lang['copy_error_thumb'] = "<b>Error copying thumbnail</b> %s";
    $lang['copy_error_media'] = "<b>Error copying media file</b> %s";
    $lang['copy_error_db'] = "<b>Error updating database. Image %s was not coppied</b>";
    $lang['move_success'] = "<b>Image \"%s\" successfully moved</b> (from category %s to %s)";
    $lang['move_error'] = "<b>Error moving image</b> %s (from category: %s to %s)";
    $lang['move_error_thumb'] = "<b>Error moving thumbnail</b> %s";
    $lang['move_error_media'] = "<b>Error moving media file</b> %s";
    $lang['move_error_skipped'] = "<b>Image</b> %s <b>was not moved</b>";
    $lang['move_error_db'] = "<b>Error updating database. Image %s was not moved</b>";
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.0.3 (2008-09-13)
Post by: budduke on September 14, 2008, 05:51:47 PM
Regarding 4.0.3 upgrade,
Noticed one little bug...
You said that it supported the catimage mod, but I noticed when I move a batch of images and one of the pics was the catagory image for the old catagory, it still is the image for that old catagory instead of either turning it off or becoming the image for the catagory that you moved it over to.

no biggie, just have to keep an eye on it when I am moving files around.

Thanks for all the hard work!
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.0.3 (2008-09-13)
Post by: V@no on September 14, 2008, 08:11:57 PM
-the lang tag is not in code
Code: [Select]
$lang['copy_error']
Nice catch. Removed.


-when sort the images example descending, is the sort function not as it should be
when Date and Time the same then
-First Sort Image Date
-Second Sort Image ID

   
something similar was also in version 1.7.3 in the categories exist
Code: [Select]
        ORDER BY ".$config['image_order']." ".$config['image_sort'].", image_id ".$config['image_sort']."
(jan fixed in version 1.7.6) with
Code: [Select]
        ORDER BY ".$config['image_order']." ".$config['image_sort'].", i.image_id ".$config['image_sort']."


In my tests this change didn't do anything, I believe MySQL by itself sort items by primary key (which is image_id in this case). Anyway I put that change in, see if its better now.

Regarding 4.0.3 upgrade,
Noticed one little bug...
You said that it supported the catimage mod, but I noticed when I move a batch of images and one of the pics was the catagory image for the old catagory, it still is the image for that old catagory instead of either turning it off or becoming the image for the catagory that you moved it over to.

Fixed. Now it removes cat image from old category when batch moving images or changing category at single image edit page. Btw, before when you edit an image, select it as cat image then change it's category, both categories were set to use that one image as cat image...
But now this creates another question: what would be better to do when a category image being moved to a new category which already has category image set? At the moment in batch moving it does nothing (current category image stays), but moving single image via edit image page overwrites current cat image in new category.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.1 (2008-09-14)
Post by: V@no on September 14, 2008, 09:57:57 PM
-i have problem with the category (see image).
when start images.php, go to category xy and search, go back with button, is always the same category  :roll:
even when rerun images.php with link
p.s the same is in view option (downloads etc.) below!    
even if save data 0!

This is expected, its actually a feature added it in v4.1 ;)

In current v4.2 I've changed it a bit, you can disable it completely by changing $savesearchform = 1; //restore last selected dopdown menus, radio buttons and "images per page"?

or by clicking "Reset" button.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.0.3 (2008-09-13)
Post by: budduke on September 16, 2008, 01:50:12 PM

Regarding 4.0.3 upgrade,
Noticed one little bug...
You said that it supported the catimage mod, but I noticed when I move a batch of images and one of the pics was the catagory image for the old catagory, it still is the image for that old catagory instead of either turning it off or becoming the image for the catagory that you moved it over to.

Fixed. Now it removes cat image from old category when batch moving images or changing category at single image edit page. Btw, before when you edit an image, select it as cat image then change it's category, both categories were set to use that one image as cat image...
But now this creates another question: what would be better to do when a category image being moved to a new category which already has category image set? At the moment in batch moving it does nothing (current category image stays), but moving single image via edit image page overwrites current cat image in new category.


Nice Job!
I personally think that when moving an image that is a catimage, it should no longer be a catimage, wether or not there is one in the new cat or not. You can always go back in a recreate it if you want.

This is an amazing update of this MOD. Keep up the great work!
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.2 (2008-09-14)
Post by: V@no on September 16, 2008, 02:08:32 PM
I personally think that when moving an image that is a catimage, it should no longer be a catimage, wether or not there is one in the new cat or not. You can always go back in a recreate it if you want
I agree. However with single image edit (normal edit page) it might be confusing, because you set the image be a cat image and if you changed category after save your image will not be set as cat image...But from other hand, its better get a little confused, and don't set cat image in new category if the category already has cat image...I might even add javascript to categories dropdown that would hide/disable cat image radio button if category changed.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.2 (2008-09-14)
Post by: mawenzi on September 16, 2008, 03:06:06 PM
... thanks to both Ivans for the updates ... ;)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.3 (2008-09-16)
Post by: V@no on September 16, 2008, 03:41:24 PM
changes in v4.3:
Quote
- Added link to image details in edit image page and after new image added
- Added error message if trying edit non-existent image
- Image preview size is now can be changed via $imagesize variable
- Date column at search images page now shows image date and time
- Fixed uploaded image file not being deleted if something went wrong and image was not updated/saved in the database
- Fixed cat image being overwritten by moved in image

new language string added:
    $lang['no_image'] = "No image found with this ID";
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.3 (2008-09-16)
Post by: rinaldos on September 16, 2008, 04:10:14 PM
Thanks for the Update,
what file is this?
Code: [Select]
if (file_exists(ROOT_PATH . 'includes/image_multisizes.php'))
{
  include_once(ROOT_PATH . 'includes/image_multisizes.php');
}
It is not included in 4Images .... And I didn't find anything about image_multisze.php  in this Forum.

Gruß
Ingo
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.3 (2008-09-16)
Post by: V@no on September 16, 2008, 04:41:45 PM
That's a project I'm working right now ;)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.3 (2008-09-16)
Post by: rinaldos on September 16, 2008, 04:43:14 PM
:-) Good Luck with your Project:-)

Ingo
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.3 (2008-09-16)
Post by: V@no on September 16, 2008, 07:59:28 PM
german language
Code: [Select]
    $lang['no_image'] = "Kein Bild mit dieser ID gefunden";
Thank you.

-when you edit two images, then comes file upload in progress (infinity)
Fixed in v4.4

-images without original, see i brokes images (not 404.gif)
Well, actually, 404.gif shows only if thumbnail and image files missing, otherwise thumbnail should show (at least now it should work this way :))

-in edit images, is no back button
There never was any...and it might be tricky to add one..


Changes in v4.4:
Quote
- Added thumbnails to multi-image edit page
- Now if only one image selected and pressed edit button, a normal image edit page opens
- Fixed displaying missing thumbnails
- Fixed progress window popup wouldn't close after save at multi-image edit.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.4 (2008-09-16)
Post by: Jan-Lukas on September 16, 2008, 10:39:17 PM
Ihr seit gerade so gut in Form, da hab ich mir gedacht, hole ich mal das Posting nach hier rüber  :twisted:

@ivan
... es wird noch dringend ein Tutorial ... zum Einbau / Auslesen / Speichern zusätzlicher DB-Bild-Felder gesucht ...
... z.B. für Jans Feld "Photographer" ...
... möglich ... ?

vielleicht klappt es ja  8)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.5 (2008-09-16)
Post by: V@no on September 17, 2008, 02:02:01 AM
remain only additional fields ;)

Ok, try v4.5

In order to search for a additional field, you must check the checkbox next to the field you want include in the search.
I've added support for dropdown fields, however I don't have that mod installed, so it might not work.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.6 (2008-09-16)
Post by: V@no on September 17, 2008, 04:15:43 AM
I've decided move all internal settings into a separate file, this way your configuration will not be affected by updates.

v4.6 change log:
Quote
- Internal configuration now moved into separate file admin/images_config.php
- Added support for easier show/hide additional image fields via admin/images_config.php
- Fixed all additional image fields checkboxes get selected after pressing "next page" button

The additional image fields now can be configured via admin/images_config.php:
//--- Additional Fields Settings -----

/*
  $additional_image_fields_settings = array(
                              "example_field_name0" => array(true, "%s = '%s'"), //show this field in the search form and do exact string match, this should be used for radio type fields
                              "example_field_name1" => array(true, "%s LIKE '%s'"),
                              "example_field_name2" => array(true, "%s LIKE '%s\%'"),
                              "example_field_name3" => array(true, "%s LIKE '\%%s'"),
                              "example_field_name4" => array(true, "INSTR(LCASE(%s), '%s')"), //show this field in the search form and search using INSTR() mysql function
                              "example_field_name5" => array(false, ""), //don't show this field in the search form
  );

//the below is exact same thing as the above 
 
  $additional_image_fields_settings["example_field_name0"] = array(true, "%s = '%s'"); //show this field in the search form and do exact string match, this should be used for radio type fields
  $additional_image_fields_settings["example_field_name1"] = array(true, "%s LIKE '%s'");
  $additional_image_fields_settings["example_field_name2"] = array(true, "%s LIKE '%s\%'");
  $additional_image_fields_settings["example_field_name3"] = array(true, "%s LIKE '\%%s'");
  $additional_image_fields_settings["example_field_name4"] = array(true, "INSTR(LCASE(%s), '%s')"); //show this field in the search form and search using INSTR() mysql function
  $additional_image_fields_settings["example_field_name5"] = array(false, ""); //don't show this field in the search form

*/
$additional_image_fields_settings = array();

//--- End Additional Fields Settings--


If a field not set in $additional_image_fields_settings array it will be showed on search page and will be used the default mysql search parameters.

P.S.
new language string:
    $lang['additional_fields'] = "Additional image fields <span class=\"smalltext\">(must be enabled by the checkbox next to each field)</span>";

Title: Re: [MOD] Batch Copy/Move/Edit Images v4.6 (2008-09-16)
Post by: Jan-Lukas on September 17, 2008, 12:21:04 PM
folgende Meldung im Admin bei Bild bearbeiten

Quote
//--- Additional Fields Settings ----- /* $additional_image_fields_settings = array( "example_field_name0" => array(true, "%s = '%s'"), //show this field in the search form and do exact string match, this should be used for radio type fields "example_field_name1" => array(true, "%s LIKE '%s'"), "example_field_name2" => array(true, "%s LIKE '%s\%'"), "example_field_name3" => array(true, "%s LIKE '\%%s'"), "example_field_name4" => array(true, "INSTR(LCASE(%s), '%s')"), //show this field in the search form and search using INSTR() mysql function "example_field_name5" => array(false, ""), //don't show this field in the search form ); //the below is exact same thing as the above $additional_image_fields_settings["example_field_name0"] = array(true, "%s = '%s'"); //show this field in the search form and do exact string match, this should be used for radio type fields $additional_image_fields_settings["example_field_name1"] = array(true, "%s LIKE '%s'"); $additional_image_fields_settings["example_field_name2"] = array(true, "%s LIKE '%s\%'"); $additional_image_fields_settings["example_field_name3"] = array(true, "%s LIKE '\%%s'"); $additional_image_fields_settings["example_field_name4"] = array(true, "INSTR(LCASE(%s), '%s')"); //show this field in the search form and search using INSTR() mysql function $additional_image_fields_settings["example_field_name5"] = array(false, ""); //don't show this field in the search form */ $additional_image_fields_settings = array(); //--- End Additional Fields Settings--



Tabellen werden angezeigt im Admin (Bild 2), lassen sich aber nicht bearbeiten Bild 3
Auch da wird oben Code angezeigt

Code: [Select]
//--- Additional Fields Settings ----- /* $additional_image_fields_settings = array( "example_field_name0" => array(true, "%s = '%s'"), //show this field in the search form and do exact string match, this should be used for radio type fields "example_field_name1" => array(true, "%s LIKE '%s'"), "example_field_name2" => array(true, "%s LIKE '%s\%'"), "example_field_name3" => array(true, "%s LIKE '\%%s'"), "example_field_name4" => array(true, "INSTR(LCASE(%s), '%s')"), //show this field in the search form and search using INSTR() mysql function "example_field_name5" => array(false, ""), //don't show this field in the search form ); //the below is exact same thing as the above $additional_image_fields_settings["example_field_name0"] = array(true, "%s = '%s'"); //show this field in the search form and do exact string match, this should be used for radio type fields $additional_image_fields_settings["example_field_name1"] = array(true, "%s LIKE '%s'"); $additional_image_fields_settings["example_field_name2"] = array(true, "%s LIKE '%s\%'"); $additional_image_fields_settings["example_field_name3"] = array(true, "%s LIKE '\%%s'"); $additional_image_fields_settings["example_field_name4"] = array(true, "INSTR(LCASE(%s), '%s')"); //show this field in the search form and search using INSTR() mysql function $additional_image_fields_settings["example_field_name5"] = array(false, ""); //don't show this field in the search form */ $additional_image_fields_settings = array(); //--- End Additional Fields Settings--

Array
(
    [action] => findimages
    [image_id] =>
    [image_name] =>
    [image_description] =>
    [image_keywords] =>
    [cat_id] => 5007
    [user_id] =>
    [image_active] => 1
    [user_name] =>
    [image_media_file] =>
    [image_thumb_file] =>
    [dateafter] =>
    [datebefore] =>
    [downloadsupper] =>
    [downloadslower] =>
    [ratingupper] =>
    [ratinglower] =>
    [votesupper] =>
    [voteslower] =>
    [hitsupper] =>
    [hitslower] =>
    [orderby] => i.image_date
    [direction] => DESC
    [limitnumber] => 25
    [editname] => 0
    [editdescription] => 0
    [editkeywords] => 0
    [editdate] => 0
    [image_bpz_enable] => 1
    [image_bpz] =>
    [image_jahr_enable] => 1
    [image_jahr] =>
    [image_serie_enable] => 1
    [image_serie] =>
    [image_kennung_enable] => 1
    [image_kennung] =>
    [image_such_enable] => 1
    [image_such] =>
)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.6 (2008-09-16)
Post by: Jan-Lukas on September 17, 2008, 12:21:44 PM
hi harald, bitte in englisch schreiben, dann kanns vano prüfen ;)


keine Chance, dann wäre ich ja Gott  :wink:
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.6 (2008-09-16)
Post by: V@no on September 17, 2008, 02:05:40 PM
ops...packed it before I saved the file after removing the debugging line...fixed.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.6 (2008-09-16)
Post by: Jan-Lukas on September 17, 2008, 10:29:18 PM
OK, Fehler alle weg, aber wie werden den jetzt die Felder geändert ??
Denn es fehlen ja immer noch die editierfelder ?

Und wofür sind die Felder auf Bild 2 ?

LG Harald

Title: Re: [MOD] Batch Copy/Move/Edit Images v4.6 (2008-09-16)
Post by: V@no on September 18, 2008, 01:11:28 AM
I'm not sure what you are showing on first screenshot...

As of second screenshot, these are additional image fields used by the mod's you've installed. If you want search for images that contain something specific in these fields, check the checkbox next to the field and enter the string into the field, the search will search for images that have the string you've specified. Any fields that are not selected by the checkbox will be ignored in the search.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.6 (2008-09-16)
Post by: Jan-Lukas on September 18, 2008, 02:24:59 PM
Ivan,
Wiso erscheint bei dir die Map Zelle zum bearbeiten ??

hab die neusten Sachen hochgeladen, nur nach Klick auf suchen, werden die additional fields nicht zum bearbeiten angezeigt  :?

Kannst die wichtigsten Sachen nicht mal auf Deutsch zusammen fassen *büdde*

LG Harald
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.6 (2008-09-16)
Post by: V@no on September 18, 2008, 03:03:48 PM
wow... this is very complex

That's precisely why I didn't want have include additional fields automatically into the search in the first place. But I see no other way.

-the additional fields is only for search?

Yes, at least for now.

easy variant
1) images screen: selection by addtional fields
2) edit screen: edit gmap latitude or longitude... (the same as date or keywords, description)

1) your request is pretty much specific, which might be only useful for you alone or for that specific fields. Because there are many ways using additional fields, there are many different ways search in them, and one way might not work for all of the fields.

your way is not exactly understandable
Maybe a little confusing because you probably haven't seen such method in 4images, but in other softwares such method is pretty common.
The reason why I decided add a checkbox to each field is because that's the only way to determine if user wanted search images with an empty string in the additional fields or they didn't want use additional fields at all.
So, now you'll need activate each individual field if you want include it into your search.

If that is too confusing then I probably should not even think about improving search functionality by adding "functions" dropdown menu to each search field like in phpmyadmin
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.7 (2008-09-22)
Post by: V@no on September 22, 2008, 06:35:17 AM
hello, im use vers. 3.7.3 and 1.7.1

i found a bug


when i use edit images and fill the images with keyword
z.b pradschier

the correctable pradschier in pradaschier

then search database update with two keywords

pradschier
pradaschier

hello vano, i have now analysed....
the wordlist table is not update after save
old keywords remain exist



Fixed in v4.7

Changes log:
Quote
- Added dropdown options for more precise searches
- Checkboxes for additional fiels replaced by dropdown menus
- Added highlited entire row for images with missing files (additional to a red "!")
- $big and $backup variables no longer used, instead BIGDIR and BACKUPDIR constant used.
- Added new feature: use media template at edit image page (useful for non-images media files, however tested only with default template). Controlled by $use_media_template variable
- Fixed php warning message showed when replaced remote image with an uploaded one
- Fixed "reset" button didn't work when $savesearchform = 0 and pressed "back" button after search.
- Fixed old keywords references not being removed from database when saved via quick edit

Let's see if dropdown's less confusing ;)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.7 (2008-09-22)
Post by: runway27r on October 03, 2008, 07:04:46 PM
Since I am transferring photos over from another database, I would like to keep the same "hits' total.

What would I have to do in this MOD so Quick Edit would show 'Hits' ?


THX
Paul
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.7 (2008-09-22)
Post by: V@nо on October 03, 2008, 07:25:07 PM
Do you do it manually?
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.7 (2008-09-22)
Post by: runway27r on October 04, 2008, 12:48:17 PM
Yes, manually.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.8 (2008-10-04)
Post by: V@no on October 04, 2008, 10:50:35 PM
What would I have to do in this MOD so Quick Edit would show 'Hits' ?
Install v4.8

v4.8 changes:
Quote
- Added: color in dropdown menu if it will affect search results
- Added: at "batch image edit" page keywords field will show unique keywords from all selected images
- Added: quick calendar for date inputs at quick edit and multi edit pages.
- Changed: "quick edit" is rewritten, now any image fields can be edited
- Changed: after save "batch image edit" shows result above search form (used to be results with a link to search form)
- Changed: layout at search form.
- Fixed: at batch image edit page fields showed the searched data
- Removed: $editname, $editdescription, $editkeywords, $editdate variables no longer used, $quickedit_default array used instead.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.8 (2008-10-04)
Post by: V@no on October 05, 2008, 01:11:39 AM
-when push on the top screen the reset button, comes a white page
If you mean that at search form page when you click reset button it shows a blank page - I don't have such problem...
Maybe if you give step-by-step instructions how to reproduce it we can find the problem.
(I'm using two submit buttons in the same form method, and it might fail on some PHP versions: http://forums.devshed.com/php-development-5/send-value-of-submit-button-204650.html)


-is the additional fields not standard? (image: not_standard)
Not unless you select it. This is done to avoid checkboxes as in previous version, if nothing selected - this field will not be used in image search at all. Word "Default" was added for those who don't know what these dropdown options means.


-quick edit field blank, is this for all images? (image: quick_edit) maybe insert lang text with Batch / Copy / Edit Modus
No, blank means don't use quick edit. I thought it would be easier to select a blank line if you don't want use quick edit instead of hold CTRL button and click on selected line to deselect it.
I've added explanation:
    $lang['quick_edit_fields_exp'] = "<span class=\"smalltext\">(Press and hold <b>CTRL</b> key to select multiple fields.<br />Deselect all fields or click on blank line on top to disable quick edit)</span>";


Thanks for the translation
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9 (2008-10-05)
Post by: V@no on October 05, 2008, 10:42:42 AM
the white page error comes on follows steps (see images)
-top page
-change username

It was because I was using $action variable and 4images filter it by default.
It should be fixed now in v4.9
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9 (2008-10-05)
Post by: Jan-Lukas on October 05, 2008, 01:16:53 PM
Thanks V@no
SUPER  :D

Everything folds very well

in the test however the picture name cannot be changed, does not store the new name

does that know times a testing?


Text is translated :wink:

thanks Harald
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.8 (2008-10-04)
Post by: m.a on October 05, 2008, 05:02:27 PM
@ für alle die deutsch lesen
vano hat die super funktion eingebaut, in der man die zusätzlichen felder wie gmap ganz einfach
und schnell bearbeiten kann (und zwar im batch edit modus)

folgende neuigkeiten
alle bilder ohne thumbnail mit der farbe rot gekennzeichnet.
editierbare bild felder wie gmap etc im batch modus

Hi ivan,

es gibt aber keine Batch Copy/Move/Edit Images v4.8 Version zum download!

Schöne Grüße
m.a
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9 (2008-10-05)
Post by: Jan-Lukas on October 05, 2008, 05:26:50 PM
Augen auf beim Download  :wink:

 Batch_CopyMoveEdit_Images_Config_v4.6.zip (2.81 KB - runtergeladen 39 Mal.)
 Batch_CopyMoveEdit_Images_v4.6.zip (18.54 KB - runtergeladen 36 Mal.)
 Batch_CopyMoveEdit_Images_Config_v4.8.zip (1.28 KB - runtergeladen 7 Mal.)
 Batch_CopyMoveEdit_Images_v4.9.zip (22.67 KB - runtergeladen 8 Mal.)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9 (2008-10-05)
Post by: rinaldos on October 05, 2008, 05:55:24 PM
Thanks a lot for the updates.
Would it be possible for future versions the following filed installed? With this extension, it is possible to enter the cat_id manual :-)
Direct behind this code
Code: [Select]
show_cat_select_row_type($lang['field_category'], $last_cat_id, 2, 0, $last_cat_id_type, 1, 0);
Here are the codes :-)
Code: [Select]
show_input_row($lang['image_cat_id'], "cat_id", "", $textinput_size);
and in Language section
GERMAN
Code: [Select]
$lang['image_cat_id'] = "Bild Kategorie enth&auml;t";ENGLISH
Code: [Select]
$lang['image_cat_id'] = "Image Category contains;t";
This would be for me a very useful extension

Gruß
Ingo
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9 (2008-10-05)
Post by: Jan-Lukas on October 05, 2008, 06:11:19 PM
*gg* baue ich auch gerade ein ;)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9 (2008-10-05)
Post by: rinaldos on October 05, 2008, 06:14:43 PM
Ich baue das bei jedem Update immer wieder ein :-) und die Updates sind gerade sehr schnell hintereinander:-)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9 (2008-10-05)
Post by: m.a on October 05, 2008, 06:24:22 PM
Augen auf beim Download  :wink:

 Batch_CopyMoveEdit_Images_Config_v4.6.zip (2.81 KB - runtergeladen 39 Mal.)
 Batch_CopyMoveEdit_Images_v4.6.zip (18.54 KB - runtergeladen 36 Mal.)
 Batch_CopyMoveEdit_Images_Config_v4.8.zip (1.28 KB - runtergeladen 7 Mal.)
 Batch_CopyMoveEdit_Images_v4.9.zip (22.67 KB - runtergeladen 8 Mal.)

Das meinte ich auch!
Es gibt keine Batch Copy/Move/Edit Images v4.8!

Ivan und v@no haben über Batch Copy/Move/Edit Images v4.8 geschrieben.

Quote
@ für alle die deutsch lesen
vano hat die super funktion eingebaut, in der man die zusätzlichen felder wie gmap ganz einfach
und schnell bearbeiten kann (und zwar im batch edit modus)

Gruß
m.a
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9 (2008-10-05)
Post by: V@no on October 05, 2008, 06:39:53 PM
Would it be possible for future versions the following filed installed? With this extension, it is possible to enter the cat_id manual :-)
Somehow I knew this will come out sooner or later...I might add it later. Its quiet complicated process, because the files will need to move around as well.
I leave it for later ;)

in the test however the picture name cannot be changed, does not store the new name
Yes, its a bug, also the date didn't get saved either.

Fixed in v4.9.1

I've removed previous version to avoid confusion ;)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9.1 (2008-10-05)
Post by: Sunny C. on October 05, 2008, 06:59:47 PM
Nice nice nice... v@no is the best :D
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9.1 (2008-10-05)
Post by: Jan-Lukas on October 05, 2008, 10:09:29 PM
Quote
Yes, its a bug, also the date didn't get saved either.

Fixed in v4.9.1
perfekt  :D

Thanks
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9.1 (2008-10-05)
Post by: Sunny C. on October 12, 2008, 09:33:53 PM
It is also possible to install a feature which is also the "Big" folder deletes, so the images in the folder deletes Big?
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9.1 (2008-10-05)
Post by: V@no on October 12, 2008, 11:38:59 PM
It is also possible to install a feature which is also the "Big" folder deletes, so the images in the folder deletes Big?
Sorry, I didn't quiet understand your question...The files in "big" folder also should get deleted when images deleted from the server.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9.1 (2008-10-05)
Post by: Sunny C. on October 13, 2008, 12:06:32 AM
Sorry for that shit englisch!

   
If images are deleted, then the images from the Big folder will be deleted.
If I've installed this modification makes the case in any meaningful
[MOD] Auto copy original file to /big/ folder : http://www.4homepages.de/forum/index.php?topic=7700.msg22313#msg22313

Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9.1 (2008-10-05)
Post by: V@no on October 13, 2008, 02:50:57 AM
If images are deleted, then the images from the Big folder will be deleted.
Yes, that is how this mod works - it deletes images from /big/ folder as well.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9.1 (2008-10-05)
Post by: V@no on October 13, 2008, 06:52:35 PM
Please explain step-by-step.

It erases whole table 4images_wordlist and 4images_wordmatch?
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9.1 (2008-10-05)
Post by: V@no on October 13, 2008, 07:30:38 PM
yes...
i fill my keywords...
next step is save
That was my point: where?
there are 3 different pages where you can fill out the keywords.
1) single image edit
2) multiple images edit
3) quick edit
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9.1 (2008-10-05)
Post by: mawenzi on October 13, 2008, 07:34:53 PM
@ ivan ... you are right ...  8O ...

@ v@no ... in my case ... 2) quick edit ( see first ... ) ...  :oops:

Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9.1 (2008-10-05)
Post by: V@no on October 13, 2008, 07:36:06 PM
weird...
Just tested on all 3 pages and all keywords being saved just fine, even keywords in russian

[EDIT]
Hmmm apparently I forgot post the updated version...I have fixed keywords problem in quick edit a few days ago...
try v4.9.2
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9.2 (2008-10-13)
Post by: mawenzi on October 13, 2008, 08:29:33 PM
@ v@no ...

1. thanks for update v.4.9.2 ... quick edit and keywords works wel ...


2. in version 4.9.2 line 2154 ff ...
Code: [Select]
  if (function_exists("show_date_input_row"))
    show_date_input_row($lang['field_date_after'].$lang['date_format'], "dateafter", "", $textinput_size);
  else
    show_date_input_row($lang['field_date_after'].$lang['date_format'], "dateafter", "", $textinput_size);
  if (function_exists("show_date_input_row"))
    show_date_input_row($lang['field_date_before'].$lang['date_format'], "datebefore", "", $textinput_size);
  else
    show_date_input_row($lang['field_date_before'].$lang['date_format'], "datebefore", "", $textinput_size);

... i think it should be ...
Code: [Select]
  if (function_exists("show_date_input_row"))
    show_date_input_row($lang['field_date_after'].$lang['date_format'], "dateafter", "", $textinput_size);
  else
    show_input_row($lang['field_date_after'].$lang['date_format'], "dateafter", "", $textinput_size);
  if (function_exists("show_date_input_row"))
    show_date_input_row($lang['field_date_before'].$lang['date_format'], "datebefore", "", $textinput_size);
  else
    show_input_row($lang['field_date_before'].$lang['date_format'], "datebefore", "", $textinput_size);
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9.2 (2008-10-13)
Post by: V@no on October 13, 2008, 08:43:18 PM
Good catch, thanks.
I'm testing it on 4images v1.7.6, and not sure if it still works on v1.7
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9.2 (2008-10-13)
Post by: V@no on October 13, 2008, 11:14:01 PM
That is expected.
There is no check if keywords were changed after submit form, the script simply removes all references to keywords for each image, then rebuilds the search index for that image.

You can check with default images.php it will be the same ;)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9.2 (2008-10-13)
Post by: angeloghiotto on October 15, 2008, 07:41:44 PM
great work!!!!
awesome!!!

 :D :D :D :D :D :D :D :D
thx a lot guy
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9.2 (2008-10-13)
Post by: Jan-Lukas on October 19, 2008, 07:24:00 PM
Hi,
Habe seit dem Update, ein spacer.gif auf dem Bild (im Admin)
finde aber keinen Eintrag, wo ich das entfernen kann.

Ist im Admin ja eigentlich überflüssig  :wink:

hoffe einer hat es schon gefunden, und weiss wo

LG Harald
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9.2 (2008-10-13)
Post by: whyte on October 22, 2008, 10:33:06 AM
Hello,
Silly question but will this mod work on 1.7.4?
I am keen to add it to my work flow especially for the multi image edit function
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9.2 (2008-10-13)
Post by: V@no on October 22, 2008, 03:03:47 PM
Silly question but will this mod work on 1.7.4?
It should.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9.2 (2008-10-13)
Post by: Jan-Lukas on October 22, 2008, 11:01:50 PM
Hi,
Habe seit dem Update, ein spacer.gif auf dem Bild (im Admin)
finde aber keinen Eintrag, wo ich das entfernen kann.

Ist im Admin ja eigentlich überflüssig  :wink:

hoffe einer hat es schon gefunden, und weiss wo

LG Harald

Kann da keiner Helfen ?
wenn ich eine ältere Datei hochlade, ist das spacer.gif weg, in der neuen (funktionierenden) Version ist es drin ?
Leider kann ich es in der Datei nicht finden, trotzdem muss ein Code dafür verantwortlich sein.

LG. Harald
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9.2 (2008-10-13)
Post by: V@no on October 23, 2008, 01:18:01 AM
Either google translate doesn't translate it right or you don't explain it enough ;)
I have no idea what is the problem and what is your question about...
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9.2 (2008-10-13)
Post by: Sunny C. on October 23, 2008, 02:11:16 AM
Vano, Lukas said that he had a graphic on the images in the admin area.
He searched for the grafiphic, but dont found it.
If he is now the old file before the update takes, then this chart would no longer exist.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9.2 (2008-10-13)
Post by: V@no on October 23, 2008, 04:31:25 AM
set to 0:
$use_media_template = 1; //use media template at edit image page (useful for non-image files)
to disable media templates.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9.2 (2008-10-13)
Post by: Jan-Lukas on October 23, 2008, 07:48:44 AM
Danke euch beiden, das wars  :wink:
hätte ich nie gefunden

 Harald
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.9.2 (2008-10-13)
Post by: SnaFy on November 07, 2008, 12:25:04 AM
hi V@no  :D
in this page  images.php?action=addimages i need Field Add images [New images displayed] to 30 and i need to modify  images.php?action=addimages 
I can order the deletion or addition of the field is I want
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.10 (2008-11-06)
Post by: V@no on November 07, 2008, 03:50:59 AM
hi V@no  :D
in this page  images.php?action=addimages i need Field Add images [New images displayed] to 30 and i need to modify  images.php?action=addimages 
try v4.10
I can order the deletion or addition of the field is I want
this sentence I didn't understand...or it's related to the sentence above?
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.10 (2008-11-06)
Post by: SnaFy on November 07, 2008, 11:55:55 AM
Quote
try v4.10
The problem was resolved first
Quote
this sentence I didn't understand...or it's related to the sentence above?
no
i need to show me like this

Code: [Select]
if cat_id}{endif cat_id} {lang_user_upload}
{lang_category} {cat_name}
{lang_media_file}
{lang_max_filesize}{max_media_filsize}
{lang_max_imagewidth}{max_media_imagewidth}
{lang_max_imageheight}{max_media_imageheight}
 Upload:

URL:

{lang_allowed_file_types} {allowed_media_types} 
{lang_thumb_file}
{lang_max_filesize}{max_thumb_filsize}
{lang_max_imagewidth}{max_thumb_imagewidth}
{lang_max_imageheight}{max_thumb_imageheight}
 Upload:

URL:

{lang_allowed_file_types} {allowed_thumb_types} 
{lang_image_name} 
{lang_description} {image_description} 
{lang_keywords} {image_keywords} 
{if captcha_upload}  {lang_captcha} 
 
{lang_captcha_desc} 
{endif captcha_upload}   
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.10 (2008-11-06)
Post by: V@no on November 07, 2008, 03:16:00 PM
I still not sure what exactly do you want, but maybe you can figure it out by yourself.
The code that responsible for generating the addimages page starts with:
Code: [Select]
if ($action == "addimages") {
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.10 (2008-11-06)
Post by: SnaFy on November 07, 2008, 03:41:03 PM
Quote
I still not sure what exactly do you want, but maybe you can figure it out by yourself.
The code that responsible for generating the addimages page starts with:

I want to write automated Keywords like that
]
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.10 (2008-11-06)
Post by: V@no on November 07, 2008, 03:44:26 PM
I guess you could try replace
Code: [Select]
    show_textarea_row($lang['field_keywords_ext'], "image_keywords_".$i, "", $textarea_size);
with:
Code: [Select]
    show_textarea_row($lang['field_keywords_ext'], "image_keywords_".$i, "your keywords here", $textarea_size);
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.10 (2008-11-06)
Post by: SnaFy on November 07, 2008, 04:21:46 PM
The problem was resolved
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.10 (2008-11-06)
Post by: V@nо on November 07, 2008, 07:41:31 PM
sorry, I have no idea what you are talking about...
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.10 (2008-11-06)
Post by: thehammer on November 14, 2008, 12:35:49 PM
at first, thank you for this incredible mod!

I've a request:

can you insert my little mod to change the image date under the quick edit page?

I explain:

I've changed this code in edit image
Code: [Select]
$title = $lang['field_date'].$lang['date_desc'].$lang['date_format'].((isset($file_src)) ? get_iptc_insert_link($file_src, "date_created", "image_date", 0) : ""); 

with this

Code: [Select]
$title = $lang['field_date'].$lang['date_desc'].$lang['date_format'].((isset($file_src)) ? get_exif_insert_link($file_src,"image_date", 0) : "");
to update the date with the EXIF date.

May be wonderful to use this in the Quick Edit.

Tia!



Title: Re: [MOD] Batch Copy/Move/Edit Images v4.10 (2008-11-06)
Post by: V@no on November 14, 2008, 03:43:29 PM
sorry, but get_exif_insert_link() is not part of 4images. It must be from a mod you've installed.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.10 (2008-11-06)
Post by: thehammer on November 14, 2008, 05:11:27 PM
Sorry!

This is the code to insert in the admin_functions.php 

Code: [Select]
function get_exif_insert_link($file, $input, $add_text = 1) {
  $exif = read_exif_data($file);
  ereg("([0-9]{4}):([0-9]{2}):([0-9]{2}) ([0-9]{2}):([0-9]{2}):([0-9]{2})", $exif["DateTimeOriginal"], $exif_data_created);
  $value = $exif_data_created[1].'-'.$exif_data_created[2].'-'.$exif_data_created[3].' '.$exif_data_created[4].':'.$exif_data_created[5].':'.$exif_data_created[6];
  if (!empty($value)) {
          $html = "\n<input type=\"hidden\" name=\"hidden_".$input."\" value=\"".trim($value)."\">\n";
          $html .= "<script language=\"javascript\">\n<!--\n";
          $html .= "this.document.writeln('<br /><br /><input type=\"button\" value=\"EXIF Date Time Original &raquo;: $value \" onClick=\"this.form.".$input.".value=".(($add_text) ? "this.form.".$input.".value + " : "")."this.form.hidden_".$input.".value\"> <br /><br />');";
          $html .= "\n//-->\n</script>\n";
          return $html;
     }
}
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.10 (2008-11-06)
Post by: thehammer on November 14, 2008, 09:21:13 PM
...my 2 cents for this MOD:

open images.php

goto to line 2846

after :

Code: [Select]
echo "<br />yyyy-mm-dd hh:mm:ss";

ADD
Code: [Select]
// EXIF Date
          $exif = read_exif_data(MEDIA_PATH. '/' .$image_row['cat_id'].'/'.$image_row['image_media_file']);
          ereg("([0-9]{4}):([0-9]{2}):([0-9]{2}) ([0-9]{2}):([0-9]{2}):([0-9]{2})", $exif["DateTimeOriginal"], $exif_data_created);
          $exif_value[i] = $exif_data_created[1].'-'.$exif_data_created[2].'-'.$exif_data_created[3].' '.$exif_data_created[4].':'.$exif_data_created[5].':'.$exif_data_created[6];
          if ( $exif_value[i] <> '-- ::' ){     
             echo "<br /><br /><a href='#' onClick=\"document.getElementById('image_date[$i]').value='$exif_value[i]'\";>EXIF date: <b>$exif_value[i]</b></a><br /><br />";
          }


Now you can, with a click, change the image date to original EXIF date  :)
 
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.11 (2008-11-22)
Post by: V@no on November 22, 2008, 07:37:40 PM
Try v4.11

Changes log:
Quote
- Fixed: Multi image upload adds user_id from last image to all images.
- Fixed: Wrong message showed when error occur while deleting image comments.
- Added: EXIF support, for now only DateTimeOriginal, DateTimeDigitized and DateTime EXIF values used in edit image page and in quick edit.
- Added: When selected "User ID" in quick edit it allowes you enter username instead of user id. To activate this feature you must install this: http://www.4homepages.de/forum/index.php?topic=23387.0
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.11 (2008-11-22)
Post by: Sun Zaza on December 11, 2008, 04:48:42 PM
Hi Vano,

I have to say that this mod is the best MOD ever made for 4images.

I have a question for you:

Is it possible to make it save your search choice as a template (Quick edit)?

I will explain:

I want the code save these choices:

1- Description + Date + Name
2- Name + 'additional field' + Activate


Is that a challenge for you? Is that possible?

Thanks in advance,


Title: Re: [MOD] Batch Copy/Move/Edit Images v4.11 (2008-11-22)
Post by: V@no on December 11, 2008, 05:24:56 PM
I'll think of this, but for now as a possible solution you could use two different browsers or different profiles in firefox...
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.11 (2008-11-22)
Post by: Sun Zaza on December 11, 2008, 05:26:15 PM
Thanks in advance :wink:
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.11 (2008-11-22)
Post by: Mimiru on December 14, 2008, 05:02:54 PM
EXIF function probably not full. Even with adding function get_exif_insert_link it can't find read_exif_data() =\
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.11 (2008-11-22)
Post by: V@no on December 14, 2008, 05:58:37 PM
Sorry, don't understand. Please explain.

If you meant exif_read_data() then it's php built-in function (php must be compiled with exif extension) If no such function available the script should continue work without exif support.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.11 (2008-11-22)
Post by: Mimiru on December 15, 2008, 04:38:54 PM
Quote
Sorry, don't understand. Please explain.
Ok. Here some quotes from previous post:

sorry, but get_exif_insert_link() is not part of 4images. It must be from a mod you've installed.

and

Sorry!

This is the code to insert in the admin_functions.php 

Code: [Select]
function get_exif_insert_link($file, $input, $add_text = 1) {
  $exif = read_exif_data($file);
  ereg("([0-9]{4}):([0-9]{2}):([0-9]{2}) ([0-9]{2}):([0-9]{2}):([0-9]{2})", $exif["DateTimeOriginal"], $exif_data_created);
  $value = $exif_data_created[1].'-'.$exif_data_created[2].'-'.$exif_data_created[3].' '.$exif_data_created[4].':'.$exif_data_created[5].':'.$exif_data_created[6];
  if (!empty($value)) {
          $html = "\n<input type=\"hidden\" name=\"hidden_".$input."\" value=\"".trim($value)."\">\n";
          $html .= "<script language=\"javascript\">\n<!--\n";
          $html .= "this.document.writeln('<br /><br /><input type=\"button\" value=\"EXIF Date Time Original &raquo;: $value \" onClick=\"this.form.".$input.".value=".(($add_text) ? "this.form.".$input.".value + " : "")."this.form.hidden_".$input.".value\"> <br /><br />');";
          $html .= "\n//-->\n</script>\n";
          return $html;
     }
}

But function from
Code: [Select]
$exif = read_exif_data($file);doesn't exist and script get error.
So probably this is mistake and read_exif_data we need replace to exif_read_data or we need add a missed function.

BTW does anybody test v4.11 with multiupload? It works fine?
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.11 (2008-11-22)
Post by: V@no on December 16, 2008, 01:14:03 AM
As I said in my previous reply read_exif_data() is built-in PHP function, but it must be enabled in php configuration. I sure can add detection if such function is enabled, but I only can guaranty it to work if you don't use the mod which add get_exif_insert_link() in admin_functions.php
In either case in next update I will add a settings to enable/disable exif.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.11 (2008-11-22)
Post by: mawenzi on December 16, 2008, 01:32:10 AM
@Mimiru

... only as a hint and information ...
... PHP and function exif_read_data ...
... http://www.4homepages.de/forum/index.php?topic=18352.msg100155#msg100155 ...
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.11 (2008-11-22)
Post by: Mimiru on December 16, 2008, 01:57:16 PM
I have checked php config, exif was disabled so problem has been found. ^^"

Quote
In either case in next update I will add a settings to enable/disable exif.
That was be great.  :roll:
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.11 (2008-11-22)
Post by: shadowhunter on December 19, 2008, 10:41:46 AM
@V@no
Good work! It's a very useful tool! Thanks a lot!

But something I missing (or it would be good to have):
- If i upload a new thumbnail on "images.php?action=editimage", then should be an option to select: New thumbnail resize automatically to the setting value in settings.
- If I have a html-file (or another file e.g video, music etc) to edit (on the same page as above), then should be possible with the right mouseclick or so to download the file from the ACP (better to type the changes directly in the ACP in the html-file :D )

This things is my    suggestion to make the best tool ;)
Thanks!
Greetings
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.12 (2008-12-26)
Post by: amboutwe on December 28, 2008, 12:52:05 AM
Thanks for the wonderful mod. I've been wishing for this and never though about looking for a mod to do it. I'm gunna look for mods next time I am wishing I could do something as it usually already exists.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.12 (2008-12-26)
Post by: Sun Zaza on December 28, 2008, 02:00:36 AM
Hi v@no,

I have an idea for your mod, maybe you can implement it in it.

When you add an image, you get the succes page like the example in the attachment.

I was thinking about adding a link to edit the image. Because If you realize for example that the image name wrong is, you can easily edit it again.
Now you have to do more than 2 steps  to go to the edit page.

What do you think about that?
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.13 (2008-12-27)
Post by: V@no on December 28, 2008, 05:55:11 AM
Thank you guys for the suggestions.

Changes in v4.12 and v4.13:

Code: [Select]
- Fixed: if error occur while saving an image, it didn't mark the form field where the error was.
 - Added: direct links to media/thumb files at edit image page. (links are at filename)
 - Added: new setting $exif_enable to enable/disable EXIF support. This setting will only work if PHP itself supports EXIF, otherwise it will be ignored and EXIF support will be disabled.

 - Added: image resize, thumbnail resize/create at add/edit image pages
 - Added: edit image link after new image added
 - Added: delete image link at image edit page (next to image name header)
 - Changed: image name field at add images page is no longer required, if left empty filename will be used
 - Changed: return to "add images" page after image(s) successfully added
 - Changed: improved message display after new image(s) added

New settings added:

Code: [Select]
$exif_enable = 1; //use exif? if PHP doesn't support read_exif_data() function, this setting will be ignored and exif support will be disabled.
$image_resize_default = 1; //resize image by default for add new images page (1 = yes, 0 = no)
$thumb_tools_default = 2; //thumbnail tools by default for add new images page (0 = skip, 1 = resize, 2 = create)

$image_resize_type = -1; //image resize type (-1 = use settings, 1 = proportionally, 2 = fixed width, 3 = fixed height)
$image_resize_quality = -1; //image quality (-1 = use settings, 0-100 = quality)
$image_resize_width = -1; //image resize width (-1 = use settings)
$image_resize_height = -1; //image resize height (-1 = use settings)

$thumb_resize_type = -1; //thumbnail resize type (-1 = use settings, 1 = proportionally, 2 = fixed width, 3 = fixed height)
$thumb_resize_quality = -1; //thumbnail quality (-1 = use settings, 0-100 = quality)
$thumb_resize_dimension = -1; //thumbnail resize dimention (-1 = use settings)

New language strings:

Code: [Select]
    $lang['skip'] = "Skip";
    $lang['resize'] = "Resize";
    $lang['create_thumb'] = "Create";
    $lang['thumb_tools_add'] = "Thumbnail tools<br /><span class=\"smalltext\"><b>Resize</b> - resize uploaded thumbnail<br /><b>Create</b> - create thumbnail from image file</span>";
    $lang['thumb_tools_edit'] = "Thumbnail tools<br /><span class=\"smalltext\"><b>Delete</b> - delete existing thumbnail<br /><b>Resize</b> - resize existing or new uploaded thumbnail<br /><b>Create</b> - create thumbnail from image file</span>";
    $lang['image_resize'] = "Resize image";
    $lang['image_resize_skipped'] = "Image resize skipped";
    $lang['image_resize_error'] = "Image resize error";
    $lang['image_resize_success'] = "<b>Image resized</b> (from %sx%s to %sx%s)";
    $lang['thumb_resize_skipped'] = "Thumbnail resize skipped";
    $lang['thumb_resize_error'] = "Thumbnail resize error";
    $lang['thumb_resize_success'] = "Thumbnail resized";
    $lang['thumb_create_skipped'] = "Thumbnail create skipped";
    $lang['thumb_create_error'] = "Thumbnail create error";
    $lang['thumb_create_success'] = "Thumbnail created";
    $lang['log'] = "Log";

@cruxy:
the presets feature is more complicated then I thought...it might take a while...
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.13 (2008-12-27)
Post by: Sun Zaza on December 28, 2008, 06:06:30 AM
You are welcome.

Quote
the presets feature is more complicated then I thought...it might take a while...

No proble.

I have another very important request:

How can I add a table separator to the additional fields in the add images page.

I will explain:

I have 10 additonal fields  on my gallery. everytime when I add an image I use only 3 additional fields. For example:

additional field 1
additional field 2
additional field 3

Table separator

additional field 4
additional field 5
additional field 6
...

PS: I will update my file right now. I cannot wait :D

Thanks again for your good work. I like it.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.13 (2008-12-27)
Post by: V@no on December 28, 2008, 06:18:35 AM
In admin/admin_functions.php find:
Code: [Select]
      $field_name = ($i) ? $key."_".$i : $key;
Insert above:
Code: [Select]
      if (in_array($key, array("additional_field_1", "additional_field_2", "additional_field_3")))
      {
        show_table_separator();
      }
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.13 (2008-12-27)
Post by: Sun Zaza on December 28, 2008, 06:26:49 AM
Thanks V@no.

I got this error:

Code: [Select]
Warning: Missing argument 1 for show_table_separator() in /hsphere/local/home/*****/*****/admin/admin_functions.php on line 351
 
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.13 (2008-12-27)
Post by: V@no on December 28, 2008, 06:27:59 AM
ok, try:

show_table_separator("");

(you can add some text if you want)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.13 (2008-12-27)
Post by: Sun Zaza on December 28, 2008, 06:31:35 AM
Perfect V@no. :D

It is working better than I thought.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.13 (2008-12-27)
Post by: Sun Zaza on December 28, 2008, 06:43:23 AM
I have a very important suggestion for you.

I will explain:

When You try to upload an image and you get an error. For example you forgot to choose the category. The problem is that the pad for uploading the image and the thumb disappear.
Then you have to choose it again for the second time.

What do you think about that?
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.13 (2008-12-27)
Post by: V@no on December 28, 2008, 06:54:03 AM
There is nothing I can do about that. Browsers for security reason don't allow change "file" fields.
But, depends on the OS you are using (not server's OS) you can quickly select previously opened files from the dropdown menu at "file upload" window.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.13 (2008-12-27)
Post by: Sun Zaza on December 28, 2008, 07:01:58 AM
Thanks V@no.

I am using Windows Vista 62 bit and he did not allow me to do that.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.13 (2008-12-27)
Post by: V@no on December 28, 2008, 07:37:06 AM
Perhaps we are talking about different things, but this is what I meant:


(http://img387.imageshack.us/img387/756/windowsvista20081228013pz0.png)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.13 (2008-12-27)
Post by: Sun Zaza on December 28, 2008, 01:12:25 PM
Actually I did the same, but I will try again later when I upload a file to the gallery.

Many thanks for your professional support :D
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14 (2008-12-28)
Post by: V@no on December 28, 2008, 06:43:42 PM
Change log for v4.14:

Code: [Select]
-Added: search form presetsTo save current form into a preset, type preset name at the bottom of the form.
If a preset with same name already present it will be overwritten.
If checkbox selected, the preset will be saved as "auto load" and will automatically used when you return to search form page.
If "reset" button pressed, the form will be restored to it's default and default will be used for "auto load"

New settings:
Code: [Select]
$presets_session = 0; //use sessions to store presets? (1 = yes, 0 = no) If no, use $presets_file
$presets_file = ROOT_PATH."data/images_presets.txt"; //file where presets will be stored. Must be writable!
$savesearchform setting is no longer used


New language strings:
Code: [Select]
    $lang['log'] = "Log";
    $lang['load'] = "Load";
    $lang['msg'] = "Message";
    $lang['presets'] = "Presets";
    $lang['preset_save'] = "Save this form in a preset<br /><span class=\"smalltext\">Use the checkbox to save the preset as \"auto load\"</span>";
    $lang['preset_load_error'] = "Error loading preset";
    $lang['preset_delete_error'] = "Error deleting preset";
    $lang['preset_save_error'] = "Error saving preset";
    $lang['preset_loaded'] = "loaded";

Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14 (2008-12-28)
Post by: shadowhunter on December 28, 2008, 07:16:37 PM
V@no, thanks a lot for your work!!!

It's perfect!

Good evening!
Greetings


PS: A short question: Is it possible that you make/implement for the user-search (admin/users.php) the same good part "search in additional user fields" into it? (In the user-search it hasn't much choice to looking for someone yet.) That would be very nice, because I could use it very well. Thank you in advance...
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14 (2008-12-28)
Post by: Sun Zaza on December 28, 2008, 10:47:20 PM
Hi V@no, congratulation. the new version is great.

I did not test everything yet, but I am doing it right now.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14 (2008-12-28)
Post by: Mr Kennedy on December 30, 2008, 05:34:29 PM
Maybe my mistake but always when i change Category ID with Edit Images the "Picture" change the Category - but the Picture-File and the Thumbnail-File are still in the old category.

My mistake? Or a Bug?
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14 (2008-12-28)
Post by: Sun Zaza on December 30, 2008, 05:36:56 PM
I have the same problem with the quick edit (Cat_id)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14 (2008-12-28)
Post by: V@nо on December 30, 2008, 09:29:32 PM
hi guys. I will look into it this evening, but it would very helpful if you'd post step-by-step how to reproduce the issue.
Thanks
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14 (2008-12-28)
Post by: Mr Kennedy on December 30, 2008, 09:59:48 PM
hi guys. I will look into it this evening, but it would very helpful if you'd post step-by-step how to reproduce the issue.
Thanks

Ok.
So i go to the ACP.
Click on Edit Images, activate Category ID at Quick Edit Options, search images, and then found images changed the Category ID by quick editing.
Saved with the button, down on the site.
Then just the Image is moved, the Image-File and the Thumbnail-File is still in the old category.

Hope you understand  :)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14 (2008-12-28)
Post by: Sun Zaza on December 30, 2008, 10:02:49 PM
Excactly :?
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14 (2008-12-28)
Post by: V@nо on December 30, 2008, 10:21:05 PM
Perfect explanation. Thank you.
Is this only afect quick edit? Single image full edit works fine?
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14 (2008-12-28)
Post by: Mr Kennedy on December 30, 2008, 10:43:47 PM
Perfect explanation. Thank you.
Is this only afect quick edit? Single image full edit works fine?

No Problems with Single editing or normal moving of images, just with quick category changing ;)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: V@no on December 31, 2008, 04:43:20 AM
Ok, I think it's fixed now in v4.14.1

Changes:
Code: [Select]
- Fixed: incorrect loaded preset name displayed when clicked "back" button
 - Fixed: would not let save new preset if "Default" selected in the dropdown
 - Fixed: quick edit category id would not move images
 - Changed: save at quick edit will only update images that had changes
 - Changed: "Media file" and "Thumb file" removed from quick edit options. This is due to possible conflicts with existing filenames
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: Mr Kennedy on December 31, 2008, 08:24:10 AM
Awesome Job  :thumbup:

Working :)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: Sun Zaza on December 31, 2008, 10:32:47 PM
Hi V@no,

The preset function did not work for me. When I press "Save" I got an empty page. No error and no results.

The file images_presets.txt is writable (666).

I wonder why.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: V@no on January 01, 2009, 01:36:23 AM
how about other buttons?
did you try different browser?
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: Sun Zaza on January 01, 2009, 01:41:16 AM
Happy new year V@no.

By the quick edit I chose the image name then I typ the preset name and then I click on save. The results is a blank page.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: V@no on January 01, 2009, 01:44:29 AM
oh wait...is your PHP v4 or 5?

I forgot add support for PHP v4...will be fixed in next version.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: Sun Zaza on January 01, 2009, 01:49:12 AM
PHP Version 4.4.8
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: V@no on January 01, 2009, 08:19:14 AM
I don't have access to PHP v4, would please test this code: (add it at the top of images.php, below <?php)

//PHP 4.2.x Compatibility function
//http://php.net/manual/en/function.file-get-contents.php#80707
if (!function_exists('file_get_contents'))
{
  function file_get_contents($filename, $incpath = false, $resource_context = null)
  {
    if (false === $fh = fopen($filename, 'rb', $incpath))
    {
      trigger_error('file_get_contents() failed to open stream: No such file or directory', E_USER_WARNING);
      return false;
    }
    
    clearstatcache();
    if ($fsize = @filesize($filename))
    {
      $data = fread($fh, $fsize);
    }
    else
    {
      $data = '';
      while (!feof($fh))
      {
        $data .= fread($fh, 8192);
      }
    }
    fclose($fh);
    return $data;
  }
}
//http://www.phpbuilder.com/board/showthread.php?t=10292234#post10721510
if (!function_exists('file_put_contents'))
{
  // Define flags related to file_put_contents(), if necessary
  if (!defined('FILE_USE_INCLUDE_PATH'))
    define('FILE_USE_INCLUDE_PATH', 1);
  if (!defined('FILE_APPEND'))
    define('FILE_APPEND', 8);
  function file_put_contents($filename, $data, $flags = 0)
  {
    // Handle single dimensional array data
    if (is_array($data))
    {
      // Join the array elements
      $data = implode('', $data);
    }
    // Flags should be an integral value
    $flags = (int)$flags;
    // Set the mode for fopen(), defaulting to 'wb'
    $mode = ($flags & FILE_APPEND) ? 'ab' : 'wb';
    $use_include_path = (bool)($flags & FILE_USE_INCLUDE_PATH);
    
    // Open file with filename as a string
    if ($fp = fopen("$filename", $mode, $use_include_path))
    {
      // Acquire exclusive lock if requested
      if ($flags & LOCK_EX)
      {
        if (!flock($fp, LOCK_EX))
        {
          fclose($fp);
          return false;
        }
      }
      
      // Write the data as a string
      $bytes = fwrite($fp, "$data");

      // Release exclusive lock if it was acquired
      if ($flags & LOCK_EX)
      {
        flock($fp, LOCK_UN);
      }
      fclose($fp);
      return $bytes; // number of bytes written
    }
    return false;
  }
}
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: Sun Zaza on January 01, 2009, 11:17:38 AM
I have one word for you. :thumbup:

I have just tested and it is working. :D
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: shadowhunter on January 07, 2009, 09:34:25 AM
Hello!

I have a other proposal to improve this mod:

- Is it possible, to search in all images that have a big-image in the big-folder?
- When I edit an image then should shown a notice that this image has a big image...    In addition: e.g to delete the big-image in edit page etc...

Great work v@no!
Thanks!
Greetings
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: Fere on January 27, 2009, 11:45:45 PM
Extremelly usefull stuff!

It hasn't ocured to me that i'd need these modifications.
It worked excelent, no problems, though at first when ading e-trader_2002's mod it didn't work. Search didn't gave results. I had investigated for the problem and found out one misplaced acolade which was the culprit. I'm to blame because of my fatigue.

I just wonder why this stuff doesn't come by default installation... I mean it's really really usefull!

Thanks V@no and e-trader_2002! Keep up the good work!
Whish I could code PHP myself so I could do my own mods... I think I'll start from ground zero tomorow on w3schools.

Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: xphot on January 31, 2009, 03:52:58 AM
 :D Thank You
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: shadowhunter on March 03, 2009, 11:31:48 AM
Hi!

I have found a bug (probably):
- If I would like to add a thumbnail in the ACP (admin/index.php?goto=images.php) to an image and this new thumbnail makes an error because of the mime-typ, then the image-file will be deleted!
(Note: The image had no thumbnail before I add a new thumbnail.)

Another note:
This MOD isn't compatible with the MOD Histogram (#11: http://www.4homepages.de/forum/index.php?topic=11844.msg62989#msg62989).
The histogram image isn't deleted after I've deleted the image-file.

Thanks for this great mod.
Greetings
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: V@no on March 03, 2009, 02:48:45 PM
- Is it possible, to search in all images that have a big-image in the big-folder?
Since no information about big images is stored in the database, there is no way to tell which image has a big image, and which doesn't without scanning all images.

- When I edit an image then should shown a notice that this image has a big image...    In addition: e.g to delete the big-image in edit page etc...
Good idea, will add into next version.

I have found a bug (probably):
- If I would like to add a thumbnail in the ACP (admin/index.php?goto=images.php) to an image and this new thumbnail makes an error because of the mime-typ, then the image-file will be deleted!
(Note: The image had no thumbnail before I add a new thumbnail.)
Confirmed and fixed. Will be available in next version.

Another note:
This MOD isn't compatible with the MOD Histogram (#11: http://www.4homepages.de/forum/index.php?topic=11844.msg62989#msg62989).
The histogram image isn't deleted after I've deleted the image-file.
I've added this feature, will be available in next version, however I can't test it myself, because I don't have that mod installed...

Hopefully I'll release new version this week, got hold up by a new feature I'm working on, turned out to be more complicated then I've expected...
[EDIT]probably won't be able release it this month...not enough time, plus with such long break, now need catch up with the changes I've already made and the changes needs to be made...[/EDIT]
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: son_gokou on March 15, 2009, 01:54:59 AM
Where's images.php ?
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: V@no on March 15, 2009, 02:03:43 AM
It's attached (http://www.4homepages.de/forum/index.php?topic=6759.msg29585#post_attachment) to the first post
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: son_gokou on March 15, 2009, 02:04:52 AM
Thanks a lot :)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: son_gokou on March 15, 2009, 06:54:31 PM
How can I increase the size of the title field when editing it?
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: V@no on March 15, 2009, 08:15:52 PM
It uses 4images global size defined in admin/admin_global.php
You can override the size by inserting into config section:
$textinput_size = 70;

Or if you are using Firefox use this extension:
Resizeable Textarea (https://addons.mozilla.org/firefox/addon/3818) or Greasemonkey script: Resizeable Text Fields (http://userscripts.org/scripts/show/42433)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: son_gokou on March 15, 2009, 10:07:11 PM
It isn't working here...
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: V@no on March 15, 2009, 10:12:11 PM
You are correct, I guess I forgot include size into these input fields...will be fixed in next version.

[EDIT]
@Nicky:
they are referrer to quick edit fields, they all don't obey the global sizes, they use browser's default size.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: Nicky on March 15, 2009, 10:12:49 PM
It isn't working here...

this works fine in admin/admin_global.php if you need it rightnow

example
Code: [Select]
if (strstr(getenv("HTTP_USER_AGENT"), "MSIE")) { // Browser Detection
  $textinput_size = "100";
  $textinput_size2 = "100";
  $textarea_size = "100";
}
else {
  $textinput_size = "100";
  $textinput_size2 = "100";
  $textarea_size = "100";
}
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: CarstenM on April 09, 2009, 06:52:23 PM
hab die image.php draufgehauen auf den server aber jetzt kann ich nichts mehr aufrufen =( komm einfach blank...
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: Nicky on April 09, 2009, 07:01:19 PM
im V@no's ersten post, sind 2 zip dateien, eine enthält "images_config.php" diese musst du auch uploaden.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: CarstenM on April 09, 2009, 07:02:31 PM
die hab ich acuh geuppt! in admin oder?? muss ich dann sonst noch was machen?

dann geht nicht mehr hinzufügen und bearbeiten sobald die alte image wieder drauf ist gehts wiedeR!
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: CarstenM on April 09, 2009, 07:44:05 PM
i have no pictures and add pictures and edit pictures is blank...
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: V@no on April 10, 2009, 02:56:16 AM
in version 4.14, after save over 60 images, comes a blank site (admin panel on left side is okay)
settings with image name, description and keywords!
Sorry, I didn't understand this part...

i have no pictures and add pictures and edit pictures is blank...
try this:
http://www.4homepages.de/forum/index.php?topic=6759.msg129956#msg129956
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: V@nо on April 11, 2009, 12:14:49 AM
is it quick edit? batch edit?
if it's quick edit and edit only name, can you edit more then 60 images?
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: V@no on April 11, 2009, 02:46:22 AM
It's quick edit ;)

I don't have such problem on my test site...just tested with 500 images per page, everything was ok (only browser chocked and almost died)
If it's exactly 60 images, then I'd suspect it's some sort of restrictions on your server...try get access to error logs and see if anything showed there.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: CarstenM on April 12, 2009, 07:22:17 PM
@V@no now it works thx =)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: khan on April 20, 2009, 04:45:06 PM
Hi!
i am trying to download this mod but when i click on the given link to attachemnts its just reload the page and nothing happens,
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: V@no on April 21, 2009, 01:55:30 AM
Something wrong with your browser if it only refreshes the page, it supposed to scroll down to the attached files.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: khan on April 25, 2009, 07:59:37 AM
Thanx v@no!
i dont know some thing was wrong with my browser or what? but today i found both files in the same post. thanx
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: whosthis.ee on June 05, 2009, 05:18:06 PM
Hi

how to change comma ( , ) as a keyword separator instead of space
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: merz on June 09, 2009, 06:01:57 AM
Thanks a lot this mod has just made my life so much easier, thank you again and great job!
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: cyshift on June 09, 2009, 01:43:14 PM
hallo zusammen,

ich habe mich schon quer durch das forum gelesen aber leider nichts gefunden.

und zwar benötige ich eine erweiterung wie im folgenden mod:
http://www.4homepages.de/forum/index.php?topic=6759.0

leider fehlen hier die "buttons" iptc einlesen, damit die iptc-daten aus bild dem ausgelesen werden und in die felder keywords & description geladen werden.
diese funktion gibt es bereits, wenn man ein einzelnes bild editiert.

allerdings hätte ich gerne eine kurzübersicht / batch, damit ich relativ schnell alle iptc datein einlesen/importieren kann.

vielleicht habt ihr eine idee wie ich das machen kann?
evtl. kann man den o.g. mod erweitern?

vielen dank im voraus
gruß cyshift
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: whosthis.ee on August 27, 2009, 07:51:57 PM
Hi

i have installed ADDITIONAL IMAGE FIELD Mod (http://www.4homepages.de/forum/index.php?topic=20748.0)

now while editing the images in bulk only Description & Keyword fields appears, Photograph field not appearing

i want to add/edit Photograph filed for 10 images at one shot

pls help
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: eeyipes on August 30, 2009, 07:58:15 AM
Thank you so much for this mod, it is going to be such a huge timesaver for me!  I am constantly reorganizing categories and such.

I have just one little request . . .  can we have the thumbnail url added to the list of things to bulk edit with this? That would be sweeeettt!f
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: eeyipes on August 31, 2009, 07:39:52 PM
Forget that last message, I see the media and thumbnail edit choices were commented out in images. php - uncommented them back in and they work great.  Thanks!
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: ahsancharming on October 05, 2009, 04:35:34 AM
awessooooooooooooooooooooooome work..mind blowing..superb..time saving..marvellous..
really you win my heart..thanx alot.  :)

in my edit images page (WATER MARK) options r not coming? may i know y?
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: Melder on November 12, 2009, 05:37:31 PM
Hi,

this Mod is very good, but I have a question:

is use the "More Pictures on Detail Page-MOD" http://www.4homepages.de/forum/index.php?topic=25279.0 (http://www.4homepages.de/forum/index.php?topic=25279.0) and everything works fine, but when i select  the "Image_Group"-field or the "Image_Group_Image"-field for Quickedit, the fields were shown in Quickedit, but they were not changeable!!! Every other field, which was build by myself is changeable!!!
How can i find the mistake ?

Thanks for every help, Achim
(sorry for the bad englisch)

auf Deutsch nochmal:

ich benutze den "more pictures on detail page"-MOD und alles läuft einwandfrei, nur wenn ich das "image-group"- und/oder "image_group_image"-Feld für Quick-Edit auswähle, werden zwar die Felder in Quickedit angezeigt, aber sie sind nicht veränderbar! Alle anderen von mir selbst eingefügten Felder funktionieren hingegegen mit Quickedit!
Woran kann das liegen???

Vorab vielen Dank, Achim
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: V@no on November 13, 2009, 12:55:26 AM
I think it's a bug in the mod you are referring to. In step 2 replace the code with:
//######################################## Start MOD: More Pictures on Detail Page #################################################
$additional_image_fields['image_group_image'] = array($lang['image_group_image'], "text", 0);
$additional_image_fields['image_group'] = array($lang['image_group'], "text", 0);
//######################################## End MOD: More Pictures on Detail Page #################################################
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: Jan-Lukas on May 21, 2010, 06:19:51 PM
Ich habe ja jetzt folgende Mods eingebaut, und hätte da gerne auch die Felder zum bearbeiten

[MOD]More Pictures on Detail Page
http://www.4homepages.de/forum/index.php?topic=25279.0

MOD WIKIPEDIA
http://www.4homepages.de/forum/index.php?topic=24975.0

Das Suchwort für Wiki kann man ja schon eingeben, aber nicht freischalten
Und beim [MOD]More Pictures on Detail Page, müsste man die Gruppe, und das Gruppenbild aktivieren können.

siehe Bild

LG Harald

Edit: upps, zum Mod [MOD]More Pictures on Detail Page steht ja schon was ;) werde ich testen

die Änderung von V@no klappt super, sollte im Mod auch geändert werden  :wink:

Erledigt: es muss im Mod Wiki so heißen

$additional_image_fields['image_allow_wiki'] = array($lang['image_allow_wiki'], "text", 0);
$additional_image_fields['image_wiki'] = array($lang['image_wiki'], "text", 0);

LG
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: Guldstrand on June 02, 2010, 02:28:45 AM
I can´t get this mod to work.
I´m always getting:
Quote
No new images added!
..when trying to auto insert new images with "Check new images" -option in admin.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: V@no on June 02, 2010, 02:48:05 AM
check new images has nothing to do with this mod...

Feel free start a new topic in troubleshooting section or check out [MOD] Check new images in ALL categories v2.11 (updated 22-04-2006) (http://www.4homepages.de/forum/index.php?topic=4754.0) it could possible give more details if there is a problem.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: Hoang on July 01, 2010, 10:18:19 AM
is it possible to add find in sub-categories ?
like in attachment

Thanks
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.14.1 (2008-12-30)
Post by: Hoang on July 17, 2010, 06:00:15 AM
I hope your support for above question
Thank you!
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15 (2010-07-17)
Post by: V@no on July 17, 2010, 08:26:44 AM
is it possible to add find in sub-categories ?
like in attachment

Thanks
Added in v4.15
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15 (2010-07-17)
Post by: surferboy on July 17, 2010, 08:56:54 AM
Hi -

Thanks for the the update. Can you advise how to upgrade from v4.14 to v4.15?

Do I just download the 4.15 zip file, and upload that over the existing file?

Thanks so much.

Brian
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15 (2010-07-17)
Post by: V@no on July 17, 2010, 08:57:48 AM
Do I just download the 4.15 zip file, and upload that over the existing file?
Correct.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15 (2010-07-17)
Post by: V@no on August 14, 2010, 08:58:12 PM
Try v4.15.1
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.1 (2010-08-14)
Post by: kubiczek on August 25, 2010, 07:47:40 AM
Hallo,

ist es möglich den Bild-Dateinamen zu ändern (nicht den Bildnamen)?

man kann nach den Bild-Dateinamen suchen, aber ich finden nicht die Option ihn zu ändern.

gruß
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.1 (2010-08-14)
Post by: Tino23 on August 31, 2010, 08:29:23 AM
Die Aktuelle Version 4.15.1 kann ich die auch für die 4images Version 1.7.7 benutzen, oder warum wird die alte Versino auch noch zum Download angeboten?

Und was genau kann ich mi der Datei image_config.php alles in den Einstellungen verändern?
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.1 (2010-08-14)
Post by: V@no on August 31, 2010, 02:34:06 PM
hi vano,
now can this fix integrate?
http://www.4homepages.de/forum/index.php?topic=27747.msg150090#msg150090
Yes, these fixes also integrated.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.1 (2010-08-14)
Post by: V@nо on September 01, 2010, 04:54:57 AM
the v4.15.1 is the latest that has support for new way of keywords handling introduced in 4images 1.7.8 (is that what you had question about?)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.1 (2010-08-14)
Post by: Abu Abdullah on September 17, 2010, 03:05:39 AM
hi vano,

is there a way to change file name and extension without access to database ?

for example i have file : z100.jpg i want to change it to b10.gif

if you add this feature to this MOD it will be more great :)

Thank you
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.1 (2010-08-14)
Post by: achraf on September 26, 2010, 01:53:26 PM
Merci mr V@no pour ce important mod
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.1 (2010-08-14)
Post by: DPHAZE on November 22, 2010, 04:48:03 PM
Hello V@no,

the v4.15.1 is the latest that has support for new way of keywords handling introduced in 4images 1.7.8 (is that what you had question about?)

But it doesn't work anymore with a fresh installation of v1.7.9.

The wordlist_table and the wordmatch_table aren't updated.

Is there a chance so fix that? Because without your awesome mod it's nearly impossible to work seriously with 4images.

Thanks in advance

Cheers!
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.1 (2010-08-14)
Post by: DPHAZE on December 13, 2010, 03:06:22 AM
push....
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.2 (2010-12-12)
Post by: V@no on December 13, 2010, 03:45:12 AM
In my tests keywords are saved fine, are you sure you downloaded v4.15.1 and not 4.14.1?

Anyhow I did discover a bug related to keywords. It also affects the default images.php from v1.7.8-1.7.9 package:
when used newline as keyword separator it saves keywords correctly separated by comma into images table, but in wordlist table it saves them as one keyword with newlines.
This has been fixed in v4.15.2
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.2 (2010-12-12)
Post by: DPHAZE on December 13, 2010, 03:09:06 PM
In my tests keywords are saved fine, are you sure you downloaded v4.15.1 and not 4.14.1?

Anyhow I did discover a bug related to keywords. It also affects the default images.php from v1.7.8-1.7.9 package:
when used newline as keyword separator it saves keywords correctly separated by comma into images table, but in wordlist table it saves them as one keyword with newlines.
This has been fixed in v4.15.2


Thanks a lot,

now it works.

Cheers!

EDIT

No, hold the horses...

it works with one single image only. if i try to update a bunch of images at once, the keywords are not updated.

thats really strange, isn't it? V@no, do you have any idea what's going wrong?



Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.2 (2010-12-12)
Post by: Tino23 on December 17, 2010, 05:04:24 PM
Hi, ich habe gerade auf die Version 1.7.9 geupdatet und die images.php 4.15.2 mit hochgeladen. Wenn ich jetzt auf Bild bearbeiten gehe wird mir in der linken oberen Ecke auf dem zu bearbeitendem Bild daas rote Kreutz angezeigt, als wenn eigentlich kein Bild gefunden wurdde. Kopiere ich hingegen die Originale images.php wieder rein, ist der Fehler weg.... An was könnte das liegen?
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.2 (2010-12-12)
Post by: V@no on December 18, 2010, 01:26:39 AM
No, hold the horses...

it works with one single image only. if i try to update a bunch of images at once, the keywords are not updated.
I have no idea what was I thinking when wrote that part that saves keywords on multi image edit...it should work now in v4.15.3

Hi, ich habe gerade auf die Version 1.7.9 geupdatet und die images.php 4.15.2 mit hochgeladen. Wenn ich jetzt auf Bild bearbeiten gehe wird mir in der linken oberen Ecke auf dem zu bearbeitendem Bild daas rote Kreutz angezeigt, als wenn eigentlich kein Bild gefunden wurdde. Kopiere ich hingegen die Originale images.php wieder rein, ist der Fehler weg.... An was könnte das liegen?
Any screenshots?
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.3 (2010-12-17)
Post by: Tino23 on December 18, 2010, 10:16:36 AM
(http://tino23.lsfs.de/1.jpg)
 Scheint irgendwie im Ohost bzw. Funpic auch zusammen zu hängen, denn auf einem anderem Webspace geht es. Bloß halt die Frage warum die Originale images.php nicht den selben Fehler bei Ohost zeigt...
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.3 (2010-12-17)
Post by: V@no on December 18, 2010, 06:59:27 PM
Scheint irgendwie im Ohost bzw. Funpic auch zusammen zu hängen, denn auf einem anderem Webspace geht es. Bloß halt die Frage warum die Originale images.php nicht den selben Fehler bei Ohost zeigt...
It's because original images.php doesn't use media templates.
Please show your jpg.html template.

P.S.
You could also disable use of templates by changing to 0:
$use_media_template = 1; //use media template at edit image page (useful for non-image files)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.3 (2010-12-17)
Post by: Tino23 on December 18, 2010, 07:15:56 PM
OK mit der Originalen jpg.html gehts wieder.
Meine hatte noch den MOD drin http://www.4homepages.de/forum/index.php?topic=4906.0 (http://www.4homepages.de/forum/index.php?topic=4906.0)
Code: [Select]
<table border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td background="{media_src}">
      <img src="{template_url}/images/spacer.gif" border =" 0" alt="{image_name}" {width_height} border="0" vspace="0" hspace="0" align="absmiddle">
    </td>
  </tr>
</table>
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.4 (2010-12-18)
Post by: V@no on December 18, 2010, 07:33:39 PM
I think you'd better off disable the use of templates, because browser doesn't resize the background image, you'll see only the top left corner of the image instead.

Anyway, I've updated to v4.15.4, try it now, but I suspect you won't like the result ;)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.4 (2010-12-18)
Post by: Tino23 on December 18, 2010, 09:05:27 PM
Irgendwie hab ich aber noch Probleme mit den Keywords multi image edit. Wenn ich z.B. Wartburg eingebe wird das Bild unter dem Word gefunden gebe ich Wartburg, 311 wird das Bild unter dem Keyword Wartburg nicht mehr gefunden. Erst wenn ich das Bild einzeln Bearbeite und die Keyword so abspeicher dann geht es... Hab mir die Aktuelle Version 4.15.4 dazu runtergeladen ( in der Datei selber steht aber 4.15.3 ) ist das immer noch ein Fehler?
Wenn ich jetzt ein Einzelbild Bearbeiten will in der 4.15.4 Version erhalte ich auch keine Vorschaubilder mehr!
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.4 (2010-12-18)
Post by: V@no on December 18, 2010, 09:24:19 PM
Are you talking about words in "image keywords" or in "image name" / "image description"?
Can you give step-by-step how to reproduce it?
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.4 (2010-12-18)
Post by: Tino23 on December 18, 2010, 09:30:21 PM
Wenn ich auf Multiedit gehe im ACP und dort die Keyword für die Bilder eingebe (image keywords), werden meine Bilder nur gefunden, wenn ich dort 1 Keyword nur eingebe. Sobald ich ein zweites dahinter Schreibe wird das Bild nicht mehr unter den Keywords gefunden.

Gehe ich aber auf Einzelbild Bearbeitung ( der Link unter dem Bild in der Galerie ) und gebe dort meine Keywords ein, dann geht alles und das Bild wird unter allen  Keywords gefunden.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.4 (2010-12-18)
Post by: V@no on December 18, 2010, 10:16:44 PM
The keywords must be separated by a comma, not space. In my tests keywords being saved identically from single image or multi-image edit page.
I'm testing with the following keywords:
Quote
keyword1, keyword2, keyword3 keyword4, keyword5
when I search for "keyword1" or "keyword2" or "keyword5", all images are found however when I search for "keyword3" or "keyword4" nothing is found, because there is no such keywords, there is a "keyword3 keyword4" which is a multi-word keyword.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.4 (2010-12-18)
Post by: khansahib on December 28, 2010, 08:48:49 AM
Thanks for such a nice [MOD]
i've one question.. can i copy/move to multiple categories in one go???
Thanks  :)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.4 (2010-12-18)
Post by: V@no on January 06, 2011, 06:29:46 PM
What error message?
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.4 (2010-12-18)
Post by: V@no on January 06, 2011, 08:41:02 PM
try v4.15.5
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.5 (2011-01-06)
Post by: V@no on January 06, 2011, 11:22:29 PM
Works fine for me:
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.6 (2011-01-07)
Post by: V@no on January 07, 2011, 06:53:05 PM
As they say "A picture worth a thousand words"
Thank you


Fixed in v4.15.6

Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.6 (2011-01-07)
Post by: Tino23 on January 09, 2011, 10:33:39 AM
Seit der Version 4.15.4 hab ich das Problem, dass ich keine Bilder mehr angezeigt bekomme, wenn ich in der Galerie unter den Bildern auf Bearbeiten gehe.

Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.6 (2011-01-07)
Post by: V@no on January 09, 2011, 05:36:50 PM
Seit der Version 4.15.4 hab ich das Problem, dass ich keine Bilder mehr angezeigt bekomme, wenn ich in der Galerie unter den Bildern auf Bearbeiten gehe.
I believe we've previously discussed that issue with you...
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: V@no on January 09, 2011, 06:44:43 PM
Yes, I saw your post, (thank you for the translation) but the issue is not related to this mod. It's 4images itself issue.
However, while checking the code I found two other bugs. Fixed in v4.15.7
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: Tino23 on January 09, 2011, 08:16:12 PM
@ V@no Ja ich weiß, aber ich hab jetzt die Originale jpg.html wieder eingespielt und bis zu der Version 4.15.3 hat auch alles wunderbar hingehauen. Erst mit dem Update auf 4.15.4 war der Fehler wieder da.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: V@no on January 09, 2011, 08:39:36 PM
In that case I'll need to see the page source from your browser.

P.S.
or use
Code: [Select]
$use_media_template = 0; //use media template at edit image page (useful for non-image files)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: Tino23 on January 09, 2011, 08:48:40 PM
Quote
P.S.
or use
Code: [Select]
$use_media_template = 0; //use media template at edit image page (useful for non-image files)
Mit der Einstellung ist es wieder OK.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: micksb on April 16, 2011, 02:14:51 AM
This mod just saved me a ton of work and time. Awesome. Thanks!
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: khansahib on May 27, 2011, 04:02:42 AM
its a very nice MOD.
but can u please add something like this to it http://www.4homepages.de/forum/index.php?topic=27570.msg149155
the problem with that mod is it links images and assigns the id to only one image at a time, while i want to assign IDs to multiple images with batch edit images option.
Hope u'll find a way to my problem..
Thanks :)
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: Tino23 on June 13, 2011, 10:56:26 AM
Kann ich die Datei (v4.15.7) in der neuen 1.7.10 Version ohne Änderrungen übernehmen?
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: Rembrandt on June 13, 2011, 11:01:08 AM
ich habe sie gestern getestet, funktioniert.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: Jan-Lukas on June 13, 2011, 10:24:27 PM
folgendes Problem
Wenn ich unter diesem Mod Bilder bearbeite, werden die Bilder nicht mehr in der suche gefunden.
Es ist so, als wenn die Schlüsselwörter aus dem Such Index entfernt werden statt gesetzt.
Man muss dann entweder wieder das plugin "Rebuild Search Index" ausführen, oder die besagten Bilder über die Galerie bearbeiten, dann werden diese auch wieder gefunden.

LG
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: Rembrandt on June 15, 2011, 06:11:51 PM
folgendes Problem
Wenn ich unter diesem Mod Bilder bearbeite, werden die Bilder nicht mehr in der suche gefunden.
...
ich denke das ist ein kl. bug, suche 4x:

if (KEYWORDS_NEW && $image_column == 'image_keywords')

ersetze es (4x):

if (!KEYWORDS_NEW && $image_column == 'image_keywords')


wichtig dabei ist aber auch das in der includes/constants.php der wert (versions nummer):
Code: [Select]
// Script version
define('SCRIPT_VERSION', '1.7.10');
der richtige ist, da dieser mod die version prüft und je nach dem welche version es ist ( >= 1.7.8 ) die "keywords" unterschiedlich gehandhabt werden.

mfg Andi
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: Jan-Lukas on June 15, 2011, 07:24:21 PM
Perfekt  8)

das mit der Script version wusste ich auch noch nicht, war aber natürlich richtig, habe ja update gemacht  :roll:

Big Thanks, und auf ein neues  :twisted:
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: kimchu on August 23, 2011, 08:23:27 AM
Very very nice replacement, clean and easy to update. Thank-you !!!

Used it with Multi-lightbox (with its changes to adm/images.php) and its seems to work with no problems. Awesome job.

Kim
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: nephot on October 02, 2011, 10:28:58 AM
This looks like a great mod, which I'd like to add.
Could you tell, whether the "Copy" option will actually copy image files to the selected category or will it just create links. If it is links that will be great as the disk space is saved.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: V@no on October 02, 2011, 05:15:59 PM
It copies the files, no links
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: cpuswe on October 31, 2011, 08:12:18 PM
Hi V@no!

First, many thanks for this mod/utility!

Im running 1.7.10 with 4.15.7 of your mod installed. Tried it in Chrome and IE9

I am trying to modify the text area size when doing a quick edit. Today its 30 chars wide and 4 rows high.

I found $cols and $rows sets the text area size and are defined in the beginning of the images.php file.

But i can not get it to work if i change the size with $cols and $rows. They still come up 30 by 4 rows.

Am i doing something wrong? Probably!  ;)

Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: V@no on October 31, 2011, 08:46:34 PM
It looks like you have images_config.php file, if that's the case, you'll need change it there. All settings in that file will override settings in images.php

This was done so settings persist after mod update.
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: cpuswe on October 31, 2011, 09:00:09 PM
That was it!

Thanks for a fast reply!
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: Guldstrand on March 09, 2013, 12:02:35 AM
Will this MOD work on the latest version of 4images (1.7.11)?
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: Jan-Lukas on March 09, 2013, 08:33:19 PM
Test it, it's just a plugin
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: wallward on January 17, 2014, 09:04:02 AM
Can I take the file (v4.15.7) in the new 1.7.11 version without Change?
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: Jan-Lukas on January 17, 2014, 05:26:42 PM
Test it, it's just a plugin
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: nameless on September 14, 2015, 12:21:46 PM
How can i change the input text size not the input textarea size

Thanks for ur help
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: Cyril on June 08, 2016, 06:47:11 PM
Hi everyone

Thankyou, you have done a really good insanity workout free (http://insanityfittest.org).
Title: Re: [MOD] Batch Copy/Move/Edit Images v4.15.7 (2011-01-09)
Post by: Tino23 on November 24, 2016, 01:30:49 PM
Hat das schon jemand an die 1.8 Version angepasst?
Der MOD Ersteller war ja im April  2014 das letzte mal Online, glaub da wird nichts mehr kommen (oder doch  8) )