<?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: Recent Topics</title>
		<link>http://www.e2interactive.com/forums/</link>
		<description>E2interactive Forums: Recent Topics</description>
		<language>en-US</language>
		<pubDate>Fri, 12 Mar 2010 10:53:03 +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/topics" rel="self" type="application/rss+xml" />

		<item>
			<title>Graemezee on "Placing (E)2 Gallery Pro in Joomla"</title>
			<link>http://www.e2interactive.com/forums/topic/placing-e2-gallery-pro-in-joomla#post-1489</link>
			<pubDate>Wed, 10 Mar 2010 01:04:49 +0000</pubDate>
			<dc:creator>Graemezee</dc:creator>
			<guid isPermaLink="false">1489@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I have just about found a way to get this to work in Joomla 1.5 with the help of some plugins and their developers&#60;br /&#62;
Found away to hack the default Mootools inclusion here &#60;a href=&#34;http://www.dwightjack.com/diary/2009/06/07/use-mootools-122-in-joomla-15/&#34; rel=&#34;nofollow&#34;&#62;http://www.dwightjack.com/diary/2009/06/07/use-mootools-122-in-joomla-15/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Then found a nice little plugin  called JIncludes which allow you to add php and content to the header of your template&#60;br /&#62;
which mean you only need to load the header details when the page with gallery loads. the author of this plugin Andrea Azzini cleaned up my bad code.&#60;/p&#62;
&#60;p&#62;I have what is one final problem  it seems the javascript generated from (require('e2gallerypro/php/parsexml.php');) is placed in the content and not the header  it seems the only difference between a page that works and  the joomla page&#60;/p&#62;
&#60;p&#62;My question is does &#38;lt;!--(E)2 Gallery Parse XML output Javascript--&#38;gt; have to be in the header and can you think of a way of making it  appear in the header &#60;/p&#62;
&#60;p&#62;this is the code   so far (// (E)2 Gallery Config File&#60;br /&#62;
require('e2gallerypro/e2config.php');&#60;/p&#62;
&#60;p&#62;// (E)2 Gallery Style Sheet Link&#60;br /&#62;
$doc =&#38;amp; JFactory::getDocument();&#60;br /&#62;
$doc-&#38;gt;addStyleSheet( $galleryDesign . '/design.css' );&#60;br /&#62;
$doc-&#38;gt;addScriptDeclaration( 'var designPath=&#34;' . $galleryDesign .'&#34;;' ); &#60;/p&#62;
&#60;p&#62;// Mootools&#60;br /&#62;
$doc-&#38;gt;addScript('e2gallerypro/js/mootools-1.2-core.js');&#60;br /&#62;
$doc-&#38;gt;addScript('e2gallerypro/js/mootools-1.2-more.js');&#60;/p&#62;
&#60;p&#62;// (E)2 Gallery Javascript&#60;br /&#62;
$doc-&#38;gt;addScript('e2gallerypro/js/setupvars.js');&#60;br /&#62;
require('e2gallerypro/php/jparsexml.php');&#60;br /&#62;
$doc-&#38;gt;addScript('e2gallerypro/js/e2gallerypro.js');   &#60;/p&#62;
&#60;p&#62;echo(' &#60;/p&#62;
&#60;p&#62;&#38;lt;!--(E)2 Gallery Pro HTML--&#38;gt;&#60;br /&#62;
&#38;lt;div id=&#34;gallery&#34;&#38;gt;&#60;br /&#62;
  &#38;lt;!--Loading Bar--&#38;gt;&#60;br /&#62;
  &#38;lt;div id=&#34;loading&#34;&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;loadingbar&#34;&#38;gt;&#60;img src=&#34;e2gallerypro/design/e2gallerypro/loading_hill.gif&#34; alt=&#34;&#34; /&#62;&#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;!--End Loading Bar--&#38;gt;&#60;br /&#62;
  &#38;lt;!--Previous Button Div--&#38;gt;&#60;br /&#62;
  &#38;lt;div id=&#34;previous&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;!--End Previous Button Div--&#38;gt;&#60;br /&#62;
  &#38;lt;!--Next Button Div--&#38;gt;&#60;br /&#62;
  &#38;lt;div id=&#34;next&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;!--End Next Button Div--&#38;gt;&#60;br /&#62;
  &#38;lt;!--Main Image Holder Div--&#38;gt;&#60;br /&#62;
  &#38;lt;div id=&#34;images&#34;&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;imagewrap&#34;&#38;gt;&#60;br /&#62;
      &#38;lt;div id=&#34;imgloader&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
    &#38;lt;/div&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;imageinfo&#34;&#38;gt;&#60;br /&#62;
      &#38;lt;div id=&#34;infoloader&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
    &#38;lt;/div&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;smallmessage&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;!--End Main Image Holder Div--&#38;gt;&#60;br /&#62;
  &#38;lt;!--Thumb Box Div--&#38;gt;&#60;br /&#62;
  &#38;lt;div id=&#34;thumbbox&#34;&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;thumbleft&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;thumbright&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;thumbnails&#34;&#38;gt;&#60;br /&#62;
      &#38;lt;div id=&#34;thumbnailwrap&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
    &#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;!--End Thumb Box Div--&#38;gt;&#60;br /&#62;
  &#38;lt;!--For Sale Box Div--&#38;gt;&#60;br /&#62;
  &#38;lt;div id=&#34;fsbox&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;!--End For Sale Box Div--&#38;gt;&#60;br /&#62;
  &#38;lt;!--Galleries Holder Div--&#38;gt;&#60;br /&#62;
  &#38;lt;div id=&#34;galleries&#34;&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;controls&#34;&#38;gt;&#60;br /&#62;
      &#38;lt;div class=&#34;right&#34;&#38;gt;&#60;img src=&#34;e2gallerypro/design/e2gallerypro/gallery_view.png&#34; alt=&#34;View Galleries&#34; title=&#34;View Galleries&#34; /&#62; &#60;img src=&#34;e2gallerypro/design/e2gallerypro/infobox.png&#34; alt=&#34;Show Photo Info&#34; title=&#34;Show Photo Info&#34; /&#62; &#60;img src=&#34;e2gallerypro/design/e2gallerypro/thumbbox.png&#34; alt=&#34;Show / Hide Thumbnails&#34; title=&#34;Show / Hide Thumbnails&#34; /&#62;&#38;lt;/div&#38;gt;&#60;br /&#62;
      &#38;lt;span id=&#34;slideshow&#34;&#38;gt;&#60;img src=&#34;e2gallerypro/design/e2gallerypro/play.png&#34; alt=&#34;Play Slide Show&#34; title=&#34;Play Slide Show&#34; /&#62;&#38;lt;/span&#38;gt; &#124; &#38;lt;span id=&#34;photoNum&#34;&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;span id=&#34;flashNum&#34;&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;span id=&#34;qtNum&#34;&#38;gt;&#38;lt;/span&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
    &#38;lt;div id=&#34;galleryset&#34;&#38;gt; &#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;!--End Galleries Holder Div--&#38;gt;&#60;br /&#62;
  &#38;lt;!--Thumbnail Pop Up Holder--&#38;gt;&#60;br /&#62;
  &#38;lt;div id=&#34;thumbnailPopUp&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
  &#38;lt;!--End Thumbnail Pop Up Holder--&#38;gt;&#60;br /&#62;
