<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>E2interactive Forums Tag: Images - Recent Posts</title>
		<link>http://www.e2interactive.com/forums/tags/images</link>
		<description>E2interactive Forums Tag: Images - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Fri, 30 Jul 2010 16:39:20 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.e2interactive.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://www.e2interactive.com/forums/rss/tags/images" rel="self" type="application/rss+xml" />

		<item>
			<title>szabofe on "IPTC Infos after uploads are gone"</title>
			<link>http://www.e2interactive.com/forums/topic/iptc-infos-after-uploads-are-gone#post-1571</link>
			<pubDate>Mon, 28 Jun 2010 12:58:53 +0000</pubDate>
			<dc:creator>szabofe</dc:creator>
			<guid isPermaLink="false">1571@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Hello!&#60;/p&#62;
&#60;p&#62;I hope the author does not take offense, but a small intervention completed the source code. In addition, the JPEG files, if there are times it is written into the IPTC info of the uploaded file.&#60;br /&#62;
The amendment is a simple function of two and five series of additions is:&#60;br /&#62;
// Functions&#60;br /&#62;
function read_metadata( $file )&#60;br /&#62;
{ $metadata = array(); list($width, $height, $type, $attr) = getimagesize($file, $info);&#60;br /&#62;
  if(isset($info['APP13']))&#60;br /&#62;
  { $iptc = iptcparse($info['APP13']);&#60;br /&#62;
    if(!empty($iptc[&#34;2#005&#34;][0]))&#60;br /&#62;
    { $src_title = $iptc['2#005'][0];&#60;br /&#62;
      $src_title = str_replace(&#34;\r&#34;, &#34;&#60;br /&#62;&#34;, $src_title);&#60;br /&#62;
      $src_title = addslashes($src_title);&#60;br /&#62;
    } else&#60;br /&#62;
        $src_title = '';&#60;br /&#62;
    $metadata[0] = $src_title;&#60;br /&#62;
    if(!empty($iptc[&#34;2#030&#34;][0]))&#60;br /&#62;
    { $src_date = $iptc['2#030'][0];&#60;br /&#62;
      $src_date = str_replace(&#34;\r&#34;, &#34;&#60;br /&#62;&#34;, $src_date);&#60;br /&#62;
      $src_date = addslashes($src_date);&#60;br /&#62;
    } else&#60;br /&#62;
        $src_date = ' '.date('Y-m-d', time());&#60;br /&#62;
    $metadata[1] = $src_date;&#60;br /&#62;
    if(!empty($iptc[&#34;2#110&#34;][0]))&#60;br /&#62;
    { $src_provider = $iptc['2#110'][0];&#60;br /&#62;
      $src_provider = str_replace(&#34;\r&#34;, &#34;&#60;br /&#62;&#34;, $src_provider);&#60;br /&#62;
      $src_provider = addslashes($src_provider);&#60;br /&#62;
    } else&#60;br /&#62;
       $src_provider = '';&#60;br /&#62;
    $metadata[2] = $src_provider;&#60;br /&#62;
    if(!empty($iptc[&#34;2#080&#34;][0]))&#60;br /&#62;
    { $src_author = $iptc['2#080'][0];&#60;br /&#62;
      $src_author = str_replace(&#34;\r&#34;, &#34;&#60;br /&#62;&#34;, $src_author);&#60;br /&#62;
      $src_author = addslashes($src_author);&#60;br /&#62;
    } else&#60;br /&#62;
        $src_author = '';&#60;br /&#62;
    $metadata[3] = $src_author;&#60;br /&#62;
    if(!empty($iptc[&#34;2#116&#34;][0]))&#60;br /&#62;
    { $src_copyright = $iptc['2#116'][0];&#60;br /&#62;
      $src_copyright = str_replace(&#34;\r&#34;, &#34;&#60;br /&#62;&#34;, $src_copyright);&#60;br /&#62;
      $src_copyright = addslashes($src_copyright);&#60;br /&#62;
    } else&#60;br /&#62;
        $src_copyright = '';&#60;br /&#62;
    $metadata[4] = $src_copyright;&#60;br /&#62;
    if(!empty($iptc[&#34;2#120&#34;][0]))&#60;br /&#62;
    { $src_description = $iptc['2#120'][0];&#60;br /&#62;
      $src_description = str_replace(&#34;\r&#34;, &#34;&#60;br /&#62;&#34;, $src_description);&#60;br /&#62;
      $src_description = addslashes($src_description);&#60;br /&#62;
    } else&#60;br /&#62;
        $src_description = '';&#60;br /&#62;
    $metadata[5] = $src_description;&#60;br /&#62;
    if(!empty($iptc[&#34;2#040&#34;][0]))&#60;br /&#62;
    { $src_instructions = $iptc['2#040'][0];&#60;br /&#62;
      $src_instructions = str_replace(&#34;\r&#34;, &#34;&#60;br /&#62;&#34;, $src_instructions);&#60;br /&#62;
      $src_instructions = addslashes($src_instructions);&#60;br /&#62;
    } else&#60;br /&#62;
        $src_instructions = '';&#60;br /&#62;
    $metadata[6] = $src_instructions;&#60;br /&#62;
  }&#60;br /&#62;
  else&#60;br /&#62;
  {&#60;br /&#62;
    $metadata[0] = ' ';&#60;br /&#62;
    $metadata[1] = ' '.date('Y-m-d', time());&#60;br /&#62;
    $metadata[2] = ' ';&#60;br /&#62;
    $metadata[3] = ' ';&#60;br /&#62;
    $metadata[4] = ' ';&#60;br /&#62;
    $metadata[5] = ' The file did not have the information!';&#60;br /&#62;
    $metadata[6] = ' ';&#60;br /&#62;
  }&#60;br /&#62;
  return $metadata;&#60;br /&#62;
}&#60;br /&#62;
function copy_metadata($image_new, $title, $date, $provider, $autor, $copyright, $description, $instructions)&#60;br /&#62;
{&#60;br /&#62;
  $size = getimagesize ($image_new, $info);&#60;br /&#62;
  $iptc_old[&#34;2#005&#34;][0] = $title;&#60;br /&#62;
  $iptc_old[&#34;2#030&#34;][0] = $date;&#60;br /&#62;
  $iptc_old[&#34;2#110&#34;][0] = $provider;&#60;br /&#62;
  $iptc_old[&#34;2#080&#34;][0] = $autor;&#60;br /&#62;
  $iptc_old[&#34;2#116&#34;][0] = $copyright;&#60;br /&#62;
  $iptc_old[&#34;2#120&#34;][0] = $description;&#60;br /&#62;
  $iptc_old[&#34;2#040&#34;][0] = $instructions;&#60;br /&#62;
  $iptc_new = &#34;&#34;;&#60;br /&#62;
  foreach (array_keys($iptc_old) as $s)&#60;br /&#62;
  { $tag = str_replace(&#34;2#&#34;, &#34;&#34;, $s);&#60;br /&#62;
    $c = count ($iptc_old[$s]);&#60;br /&#62;
    for ($i=0; $i &#38;lt;$c; $i++)&#60;br /&#62;
    { $iptc_new .= iptc_maketag(2, $tag, $iptc_old[$s][$i]); }&#60;br /&#62;
  }&#60;br /&#62;
  $mode = 0;&#60;br /&#62;
  $content = iptcembed($iptc_new, $image_new, $mode);&#60;br /&#62;
  if ( ($size['mime']) === &#34;image/jpeg&#34; )&#60;br /&#62;
  { $fp = fopen($image_new, &#34;w&#34;);&#60;br /&#62;
    fwrite($fp, $content);&#60;br /&#62;
    fclose($fp);&#60;br /&#62;
  }&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;// Addition of the big picture should be the case!&#60;br /&#62;
 IF ($ handle-&#38;gt; Process)&#60;br /&#62;
 {&#60;br /&#62;
   // Existing lines&#60;br /&#62;
      .......&#60;br /&#62;
   // Addition&#60;br /&#62;
   /* iptc info read */&#60;br /&#62;
   $filejpeg = false;&#60;br /&#62;
   if ($handle-&#38;gt;file_src_mime==='image/jpeg')&#60;br /&#62;
   { $filejpeg=true; $metadata=read_metadata($handle-&#38;gt;file_src_pathname); }&#60;br /&#62;
   /* iptc info write */&#60;br /&#62;
   if ($filejpeg)&#60;br /&#62;
   { copy_metadata($handle-&#38;gt;file_dst_pathname, $metadata[0], $metadata[1], $metadata[2], $metadata[3], $metadata[4], $metadata[5], $metadata[6]); }&#60;br /&#62;
  }&#60;/p&#62;
&#60;p&#62;I work well, I hope someone else can.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "IPTC Infos after uploads are gone"</title>
			<link>http://www.e2interactive.com/forums/topic/iptc-infos-after-uploads-are-gone#post-1079</link>
			<pubDate>Wed, 18 Mar 2009 21:32:02 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">1079@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Add the IPTC info to your photos via Photoshop or any photo editing software that allows you to add IPTC/meta data to your images.  If it's there the script will read it into the gallery.  It only grabs: Title, Description, copyright, author
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jesse on "IPTC Infos after uploads are gone"</title>
			<link>http://www.e2interactive.com/forums/topic/iptc-infos-after-uploads-are-gone#post-1077</link>
			<pubDate>Wed, 18 Mar 2009 16:39:02 +0000</pubDate>
			<dc:creator>jesse</dc:creator>
			<guid isPermaLink="false">1077@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I am not using uploader, and exactly thus, the IPTC does not appear. where I can encontto rar the solution?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "IPTC Infos after uploads are gone"</title>
			<link>http://www.e2interactive.com/forums/topic/iptc-infos-after-uploads-are-gone#post-1076</link>
			<pubDate>Tue, 17 Mar 2009 22:09:25 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">1076@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Yeah the uploading code I didn't write, I use an open source image resize and upload class, I keep hoping that he'll add it to the functionality. It's a little bit beyond my programming abilities or more like beyond what I'd like to tackle right now.  I'm working on a new gallery that uses a simple XML file to put you title and description, copyright and more, per photo.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>designermonkey on "IPTC Infos after uploads are gone"</title>
			<link>http://www.e2interactive.com/forums/topic/iptc-infos-after-uploads-are-gone#post-1075</link>
			<pubDate>Tue, 17 Mar 2009 19:30:48 +0000</pubDate>
			<dc:creator>designermonkey</dc:creator>
			<guid isPermaLink="false">1075@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Would it not be possible to pull all the iptc info out into an array and then write this into the resized file? I would be lots of code I imagine, but I'm sore it's possible!&#60;/p&#62;
&#60;p&#62;I really want to use this, and most likely will, but the iptc stuff going on upload with resize is making me wait... It's for a friend who needs it to be very simple for his portfolio.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "IPTC Infos after uploads are gone"</title>
			<link>http://www.e2interactive.com/forums/topic/iptc-infos-after-uploads-are-gone#post-1045</link>
			<pubDate>Wed, 04 Mar 2009 02:41:37 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">1045@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;The IPTC data is read from the larger image, so if you want to add info back to those file you'd need to add it to the large image.  If you want to do your initial resize and use the uploader to resize the thumbnails only you could use Photoshop to resize your images first to no more than 600x600, then do the above removing the needed code from the index.php file of the uploader to not modify the original image but use the large image to create the thumbnail.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>nmkphoto on "IPTC Infos after uploads are gone"</title>
			<link>http://www.e2interactive.com/forums/topic/iptc-infos-after-uploads-are-gone#post-1043</link>
			<pubDate>Tue, 03 Mar 2009 20:02:57 +0000</pubDate>
			<dc:creator>nmkphoto</dc:creator>
			<guid isPermaLink="false">1043@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Hi there,&#60;br /&#62;
I like the way that the uploader resizes automatically and does its bit. :)&#60;/p&#62;
&#60;p&#62;I'd like to know then, how to add IPTC info to each image AFTER it's been uploaded using the uploader (which erases the IPTC info upon upload). (i.e. what file do i modify or do i need to call to a function or ... )&#60;/p&#62;
&#60;p&#62;Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "Photos appear to upload but don&#039;t load in gallery"</title>
			<link>http://www.e2interactive.com/forums/topic/photos-appear-to-upload-but-dont-load-in-gallery#post-995</link>
			<pubDate>Mon, 02 Feb 2009 16:01:48 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">995@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;$gallerypath and $thumbpath is not used in the uploader, it is used for the gallery display.  You have to set the correct path in the uploader.  In the uploader put the following in the upload paths:&#60;/p&#62;
&#60;p&#62;../images/&#60;/p&#62;
&#60;p&#62;../imagethumbs/
&#60;/p&#62;</description>
		</item>
		<item>
			<title>thewinger on "Photos appear to upload but don&#039;t load in gallery"</title>
			<link>http://www.e2interactive.com/forums/topic/photos-appear-to-upload-but-dont-load-in-gallery#post-993</link>
			<pubDate>Mon, 02 Feb 2009 01:50:41 +0000</pubDate>
			<dc:creator>thewinger</dc:creator>
			<guid isPermaLink="false">993@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Hi, i'm having the same problem but i can't solve it.&#60;/p&#62;
&#60;p&#62;At config.php i've got&#60;br /&#62;
	$gallerypath=&#34;images&#34;;&#60;br /&#62;
	$thumbpath=&#34;imagethumbs&#34;;&#60;br /&#62;
and for being sure i've got an images folder at same level as config.php and an images folder inside uploader, and the same with imagethumbs but nothing happens.&#60;br /&#62;
I have an image in all folders (with the same name) and when you enter my site (&#60;a href=&#34;http://epse.es/concursodegrupos/&#34; rel=&#34;nofollow&#34;&#62;http://epse.es/concursodegrupos/&#60;/a&#62; inside FOTOS) the gallery structure shows up but just LOADING is shown up. (no picture is shown or load)&#60;/p&#62;
&#60;p&#62;I don't know what more to do or  try.&#60;/p&#62;
&#60;p&#62;Thanks for your help and time&#60;/p&#62;
&#60;p&#62;PS: Sorry for my english, is not the language i nromally use.&#60;br /&#62;
PS2: Do the images have to have the same name? example: image_1.jpg for first image, image_2 for second image, etc? or they can be car.jpg, bike,jpg, etc?&#60;br /&#62;
PS3: Also, i've got mootools 1.2.0. i don't know if that is relevant
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rintense on "Photos appear to upload but don&#039;t load in gallery"</title>
			<link>http://www.e2interactive.com/forums/topic/photos-appear-to-upload-but-dont-load-in-gallery#post-952</link>
			<pubDate>Sun, 21 Dec 2008 01:51:26 +0000</pubDate>
			<dc:creator>rintense</dc:creator>
			<guid isPermaLink="false">952@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Thank you so much for your patience! It works!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "Photos appear to upload but don&#039;t load in gallery"</title>
			<link>http://www.e2interactive.com/forums/topic/photos-appear-to-upload-but-dont-load-in-gallery#post-951</link>
			<pubDate>Fri, 19 Dec 2008 17:26:02 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">951@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;As far as the www or without www that would be the way your server handles www or without. &#60;/p&#62;
&#60;p&#62;If you added folder the the upload folder, then you would need to change $gallerypath to be $gallerypath=&#34;uploader/images&#34;; $thumbpath=&#34;uploader/imagethumbs&#34;;  because if you have it as default $gallerypath=&#34;images&#34;;  $thumbpath=&#34;imagethumbs&#34;; it's looking in the site/pgallery/images and your uploading your images to uploader/images.&#60;/p&#62;
&#60;p&#62;The issue you seem to be having trouble with is relative paths, the path you set in your config.php file has nothing to do with the path you set in the uploader.  The uploader allows you to point where you want your image uploaded to, the path you set in the config.php file is to tell the gallery script where to look for your images.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rintense on "Photos appear to upload but don&#039;t load in gallery"</title>
			<link>http://www.e2interactive.com/forums/topic/photos-appear-to-upload-but-dont-load-in-gallery#post-943</link>
			<pubDate>Thu, 18 Dec 2008 00:34:55 +0000</pubDate>
			<dc:creator>rintense</dc:creator>
			<guid isPermaLink="false">943@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Its strange... to make sure the paths are right, I added a 'images' and'imagethumbs' foler to the uploader folder. The images are uploading fine and I get confirmations on both the image and thumb files being uploaded. But, they still won't show in the gallery. I've checked the server and the uploaded files are indeed in the correct folders, and the config.php is also correct. Still no photos showing up in the gallery or thumbs- which is odd because it was working at one point, albeit repeating photos.&#60;/p&#62;
&#60;p&#62;Another odd thing I've noticed is when I leave the 'www' off from the URL, the page appears differently.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://gobucs.us/site/pgallery&#34; rel=&#34;nofollow&#34;&#62;http://gobucs.us/site/pgallery&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;vs.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gobucs.us/site/pgallery&#34; rel=&#34;nofollow&#34;&#62;http://www.gobucs.us/site/pgallery&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "Photos appear to upload but don&#039;t load in gallery"</title>
			<link>http://www.e2interactive.com/forums/topic/photos-appear-to-upload-but-dont-load-in-gallery#post-941</link>
			<pubDate>Wed, 17 Dec 2008 21:58:45 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">941@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;When you upload, you have to clarify to the uploader, where you'd like your images to upload to.  It's important to remember to use the correct path.  &#60;/p&#62;
&#60;p&#62;Then main thing you need to remember is you set the path you'd like to upload to, use relative pathing. The uploader is located one folder below the main e2 gallery folder. So you will need to say go up one folder ../ then find the images folder ../images/ and same for the thumbnail folder ../imagethumbs/ If that does not work, check the permissions on your folders.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rintense on "Photos appear to upload but don&#039;t load in gallery"</title>
			<link>http://www.e2interactive.com/forums/topic/photos-appear-to-upload-but-dont-load-in-gallery#post-940</link>
			<pubDate>Wed, 17 Dec 2008 20:51:19 +0000</pubDate>
			<dc:creator>rintense</dc:creator>
			<guid isPermaLink="false">940@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I manually loaded the images into the correct folders (including resizing the thumbs) and the images are loading at a very large size, and not all are loading.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rintense on "Photos appear to upload but don&#039;t load in gallery"</title>
			<link>http://www.e2interactive.com/forums/topic/photos-appear-to-upload-but-dont-load-in-gallery#post-939</link>
			<pubDate>Wed, 17 Dec 2008 19:03:52 +0000</pubDate>
			<dc:creator>rintense</dc:creator>
			<guid isPermaLink="false">939@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Here is the URL:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gobucs.us/site/pgallery/&#34; rel=&#34;nofollow&#34;&#62;http://www.gobucs.us/site/pgallery/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The uploader is working now (had to change a server setting). I have the image upload path as &#34;../images&#34; and the thumbnail path as &#34;../imagethumbs&#34;. I get the message that the photos have loaded but when I view the gallery, they aren't there.&#60;/p&#62;
&#60;p&#62;The site structure looks like this:&#60;/p&#62;
&#60;p&#62;/site/pgallery/&#60;/p&#62;
&#60;p&#62;In the pgallery folder are the image and imagethumbs folders. Also in the pgallery folder are all the php files, uploader, etc. from E2.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>brubakrn on "Thumbnail size"</title>
			<link>http://www.e2interactive.com/forums/topic/thumbnail-size#post-596</link>
			<pubDate>Tue, 06 May 2008 18:11:14 +0000</pubDate>
			<dc:creator>brubakrn</dc:creator>
			<guid isPermaLink="false">596@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;That's what I thought, but my images are 50px wide, with 4px right-margin and 1px border, so I changed moveamount to 56, still keeps scrolling even though there's no more images.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "Thumbnail size"</title>
			<link>http://www.e2interactive.com/forums/topic/thumbnail-size#post-587</link>
			<pubDate>Mon, 28 Apr 2008 23:57:58 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">587@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Because you've change the default thumbnail size you need to change the javascript to know what size thumbnails you are using.  The variable is &#60;code&#62;var moveamount=106;&#60;/code&#62; in the e2photo.js file.  You'll have to accomadate for image size plus pixel padding on the images that is added in the CSS.  I think it is 2-4px on each side of the image.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>brubakrn on "Thumbnail size"</title>
			<link>http://www.e2interactive.com/forums/topic/thumbnail-size#post-583</link>
			<pubDate>Sun, 27 Apr 2008 19:25:40 +0000</pubDate>
			<dc:creator>brubakrn</dc:creator>
			<guid isPermaLink="false">583@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Hello, I was able to change the size that the uploader generates thumb as by changing the values here in the index.php located in the uploader folder:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
$handle-&#38;gt;image_resize          = true;&#60;br /&#62;
$handle-&#38;gt;image_y               = 100;&#60;br /&#62;
$handle-&#38;gt;image_x               = 100;&#60;br /&#62;
$handle-&#38;gt;jpeg_quality	       = 95;&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;But now the thumbs keep scrolling to the right even though there aren't any more thumbs there. Any idea why?&#60;br /&#62;
Here's where I've been playing around with it.&#60;br /&#62;
&#60;a href=&#34;http://www.foopyou.com/si/portfolio/&#34; rel=&#34;nofollow&#34;&#62;http://www.foopyou.com/si/portfolio/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "IPTC Infos after uploads are gone"</title>
			<link>http://www.e2interactive.com/forums/topic/iptc-infos-after-uploads-are-gone#post-543</link>
			<pubDate>Mon, 07 Apr 2008 14:46:18 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">543@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;The large image loads for me, what browser are  you using?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>chucknorrisrules on "IPTC Infos after uploads are gone"</title>
			<link>http://www.e2interactive.com/forums/topic/iptc-infos-after-uploads-are-gone#post-540</link>
			<pubDate>Fri, 04 Apr 2008 17:25:35 +0000</pubDate>
			<dc:creator>chucknorrisrules</dc:creator>
			<guid isPermaLink="false">540@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;sorry...here's my test gallery:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://gesarsfootprint.com/e2_photo_gallery_full/index.php#&#34; rel=&#34;nofollow&#34;&#62;http://gesarsfootprint.com/e2_photo_gallery_full/index.php#&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>chucknorrisrules on "IPTC Infos after uploads are gone"</title>
			<link>http://www.e2interactive.com/forums/topic/iptc-infos-after-uploads-are-gone#post-539</link>
			<pubDate>Fri, 04 Apr 2008 17:17:46 +0000</pubDate>
			<dc:creator>chucknorrisrules</dc:creator>
			<guid isPermaLink="false">539@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;btw, I tried removing everything like you said, and every time I remove it, I am able to upload the image fine, and I can see that the image is in the proper directory, also the thumb is created fine and all the info is there, however the large image just doesn't load...the &#34;loading&#34; message just keeps spinning. I made sure that the image was within 600x600 too. &#60;/p&#62;
&#60;p&#62;Any ideas?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>chucknorrisrules on "IPTC Infos after uploads are gone"</title>
			<link>http://www.e2interactive.com/forums/topic/iptc-infos-after-uploads-are-gone#post-538</link>
			<pubDate>Fri, 04 Apr 2008 17:09:28 +0000</pubDate>
			<dc:creator>chucknorrisrules</dc:creator>
			<guid isPermaLink="false">538@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Hi. I really like your gallery, and am trying to get it to work for me. I'm making a gallery for someone else who isn't very computer savvy, and it's really important that the IPTC info not get lost when using the upload. So...&#60;/p&#62;
&#60;p&#62;I saw in the post above that you said to find: &#60;/p&#62;
&#60;p&#62;$handle-&#38;gt;image_resize     = true;&#60;br /&#62;
$handle-&#38;gt;image_ratio          = true;&#60;br /&#62;
$handle-&#38;gt;image_y                = 600;&#60;br /&#62;
$handle-&#38;gt;image_x                = 600;&#60;br /&#62;
$handle-&#38;gt;jpeg_quality         = 95;&#60;/p&#62;
&#60;p&#62;Then you said to &#34;remove&#34; it. Do you actually mean to remove all the various $handle statments ?  Or would it also be possible to just change the &#34;true&#34; to &#34;false&#34; in the image_resize ?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>leo on "IPTC Infos after uploads are gone"</title>
			<link>http://www.e2interactive.com/forums/topic/iptc-infos-after-uploads-are-gone#post-529</link>
			<pubDate>Thu, 20 Mar 2008 05:41:47 +0000</pubDate>
			<dc:creator>leo</dc:creator>
			<guid isPermaLink="false">529@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;hello e2.&#60;/p&#62;
&#60;p&#62;thank you  very much. that works perfect for me.&#60;br /&#62;
maybe I 'll try to get some bigger images into the gallery like 700x700&#60;/p&#62;
&#60;p&#62;thanks for your help.&#60;br /&#62;
leo
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "IPTC Infos after uploads are gone"</title>
			<link>http://www.e2interactive.com/forums/topic/iptc-infos-after-uploads-are-gone#post-528</link>
			<pubDate>Mon, 17 Mar 2008 14:11:16 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">528@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Yes, if you have the uploader simply upload the files and not resize the large images.  To do this, simple open up the index.php file inside the uploader and find the following line:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$handle-&#38;gt;image_resize     = true;
$handle-&#38;gt;image_ratio          = true;
$handle-&#38;gt;image_y                = 600;
$handle-&#38;gt;image_x                = 600;
$handle-&#38;gt;jpeg_quality         = 95;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;If you remove this, it will simply upload the files as is.  But you will need to batch process your images pre-hand to no more than 600x600 for the images to work in the gallery (unless you modify the gallery to accept larger images).  The uploader will upload the images, and create the thumbails, but not rewrite the images so the IPTC data should stay intact.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>leo on "IPTC Infos after uploads are gone"</title>
			<link>http://www.e2interactive.com/forums/topic/iptc-infos-after-uploads-are-gone#post-527</link>
			<pubDate>Mon, 17 Mar 2008 06:29:55 +0000</pubDate>
			<dc:creator>leo</dc:creator>
			<guid isPermaLink="false">527@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;hello e2.&#60;/p&#62;
&#60;p&#62;is there a way that the uploader doesn't remove the IPTC Infos?&#60;br /&#62;
your way looks to me a bit non common.&#60;/p&#62;
&#60;p&#62;anyway, how do you add the IPTC Infos to the images?&#60;br /&#62;
do you download the images via FTP, add the IPTC Data and re-upload the images?&#60;/p&#62;
&#60;p&#62;thanks. leo
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "IPTC Infos after uploads are gone"</title>
			<link>http://www.e2interactive.com/forums/topic/iptc-infos-after-uploads-are-gone#post-526</link>
			<pubDate>Sun, 16 Mar 2008 17:01:09 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">526@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Yeah the gallery uploader removes the IPTC info, I typically upload the photos and then add the IPTC data after upload.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>julianarp on "IPTC Infos after uploads are gone"</title>
			<link>http://www.e2interactive.com/forums/topic/iptc-infos-after-uploads-are-gone#post-522</link>
			<pubDate>Sun, 16 Mar 2008 14:22:06 +0000</pubDate>
			<dc:creator>julianarp</dc:creator>
			<guid isPermaLink="false">522@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I am having the same problem. This is such a great script, please help.&#60;br /&#62;
This is my url if that helps...&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.sylviadeswaan.com/gallery1.php&#34; rel=&#34;nofollow&#34;&#62;http://www.sylviadeswaan.com/gallery1.php&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>leo on "IPTC Infos after uploads are gone"</title>
			<link>http://www.e2interactive.com/forums/topic/iptc-infos-after-uploads-are-gone#post-519</link>
			<pubDate>Sat, 15 Mar 2008 15:38:37 +0000</pubDate>
			<dc:creator>leo</dc:creator>
			<guid isPermaLink="false">519@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;hello.&#60;/p&#62;
&#60;p&#62;I've installed the gallery on my local xampp development environment. when I do some pic &#34;uploads&#34;, the thumbnails were created and the pics are in the gallery. so everything looks fine.&#60;/p&#62;
&#60;p&#62;but when I've click on the Info Button, no IPTC Infos are shown.&#60;br /&#62;
I've checked the images before the upload in photoshop, so all infos are in the file.&#60;br /&#62;
Then I've checked the image after the upload in potoshop and all IPTC Infos are empty?&#60;/p&#62;
&#60;p&#62;so where's the error?&#60;/p&#62;
&#60;p&#62;need some help and would be great to get some infos.&#60;br /&#62;
by tthe way, it's an awesome gallery script.&#60;/p&#62;
&#60;p&#62;thanks, leo
&#60;/p&#62;</description>
		</item>
		<item>
			<title>e2 on "Problem with images upload"</title>
			<link>http://www.e2interactive.com/forums/topic/problem-with-images-upload#post-108</link>
			<pubDate>Tue, 06 Nov 2007 14:51:52 +0000</pubDate>
			<dc:creator>e2</dc:creator>
			<guid isPermaLink="false">108@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I meant to say config.php file, not index.php file above.  I edited my post to reflect that.  You should only need to edit the config.php file witht he setting of where your folders are and set up your username and password.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kalman on "Problem with images upload"</title>
			<link>http://www.e2interactive.com/forums/topic/problem-with-images-upload#post-107</link>
			<pubDate>Tue, 06 Nov 2007 10:08:58 +0000</pubDate>
			<dc:creator>kalman</dc:creator>
			<guid isPermaLink="false">107@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I am having this error as well. What are the correct settings for the index.php? Is that the gallery index or the uploader index? &#60;/p&#62;
&#60;p&#62;-Thank You
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
