Hi
I have an online flash gallery that uses xml files (x2) to store paths, file names, file sizes (group.xml) menu items (localText.xml). I can edit them manually, adding/deleting but would like an admin panel to do this for me, just filling in the relevant details and uploading the images to the correct folders.
I think I need:
login - user and password
front end - with add, delete, edit entry, create new group, upload images (4 at a time)(group.xml)
- add menu items (localText.xml)
- create users
I know there is more to it than this but could do with some help to get started.
I’m pretty new to all this. Below are the two xml files I want to edit
group.xml
<?xml version='1.0' encoding='UTF-8'?>
<mediaGroup>
<amgVersion version="1.3" />
<groupInfo>
<author></author>
<authorApplication>AMG Hand Coded</authorApplication>
<creationDate>04/10/07, 01:27:09 PM</creationDate>
<galleryMaker name="Adobe Flash Gallery" version="1.3" />
<groupData groupID="" groupName="" />
<authorID></authorID>
<custom>
<groupTitle>Collection 1</groupTitle>
<groupDescription>Biog here</groupDescription>
<siteTitle></siteTitle>
<contactName></contactName>
<contactEmail></contactEmail>
</custom>
</groupInfo>
<sizes>
<imageSize size="thumb" maxwidth="96" maxheight="96" />
<imageSize size="small" maxwidth="800" maxheight="450" />
<imageSize size="medium" maxwidth="1040" maxheight="520" />
<imageSize size="large" maxwidth="1150" maxheight="650" />
<imageSize size="video" maxwidth="400" maxheight="300"/>
</sizes>
<media totalGallerySize="154">
<item>
<title>1109enh</title>
<description></description>
<mediaType category="image" format="jpeg" />
<renditions>
<rendition size="large" src="media/large/1109enh.jpg" height="650" width="474" />
<rendition size="medium" src="media/medium/1109enh.jpg" height="520" width="379" />
<rendition size="small" src="media/small/1109enh.jpg" height="450" width="328" />
<rendition size="thumb" src="media/thumb/1109enh.jpg" height="96" width="70" />
</renditions>
</item>
<item>
<title>1110crp</title>
<description></description>
<mediaType category="image" format="jpeg" />
<renditions>
<rendition size="large" src="media/large/1110crp.jpg" height="650" width="468" />
<rendition size="medium" src="media/medium/1110crp.jpg" height="520" width="375" />
<rendition size="small" src="media/small/1110crp.jpg" height="450" width="324" />
<rendition size="thumb" src="media/thumb/1110crp.jpg" height="96" width="69" />
</renditions>
</item>
localText.xml
<?xml version="1.0"?>
<localization>
<galleryMenus>
<menuitem label="View" event="MenuView">
<menuitem label="Gallery" type="radio" event="MenuViewGallery"/>
<menuitem label="Slideshow" type="radio" event="MenuViewSlideshow"/>
<menuitem label="Separator" event="Separator"/>
<menuitem label="Biog" type="radio" event="MenuViewAbout"/>
</menuitem>
<menuitem label="Background Color" event="MenuView">
<menuitem label="BgColor Dark Grey" event="livePreview" prevNode="<backgroundBgColor color='000000' alpha='100' >/"/>
<menuitem label="BgColor Grey" event="livePreview" prevNode="<backgroundBgColor color='111111' alpha='100' >/"/>
<menuitem label="BgColor Light Grey" event="livePreview" prevNode="<backgroundBgColor color='444444' alpha='100' >/"/>
</menuitem>
<menuitem label="Layout" event="MenuView">
<menuitem label="Scrolling Left" event="livePreview" prevNode="<changeGallery style='styles/style.xml' >/"/>
<menuitem label="Scrolling Bottom" event="livePreview" prevNode="<changeGallery style='styles/style_scrolling_bottom.xml' >/"/>
<menuitem label="Paginated" event="livePreview" prevNode="<changeGallery style='styles/style_paged.xml' >/"/>
</menuitem>
<menuitem label="Collection" event="MenuView">
<menuitem label="Collection 1" event="livePreview" prevNode="<changeGallery group='groups/group.xml' >/"/>
<menuitem label="Collection 2" event="livePreview" prevNode="<changeGallery group='groups/group2.xml' >/"/>
<menuitem label="Collection 3" event="livePreview" prevNode="<changeGallery group='groups/group3.xml' >/"/>
<menuitem label="Collection 4" event="livePreview" prevNode="<changeGallery group='groups/group4.xml' >/"/>
<menuitem label="Collection 5" event="livePreview" prevNode="<changeGallery group='groups/group5.xml' >/"/>
<menuitem label="Collection 6" event="livePreview" prevNode="<changeGallery group='groups/group6.xml' >/"/>
<menuitem label="Collection 7" event="livePreview" prevNode="<changeGallery group='groups/group7.xml' >/"/>
</menuitem>
<menuitem label="Links" event="MenuView">
<menuitem label="Contact" event="livePreview" prevNode="<anchorLink href='http://' target='_blank' >/"/>
<menuitem label="superGiantband.com" event="livePreview" prevNode="<anchorLink href='http://www.supergiantband.com' target='_blank' >/"/>
</menuitem>
</galleryMenus>
<toolTips>
<toolTip label="Next Image" item="SlideshowVCRNextTip"/>
<toolTip label="Previous Image" item="SlideshowVCRPrevTip"/>
<toolTip label="Play Slideshow" item="SlideshowVCRPlayTip"/>
<toolTip label="Pause Slideshow" item="SlideshowVCRPauseTip"/>
<toolTip label="View Gallery" item="SlideshowViewGalleryTip"/>
<toolTip label="View Slideshow" item="SlideshowViewSlideshowTip"/>
<toolTip label="Add Comment" item="SlideshowOpenCommentTip"/>
<toolTip label="Mark as Favorite" item="SlideshowMarkFavoriteTip"/>
<toolTip label="Next Page" item="ThumbnailNextPageTip"/>
<toolTip label="Previous Page" item="ThumbnailPrevPageTip"/>
<toolTip label="Last Page" item="ThumbnailLastPageTip"/>
<toolTip label="First Page" item="ThumbnailFirstPageTip"/>
<toolTip label="Play Video" item="SlideshowVideoPlayTip"/>
<toolTip label="Pause Video" item="SlideshowVideoPauseTip"/>
<toolTip label="Rewind Video" item="SlideshowVideoRewindTip"/>
</toolTips>
</localization>
Thanx