&#38;lt;/div&#38;gt;&#60;br /&#62;
&#38;lt;!--End (E)2 Gallery Pro HTML--&#38;gt;&#60;/p&#62;
&#60;p&#62;');)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>WhateverUnique on "Tweaking with questions"</title>
			<link>http://www.e2interactive.com/forums/topic/tweaking-with-questions#post-1485</link>
			<pubDate>Sun, 07 Mar 2010 22:17:15 +0000</pubDate>
			<dc:creator>WhateverUnique</dc:creator>
			<guid isPermaLink="false">1485@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;So I've been tweaking the gallery to fit my page and adjust to my look, &#60;a href=&#34;http://whateverunique.com/php/index3a.php&#34; rel=&#34;nofollow&#34;&#62;http://whateverunique.com/php/index3a.php&#60;/a&#62;  and I've got a couple things that I'm stuck on (these may be fixed by the time you read)&#60;br /&#62;
1. I've gotta  strip of white across the bottom of my images, I'm not sure how/where this is happening.  I'm under the impression that it's not within any of the java or css code because if you look at this page &#60;a href=&#34;http://whateverunique.com/php/index.php&#34; rel=&#34;nofollow&#34;&#62;http://whateverunique.com/php/index.php&#60;/a&#62; it is pulling from the same stuff.  The only difference is the very top link is within some of my original pages html code.  Is there something throwing off that image frame?  I can't yet find it.&#60;br /&#62;
2. I've widened out the thumbnail box and shrunk down the height.  I'd like to have more thumbs viewable at one time and I've got a boat load of image thumbs already created at this size. But notice the &#34;right more&#34; arrow is stuck just right of the middle.  The &#34;left more&#34; arrow justified out when the thumb box widened out.  I can't find where/how to get that right arrow to justify out.&#60;/p&#62;
&#60;p&#62;I think once I get those two things buttoned up...the whole thing is going to work well in my site.&#60;br /&#62;
thanks,&#60;br /&#62;
Timmy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Graemezee on "E2 Gallery pro using the same galleries as Slide Show Pro ?"</title>
			<link>http://www.e2interactive.com/forums/topic/e2-gallery-pro-using-the-same-galleries-as-slide-show-pro#post-1480</link>
			<pubDate>Sat, 06 Mar 2010 13:28:00 +0000</pubDate>
			<dc:creator>Graemezee</dc:creator>
			<guid isPermaLink="false">1480@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Hi Have just come across your product  I use Slide Show Pro across several sites  with some complex galleries  But being flash this is going to cause problems with some new media. &#60;/p&#62;
&#60;p&#62;As  E2 Gallery pro is xml driven would it be simple enough  to configure the xml to display the images from the slideshow pro galleries  As I use SWFObject to place my galleries I am hopping I could place E2 Gallery pro as the alternative  content.&#60;/p&#62;
&#60;p&#62;As all the images and  thumbs are already on line i hope it would be just a case of generating a new  xml file and configuring the gallery to match the size of the existing flash gallery.&#60;/p&#62;
&#60;p&#62;Does this sound plausible  or just wishful thinking.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>WhateverUnique on "E2 Gallery vs. Pro version...night and day"</title>
			<link>http://www.e2interactive.com/forums/topic/e2-gallery-vs-pro-versionnight-and-day#post-1483</link>
			<pubDate>Sun, 07 Mar 2010 15:35:17 +0000</pubDate>
			<dc:creator>WhateverUnique</dc:creator>
			<guid isPermaLink="false">1483@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Hey there,&#60;br /&#62;
So while I think both the original gallery and the pro gallery are great, I've got to say they are pretty much like night and day.  The original one is great in that you simply point to a folder, and the gallery builds it's images from that.  If you want to add photos you simply dump them into that folder.  The pro one, has to use this uploader (which without php5) will not work, and I can't upload images.  I mean I could, but I would have to hand modify the xml file...and that's a really time taxer. Is there no simple way of pointing to a folder like in the older version? I don't care about image tags, titles, descriptions, selling them or any of that extra heavy stuff....I just want to display a ton of images and easily swap and change them out.&#60;br /&#62;
If not, is there a way to have the original version play video files?  If the original version could do just that one thing...that would be sweet.&#60;br /&#62;
thanks,&#60;br /&#62;
Timmy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>WhateverUnique on "Center Justify"</title>
			<link>http://www.e2interactive.com/forums/topic/center-justify#post-1473</link>
			<pubDate>Thu, 04 Mar 2010 20:25:22 +0000</pubDate>
			<dc:creator>WhateverUnique</dc:creator>
			<guid isPermaLink="false">1473@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;&#60;a href=&#34;http://whateverunique.com/gallery_location/index2.php&#34; rel=&#34;nofollow&#34;&#62;http://whateverunique.com/gallery_location/index2.php&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Hello,&#60;br /&#62;
So I've downloaded the photo gallery to see if I can get it to work with my site, how it functions, and if I like it over all.  I've never worked with php...but so far I like the look, the way it's working, and everything.&#60;br /&#62;
I've even managed to get it embedded inside my current html design, and it's going to look a lot like the way I've had my photos working in the past (take a look at some of my other pages, you'll see) but much easier to update with images.&#60;br /&#62;
But, I can't figure out how to get the main image display to center justify inside my layout.  I've even added a line above the area before the gallery, I've looked though the CSS, (i did change stuff there but then I changed it back so all the CSS stuff is they same) so if anyone can look at the page source and if there's something I should modify there please let me know...otherwise....if it's in the CSS...which one, and where? I understand CSS...somewhat, but there's a lot going on here.&#60;br /&#62;
If I end up liking this and want to purchase the pro version...will I have to recode everything? or is it a simple change out? I'd hate to build pages only then to say ok let me get the pro and have a nightmare on my hands.&#60;br /&#62;
thanks in advance,&#60;br /&#62;
Timmy
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tipsforw on "Concrete Polishing Gallery"</title>
			<link>http://www.e2interactive.com/forums/topic/concrete-polishing-gallery#post-1479</link>
			<pubDate>Sat, 06 Mar 2010 04:47:58 +0000</pubDate>
			<dc:creator>tipsforw</dc:creator>
			<guid isPermaLink="false">1479@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I have made my first gallery for a client using e2galleryPro&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://keaneconcrete.com.au/gallery/index.php&#34; rel=&#34;nofollow&#34;&#62;http://keaneconcrete.com.au/gallery/index.php&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tipsforw on "Slideshow problem"</title>
			<link>http://www.e2interactive.com/forums/topic/slideshow-problem#post-1458</link>
			<pubDate>Wed, 24 Feb 2010 04:28:17 +0000</pubDate>
			<dc:creator>tipsforw</dc:creator>
			<guid isPermaLink="false">1458@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Could you please have a look at my site, as when i press the play and pause button the words &#34;play slideshow&#34; and &#34;pause slideshow&#34; remain visiblie also shows this path /gallery/design/e2gallerypro/pause.png which i cannot seem to fix&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://keaneconcrete.com.au/gallery/index.php&#34; rel=&#34;nofollow&#34;&#62;http://keaneconcrete.com.au/gallery/index.php&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lisa on "First image not displaying info"</title>
			<link>http://www.e2interactive.com/forums/topic/first-image-not-displaying-info#post-860</link>
			<pubDate>Sat, 25 Oct 2008 20:20:34 +0000</pubDate>
			<dc:creator>lisa</dc:creator>
			<guid isPermaLink="false">860@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;First off, let me say that I love this photo gallery tool. It's the easiest and best I've tried thus far.&#60;/p&#62;
&#60;p&#62;The forums have been helpful and I've figured out how to edit the uploader script to not resize photos and allow IPTC code to be preserved (explained by you in another post). &#60;/p&#62;
&#60;p&#62;My QUESTION is this: Upon load the first image does *not* display the caption info below the thumbnails, which does appear on subsequent images. The first image's info will display when navigating back to it, or when clicking on the thumbnail, but not on load. Is there something I can tweak to rectify this?&#60;/p&#62;
&#60;p&#62;I'm also guessing that somewhere in the CSS I can tweak that info to align left rather than centered?&#60;/p&#62;
&#60;p&#62;What led me to taking out the IPTC info icon in deference to the info below the thumbnails was a similar problem:&#60;/p&#62;
&#60;p&#62;I had edited the IPTC display info to show only Title and Description, not author or copyright. This worked fine, but again, not for the onload image. If a solution for this could be explained, I'd skip my original question.... That was convoluted, but I think you can follow me. :)&#60;/p&#62;
&#60;p&#62;Thanks, and again, this is a great tool!&#60;/p&#62;
&#60;p&#62;Example: &#60;a href=&#34;http://dng.northjersey.com/media_server/tr/2008/11/04election/gallery/&#34; rel=&#34;nofollow&#34;&#62;http://dng.northjersey.com/media_server/tr/2008/11/04election/gallery/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tonihenriques on "FLV is not working"</title>
			<link>http://www.e2interactive.com/forums/topic/flv-is-not-working#post-1470</link>
			<pubDate>Sun, 28 Feb 2010 08:32:59 +0000</pubDate>
			<dc:creator>tonihenriques</dc:creator>
			<guid isPermaLink="false">1470@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;The FLV files not working.&#60;br /&#62;
See this command line:&#60;/p&#62;
&#60;p&#62;media=new Swiff(&#34;&#34;+NBpath+&#34;?videoURL=&#34;+galleryimages[e][&#34;mediaURL&#34;]+&#34;&#38;amp;allowSmoothing=true&#38;amp;autoPlay=&#34;+autoplay+&#34;&#38;amp;buffer=6&#38;amp;showTimecode=&#34;+showTimecode+&#34;&#38;amp;loop=true&#38;amp;controlColour=&#34;+controllerColor+&#34;&#38;amp;scaleIfFullScreen=true&#38;amp;showScalingButton=false&#34;,{&#60;br /&#62;
					id:&#34;MediaboxSWF&#34;,&#60;br /&#62;
					width:mediaWidth,&#60;br /&#62;
					height:mediaHeight,&#60;br /&#62;
					params:{&#60;br /&#62;
						wmode:&#34;opaque&#34;,&#60;br /&#62;
						bgcolor:bgcolor,&#60;br /&#62;
						allowscriptaccess:scriptaccess,&#60;br /&#62;
						allowfullscreen:fullscreen&#60;br /&#62;
					}&#60;br /&#62;
				});&#60;/p&#62;
&#60;p&#62;What is NBpath???
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sue on "Safari problems - loads 1st time, and not the second.."</title>
			<link>http://www.e2interactive.com/forums/topic/safari-problems-loads-1st-time-and-not-the-second#post-496</link>
			<pubDate>Mon, 03 Mar 2008 10:34:29 +0000</pubDate>
			<dc:creator>sue</dc:creator>
			<guid isPermaLink="false">496@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Hi there, Thank you for all your help previously. The site is working well except in Safari on a Mac, which is unfortunately what the client uses to view the site. The gallery loads up the first time and works perfectly, but if you navigate away and then return to the page the first large image doesn't load, and the arrows on the thumbnail bar disappear meaning the other images can't be accessed. It's very odd.&#60;br /&#62;
The link to the site is &#60;a href=&#34;http://www.grizelda.net/gallery/index.php&#34; rel=&#34;nofollow&#34;&#62;http://www.grizelda.net/gallery/index.php&#60;/a&#62; , there are three galleries on the site, and the same problem happens with them all.&#60;br /&#62;
Thank you kindly,&#60;br /&#62;
Sue
&#60;/p&#62;</description>
		</item>
		<item>
			<title>CongdonJL on "Issue Using 1 CSS"</title>
			<link>http://www.e2interactive.com/forums/topic/issue-using-1-css#post-1457</link>
			<pubDate>Sun, 21 Feb 2010 15:08:02 +0000</pubDate>
			<dc:creator>CongdonJL</dc:creator>
			<guid isPermaLink="false">1457@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I followed the simple 4 step process and I do not know what I am doing wrong? &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.6adesigns.com/photo/&#34; rel=&#34;nofollow&#34;&#62;http://www.6adesigns.com/photo/&#60;/a&#62; &#60;/p&#62;
&#60;p&#62;&#38;lt;title&#38;gt;(e)2 interactive Photo Gallery&#38;lt;/title&#38;gt;&#60;br /&#62;
&#38;lt;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;css/e2photo_gray.css&#34; title=&#34;gray&#34;&#38;gt;&#60;br /&#62;
&#38;lt;!--&#60;br /&#62;
&#38;lt;link rel=&#34;alternate stylesheet&#34; type=&#34;text/css&#34; href=&#34;css/e2photo_black.css&#34; title=&#34;black&#34; /&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;link rel=&#34;alternate stylesheet&#34; type=&#34;text/css&#34; href=&#34;css/e2photo_lightgray.css&#34; title=&#34;lightgray&#34;&#38;gt;&#60;br /&#62;
&#38;lt;link rel=&#34;alternate stylesheet&#34; type=&#34;text/css&#34; href=&#34;css/e2photo.css&#34; title=&#34;none&#34;&#38;gt;&#60;br /&#62;
&#38;lt;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;css/e2.css&#34; title=&#34;default&#34; /&#38;gt;&#60;br /&#62;
--&#38;gt;&#60;br /&#62;
&#38;lt;?php&#60;/p&#62;
&#60;p&#62; &#38;lt;div align=&#34;center&#34; id=&#34;photocount&#34;&#38;gt; &#38;lt;script type=&#34;text/javascript&#34;&#38;gt;document.write(&#34;1 of &#34;+tempgallery.length+&#34; Photos&#34;);&#38;lt;/script&#38;gt; &#38;lt;/div&#38;gt;&#60;br /&#62;
			  &#38;lt;div id=&#34;thumbtoggler&#34;&#38;gt;&#60;/p&#62;
&#60;p&#62;					&#60;a href=&#34;thumbs();&#34;&#62;&#60;br /&#62;
						&#60;img src=&#34;rsrc/thumbgallery.gif&#34; title=&#34;Toggle Thumbnails::Click to Toggle Thumbnails&#34; alt=&#34;Toggle Thumbnails&#34; /&#62;&#60;br /&#62;
					&#60;/a&#62;  &#60;/p&#62;
&#60;p&#62;				&#38;lt;/div&#38;gt;&#60;br /&#62;
			  &#38;lt;div class=&#34;clear&#34;&#38;gt;&#38;lt;/div&#38;gt;&#60;br /&#62;
		  &#38;lt;/div&#38;gt;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>tipsforw on "Making changes to the height of the gallery"</title>
			<link>http://www.e2interactive.com/forums/topic/making-changes-to-the-height-of-the-gallery#post-1456</link>
			<pubDate>Sat, 20 Feb 2010 23:48:23 +0000</pubDate>
			<dc:creator>tipsforw</dc:creator>
			<guid isPermaLink="false">1456@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I would like to adjust the height of my gallery.. to make it bigger. I've tried changing the CSS height for #gallery and a few other things but it affects all of the formatting at the bottom of the gallery. I want to be able to put larger portrait photos onto my gallery webpage&#60;br /&#62;
Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>aricphotos on "Embedding gallery into a basic HTML/CSS page"</title>
			<link>http://www.e2interactive.com/forums/topic/embedding-gallery-into-a-basic-htmlcss-page#post-1450</link>
			<pubDate>Fri, 19 Feb 2010 09:38:27 +0000</pubDate>
			<dc:creator>aricphotos</dc:creator>
			<guid isPermaLink="false">1450@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I just purchased Gallery Pro and have followed all the tutorials/documentation and I believe I have everything set up the way I want.  However, I am having difficulties trying to embed this into my existing site format, which is just a basic CSS-driven HTML site (no PHP).  I read the already posted Wordpress thread and found it not to be applicable to my situation (i.e. there were steps that involved alteration to pre-existing files that I do not have, like 'header.php').&#60;/p&#62;
&#60;p&#62;I will be the first to admit that I know next to nothing about PHP and have little experience with it. &#60;/p&#62;
&#60;p&#62;So, what would be the best way to insert the gallery?&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sagnik on "Main Image not loading"</title>
			<link>http://www.e2interactive.com/forums/topic/main-image-not-loading#post-1448</link>
			<pubDate>Tue, 16 Feb 2010 01:10:01 +0000</pubDate>
			<dc:creator>sagnik</dc:creator>
			<guid isPermaLink="false">1448@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I installed the E2 Photo Gallery (free version). I completed the website properly. But when I moved the files to a different server, the main image was not loading. Also there was a file created &#34;Notes&#34; which gives the old location of the images/files.&#60;/p&#62;
&#60;p&#62;Old location where everything's fine : &#60;a href=&#34;http://www.tangeloideas.com/projects/JoeBaraban/general/&#34; rel=&#34;nofollow&#34;&#62;http://www.tangeloideas.com/projects/JoeBaraban/general/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;New location where the image are not loading : &#60;a href=&#34;http://www.joebaraban.com/general/&#34; rel=&#34;nofollow&#34;&#62;http://www.joebaraban.com/general/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Can somebody help please?&#60;/p&#62;
&#60;p&#62;Thanks&#60;br /&#62;
-Sagnik
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jerrybonilla on "Demo version loading in loop"</title>
			<link>http://www.e2interactive.com/forums/topic/demo-version-loading-in-loop#post-1447</link>
			<pubDate>Mon, 08 Feb 2010 14:35:43 +0000</pubDate>
			<dc:creator>jerrybonilla</dc:creator>
			<guid isPermaLink="false">1447@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Hi, I were using the demo version and the first time you browse the gallery everything look like is working perfect but if you go to another tab or another link and then go back, is loading in loop and sometimes I need to touch one of the pictures in the thumbnails to work but when I do that the arrow in the thumbnails desapear. I'm using In ternet explorer 8. I tried in FireFox and is working perfect. Also what type of picture I can upload I mean gif, jpeg... because the I can't get the picture information in the gallery. Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ggould on "Gallery reload bug"</title>
			<link>http://www.e2interactive.com/forums/topic/gallery-reload-bug#post-1060</link>
			<pubDate>Wed, 11 Mar 2009 17:28:15 +0000</pubDate>
			<dc:creator>ggould</dc:creator>
			<guid isPermaLink="false">1060@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I have been working to resolve an issue regarding the reload of the gallery page.  I can repro this bug on your gallery demo, and on multiple browsers....  &#60;/p&#62;
&#60;p&#62;Steps:  Load demo gallery, then leave the url, and then return to the demo, loading graphic appears indefinitely.&#60;/p&#62;
&#60;p&#62;Ideas?  Thoughts?  Help? &#60;/p&#62;
&#60;p&#62;G.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>hujci on "gallery thumbnail scroller problem"</title>
			<link>http://www.e2interactive.com/forums/topic/gallery-thumbnail-scroller-problem#post-1440</link>
			<pubDate>Tue, 26 Jan 2010 17:54:23 +0000</pubDate>
			<dc:creator>hujci</dc:creator>
			<guid isPermaLink="false">1440@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I have just installed this great gallery, but I have some problems jet.&#60;/p&#62;
&#60;p&#62;url: &#60;a href=&#34;http://hujtomi.extra.hu/eszti/gallery.php?gallery=riders&#34; rel=&#34;nofollow&#34;&#62;http://hujtomi.extra.hu/eszti/gallery.php?gallery=riders&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I can't scroll the thumbnail images because there are no buttons for it.&#60;/p&#62;
&#60;p&#62;And when the gallery starts I can just see the &#34;loading&#34; label, and nothing happens, but after I click one of the thumbnail it works fine.&#60;/p&#62;
&#60;p&#62;what am i doing wrong?&#60;br /&#62;
Thanks&#60;br /&#62;
Tom
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sophieshiatsu on "css not working"</title>
			<link>http://www.e2interactive.com/forums/topic/css-not-working#post-1438</link>
			<pubDate>Tue, 22 Dec 2009 12:04:28 +0000</pubDate>
			<dc:creator>sophieshiatsu</dc:creator>
			<guid isPermaLink="false">1438@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;My photos and thumbnails have uploaded and I can see them but it seems that the layout css is not being recognised as I just have a white background.  Can anyone help?  I have put the photogallery here: &#60;a href=&#34;http://timberworksaustralia.com.au/photogallery2/index.php&#34; rel=&#34;nofollow&#34;&#62;http://timberworksaustralia.com.au/photogallery2/index.php&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>terriers on "upload error:"</title>
			<link>http://www.e2interactive.com/forums/topic/upload-error#post-1426</link>
			<pubDate>Sun, 13 Dec 2009 16:57:31 +0000</pubDate>
			<dc:creator>terriers</dc:creator>
			<guid isPermaLink="false">1426@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Have just purchased e2gallery pro.&#60;br /&#62;
Having problems with the e2upload&#60;/p&#62;
&#60;p&#62;No add folder showing, tried uploading images anyway but i get YOU ARE NOT AUTHORISED&#60;/p&#62;
&#60;p&#62;What am i doing wrong??
&#60;/p&#62;</description>
		</item>
		<item>
			<title>terriers on "Replies:"</title>
			<link>http://www.e2interactive.com/forums/topic/replies#post-1428</link>
			<pubDate>Sun, 13 Dec 2009 18:34:27 +0000</pubDate>
			<dc:creator>terriers</dc:creator>
			<guid isPermaLink="false">1428@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Hi,Could anyone explian these forums?&#60;br /&#62;
Are they just for users or is there any way of speaking to the creators of e2 Pro for advice/help.&#60;br /&#62;
Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>terriers on "Some parts..:"</title>
			<link>http://www.e2interactive.com/forums/topic/some-parts#post-1425</link>
			<pubDate>Tue, 08 Dec 2009 19:04:23 +0000</pubDate>
			<dc:creator>terriers</dc:creator>
			<guid isPermaLink="false">1425@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
Brand new here.&#60;br /&#62;
I think this is a great gallery script.&#60;/p&#62;
&#60;p&#62;A couple of questions if i may...&#60;br /&#62;
I realise the name states the obvious but is there a way to just have the pictures and thumbnails show without the other stuff, the options, change style colour, view simple version, toggle thumbs etc?&#60;/p&#62;
&#60;p&#62;Had a quick go at choosing a single stylesheet in index.php but it messed it all up, my inexperince no doubt.&#60;br /&#62;
Tanks,&#60;br /&#62;
Maggs.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>mcasner on "Multiple Galleries"</title>
			<link>http://www.e2interactive.com/forums/topic/multiple-galleries#post-293</link>
			<pubDate>Thu, 24 Jan 2008 23:43:37 +0000</pubDate>
			<dc:creator>mcasner</dc:creator>
			<guid isPermaLink="false">293@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Is it possible to create multiple/different galleries on the same site?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dukekj on "ASP Include"</title>
			<link>http://www.e2interactive.com/forums/topic/asp-include#post-1417</link>
			<pubDate>Mon, 30 Nov 2009 18:59:39 +0000</pubDate>
			<dc:creator>dukekj</dc:creator>
			<guid isPermaLink="false">1417@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Is it possiable to include this .php gallery in an existing .asp page?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dukekj on "Error: File too big"</title>
			<link>http://www.e2interactive.com/forums/topic/error-file-too-big#post-1418</link>
			<pubDate>Mon, 30 Nov 2009 19:18:45 +0000</pubDate>
			<dc:creator>dukekj</dc:creator>
			<guid isPermaLink="false">1418@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I keep getting an &#34;Error: File too big&#34; error on upload.  The files are less then 100k.  Any suggestions?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rhizome on "Image Info Box"</title>
			<link>http://www.e2interactive.com/forums/topic/image-info-box#post-1414</link>
			<pubDate>Mon, 23 Nov 2009 17:26:52 +0000</pubDate>
			<dc:creator>Rhizome</dc:creator>
			<guid isPermaLink="false">1414@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;is there a way for the image info box to always show up over the image? I am referring to the image info from the XML file that appears in the div called infoloader.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;James
&#60;/p&#62;</description>
		</item>
		<item>
			<title>naru on "problems with uploading"</title>
			<link>http://www.e2interactive.com/forums/topic/problems-with-uploading#post-1412</link>
			<pubDate>Fri, 20 Nov 2009 22:47:51 +0000</pubDate>
			<dc:creator>naru</dc:creator>
			<guid isPermaLink="false">1412@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I have read the instructions..on a mac. I manged to log on. I get the image folders location and thumbnail location which I put as e2/images and e2/imagethumbs which were the original folders in the download.&#60;/p&#62;
&#60;p&#62;I hit submit.&#60;br /&#62;
then I get large images uploaded etc. but if I look on the server in those folders there is nothing and if I hit the link I get this&#60;br /&#62;
&#60;a href=&#34;http://www.naruphotography.net/e2/uploader/e2/imagesAston_Martin_DB4_Zagato_4.jpg&#34; rel=&#34;nofollow&#34;&#62;http://www.naruphotography.net/e2/uploader/e2/imagesAston_Martin_DB4_Zagato_4.jpg&#60;/a&#62;&#60;br /&#62;
seems to be a / missing.&#60;/p&#62;
&#60;p&#62;page not found&#60;/p&#62;
&#60;p&#62;even if it loaded what would be my URL?&#60;/p&#62;
&#60;p&#62;any help much appreciated..thanks in advance
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cpr85 on "1st install - Main Images not showing"</title>
			<link>http://www.e2interactive.com/forums/topic/1st-install-main-images-not-showing#post-1410</link>
			<pubDate>Fri, 13 Nov 2009 14:53:35 +0000</pubDate>
			<dc:creator>cpr85</dc:creator>
			<guid isPermaLink="false">1410@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I've just installed e2GalleryPro on my webspace - the instructions are straight forward, the only thing I have tweaked so far is the uploader username and password.&#60;/p&#62;
&#60;p&#62;When i navigate to the gallery page, it just says loading but no main images appear but the thumbs appear along the bottom as they should with their descriptions etc.&#60;br /&#62;
There's also a script error in IE which can be seen on the screenshot below.&#60;/p&#62;
&#60;p&#62;I've uploaded to &#60;a href=&#34;http://www.mysite.com/e2gallerypro&#34; rel=&#34;nofollow&#34;&#62;http://www.mysite.com/e2gallerypro&#60;/a&#62;, what else might i need to do? Seems strange to me the thumbs are working but the main images are not, and they have definately uploaded.&#60;/p&#62;
&#60;p&#62;Many thanks&#60;br /&#62;
Chris&#60;/p&#62;
&#60;p&#62;&#60;em&#62;(Image removed because it was to large)&#60;/em&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>imayra on "uploading problem"</title>
			<link>http://www.e2interactive.com/forums/topic/uploading-problem#post-1408</link>
			<pubDate>Fri, 06 Nov 2009 22:29:50 +0000</pubDate>
			<dc:creator>imayra</dc:creator>
			<guid isPermaLink="false">1408@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;can somebody help me please?&#60;br /&#62;
i have a problem with uploading files.&#60;br /&#62;
i have installed E2photogallery, when i try to upload files everything seems to go wright, i can log in and choose the files that i want to upload.&#60;/p&#62;
&#60;p&#62;after i get the report that he's finish uploading, i can't find the files anywhere... not in de images/ folder.. also can't find thumbnails?&#60;br /&#62;
i've  tried for a couple of hours now, can't get it to work.&#60;/p&#62;
&#60;p&#62;what am i doing wrong?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>c_f_girl on "can&#039;t find the error"</title>
			<link>http://www.e2interactive.com/forums/topic/cant-find-the-error#post-1401</link>
			<pubDate>Sat, 10 Oct 2009 13:55:24 +0000</pubDate>
			<dc:creator>c_f_girl</dc:creator>
			<guid isPermaLink="false">1401@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;i fixed all mistakes  due to your forum,tnx...but now my big fotos are not loaded, i don't know why and it doesnt write me the error. the path is right and imagethumbs it shows me..what wrong?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://glassfanata.com/gallery/index.php&#34; rel=&#34;nofollow&#34;&#62;http://glassfanata.com/gallery/index.php&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dasquad on "Sort pictures by date"</title>
			<link>http://www.e2interactive.com/forums/topic/sort-pictures-by-date#post-1388</link>
			<pubDate>Tue, 29 Sep 2009 18:52:12 +0000</pubDate>
			<dc:creator>dasquad</dc:creator>
			<guid isPermaLink="false">1388@http://www.e2interactive.com/forums/</guid>
			<description>&#60;p&#62;I want to have the uploaded pictures in the thumbnials sorted by date. How can i do this?&#60;/p&#62;
&#60;p&#62;The first picture the newest, ... and the last picture the oldest.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
