rss.php help me plz phpbb 2.0.10 + cpg132 rss.php help me plz phpbb 2.0.10 + cpg132
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

rss.php help me plz phpbb 2.0.10 + cpg132

Started by ohfishing, November 01, 2004, 02:32:25 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

ohfishing

Hello again ,In an attempt to run the "latest pictures uploaded" image gallery to my forum index I TRIED TO DO THE FOLLOWING...  I hate to keep asking questions about this issue but Im so LOST ... I uploaded an rss.php file to my cpg132 directory, I modified it to the best of my ability , the file is here > <?php 
// ------------------------------------------------------------------------- //
// Coppermine Photo Gallery - RSS Feed                                      //
// ------------------------------------------------------------------------- //
// Copyright (C) Dr. Tarique Sani                                           //
// http://tariquesani.net/                                                  //
// ------------------------------------------------------------------------- //
// This program is free software; you can redistribute it and/or modify     //
// it under the terms of the GNU General Public License as published by     //
// the Free Software Foundation; either version 2 of the License, or        //
// (at your option) any later version.                                      //
// ------------------------------------------------------------------------- //
// Just put into the same directory as your coppermine installation         //
// ------------------------------------------------------------------------ //

define('IN_COPPERMINE'true);
define('INDEX_PHP'true);
require(
'include/init.inc.php');

//Change these variables to reflect your choices 
$album 'lastup';
$thumb_count 8;
$album_name "";
$lower_limit 0;
$thumb_per_page 12;
//Changes these to point to your site
$link_url "http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-";
$image_url "http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/albums/";

get_private_album_set();

$data get_pic_data($album$thumb_count$album_name$lower_limit$thumb_per_page);

header ("content-type: text/xml");

$rssHeader = <<<EOT
<?xml version="1.0"?>

<rdf:RDF
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns="http://purl.org/rss/1.0/"
>

<channel>
<title>$CONFIG[gallery_name]</title>
<link>http://mermaid.sanisoft.com/coppermine/</link>
<description>$CONFIG[gallery_description] - $album_name</description>
<dc:creator>Tarique Sani</dc:creator>
<dc:language>en-us</dc:language>
</channel>
EOT;

echo $rssHeader;

foreach($data AS $picture) {
   $thumb_url = "$image_url$picture[filepath]$CONFIG[thumb_pfx]$picture[filename]";
   $description = '<a href="' . $link_url . $picture['pid'] . '"><img src="' . $thumb_url . '" border="1" vspace="2" hspace="2" align="left" ></a>'.$picture[caption].$picture[caption_text];
   $description = htmlentities($description);
   
   $item = '<item rdf:about="' . $link_url . $picture['pid'] . '">
             <dc:date>' . date('Y-m-d H:i:s', time()) . '</dc:date>
             <title>'.$picture[title].'</title>
             <link>' . $link_url . $picture[pid] . '</link>
             <description>'.$description.'</description>            
            </item>';

   echo $item;
}

$rssFooter = <<<EOT
</rdf:RDF>
EOT;

echo $rssFooter;

?>
  I then installed zfeed/newsfeeds to my cpg132 directory chmode 777 , After that I inserted this code
Quote<? include ('newsfeeds/zfeeder.php'); ?> <? http://ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php ?>

to my index_body.tpl as so ...
Quote]<table align="right"> {SOW}
   <tr>
      <td><span class="nav"><a href="{U_VIEW_OLDER_TOPIC}" class="nav">{L_VIEW_PREVIOUS_TOPIC}</a> :: <a href="{U_VIEW_NEWER_TOPIC}" class="nav">{L_VIEW_NEXT_TOPIC}</a></span></td>
      </tr>
</table>
<br />
<table width="100%" cellspacing="0" cellpadding="2" border="0" align="center">
 <tr>
   <td align="left" valign="bottom"><span class="gensmall">
   <!-- BEGIN switch_user_logged_in -->
   {LAST_VISIT_DATE}<br />
   <!-- END switch_user_logged_in -->
   {CURRENT_TIME}<br /></span><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td><td align="center" valign="bottom"><span class="gensmall">
{L_HAPPY_ANNIVERSARY}
<!-- BEGIN joined_date -->
{joined_date.USERNAME}  ({joined_date.YEARS}),&nbsp;
<!-- END joined_date -->
</span>
</td>

   <td align="right" valign="bottom" class="gensmall">
      <!-- BEGIN switch_user_logged_in -->
      <a href="{U_SEARCH_NEW}" class="gensmall">{L_SEARCH_NEW}</a><br /><a href="{U_SEARCH_SELF}" class="gensmall">{L_SEARCH_SELF}</a><br />
      <!-- END switch_user_logged_in -->
      <a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a></td>
 </tr>
</table>
<div class="forumlinemain">
<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
   <!-- BEGIN catrow -->
 <tr>
   <th colspan="2" class="thCornerL" height="25" nowrap="nowrap" align="left">&nbsp;&curren;&nbsp;<a href="{catrow.U_VIEWCAT}" class="cattitle">{catrow.CAT_DESC}</a></th>
   <th width="50" class="thTop" nowrap="nowrap">&nbsp;{L_TOPICS}&nbsp;</th>
   <th width="50" class="thTop" nowrap="nowrap">&nbsp;{L_POSTS}&nbsp;</th>
   <th class="thCornerR" nowrap="nowrap">&nbsp;{L_LASTPOST}&nbsp;</th>
 </tr>
<? include ('newsfeeds/zfeeder.php'); ?> <? http://ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php ?>






<!-- BEGIN forumrow -->
 <tr>
   <td class="row1" align="center" valign="middle" height="50" width="10%"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}"  alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" /></td>
   <td class="row2" width="90%" height="50"><img src="templates/SoftBlue/images/icon_mini_faq.gif" border="0" alt="" hspace="3" /><span class="forumlink"> <a href="{catrow.forumrow.U_VIEWFORUM}" class="forumlink">{catrow.forumrow.FORUM_NAME}</a><br />
     </span> <span class="genmed">{catrow.forumrow.FORUM_DESC}<br />
     </span><span class="gensmall">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}</span></td>
   <td class="row1" align="center" valign="middle" height="50"><span class="gensmall">{catrow.forumrow.TOPICS}</span></td>
   <td class="row1" align="center" valign="middle" height="50"><span class="gensmall">{catrow.forumrow.POSTS}</span></td>
   <td class="row3" align="center" valign="middle" height="50" nowrap="nowrap"> <span class="gensmall">{catrow.forumrow.LAST_POST}</span></td>
 </tr>
 <!-- END forumrow -->
 <!-- END catrow -->
</table>
</div>
<br />
<!-- BEGIN switch_user_logged_out -->
<form method="post" action="{S_LOGIN_ACTION}">
<div class="forumlinemain">
 <table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline">
   <tr>
     <td class="catHead" height="28"><a name="login"></a><span class="cattitle">{L_LOGIN_LOGOUT}</span></td>
   </tr>
   <tr>
     <td class="row1" align="center" valign="middle" height="28"><span class="gensmall">{L_USERNAME}:
      <input class="post" type="text" name="username" size="10" />
      &nbsp;&nbsp;&nbsp;{L_PASSWORD}:
      <input class="post" type="password" name="password" size="10" maxlength="32" />
      &nbsp;&nbsp; &nbsp;&nbsp;{L_AUTO_LOGIN}
      <input class="text" type="checkbox" name="autologin" />
      &nbsp;&nbsp;&nbsp;
      <input type="submit" class="mainoption" name="login" value="{L_LOGIN}" />
      </span> </td>
   </tr>
 </table></div>
</form>
<!-- END switch_user_logged_out -->
<div class="forumlinemain">
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline">
 <tr>
   <td class="catHead" colspan="2" height="28"><table width="100%">
<tr>
<!--
   <td class="row1" align="center" valign="middle" rowspan="2"><img src="templates/subSilver/images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" /></td>
-->
   <td class="row1" align="center" valign="middle" rowspan="2"><span class="mainmenu">{L_NAME_WELCOME}</span><BR /><span class="mainmenu">{U_NAME_LINK}</span><BR /><BR />{AVATAR_IMG}</td>


<td width="50%" align="right"><span class="cattitle"><a href="{U_MARK_READ}" class="cattitle">{L_MARK_FORUMS_READ}</a></span></td>
</tr>
</table></td>
 </tr>
 <tr>
   <td class="row1" align="left" colspan="2"><span class="gensmall">{TOTAL_USERS_ONLINE} &nbsp; [ {L_WHOSONLINE_ADMIN} ] &nbsp; [ {L_WHOSONLINE_MOD} ]<br />{RECORD_USERS}<br />{LOGGED_IN_USER_LIST}<br />{L_ONLINE_EXPLAIN}</span></td>
</tr>
<tr>    <td class="catHead" colspan="3" height="28"><span class="cattitle">Board Statistics - Forum Legend</span></td>
 </tr>
 <tr>
   <td class="row2" align="left"><span class="gensmall">{TOTAL_POSTS}<br />{TOTAL_USERS}<br />{NEWEST_USER}<br />{L_RANDOM_USER} {RANDOM_USER_LINK}<br /></span></td>
<td class="row1" align="right"><table cellspacing="3" border="0" align="center" cellpadding="0">
 <tr>
   <td width="20" align="center"><img src="templates/SoftBlue/images/folder_new_big.gif" alt="{L_NEW_POSTS}"/></td>
   <td><span class="gensmall">{L_NEW_POSTS}</span></td>
   <td>&nbsp;&nbsp;</td>
   <td width="20" align="center"><img src="templates/SoftBlue/images/folder_big.gif" alt="{L_NO_NEW_POSTS}" /></td>
   <td><span class="gensmall">{L_NO_NEW_POSTS}</span></td>
   <td>&nbsp;&nbsp;</td>
   <td width="20" align="center"><img src="templates/SoftBlue/images/folder_locked_big.gif" alt="{L_FORUM_LOCKED}" /></td>
   <td><span class="gensmall">{L_FORUM_LOCKED}</span></td><!-- Clock Code: Start -->
<br />
<table align="center" cellpadding="3" cellspacing="1" border="0" class="forumline">
 <tr>
   <td class="catHead" colspan="1" align="center">
   <span class="cattitle">{CLOCK_NAME}</span>
   </td>
 </tr>
 <tr>
   <td align="center" valign="middle">

   <div align="center"><embed width="170" height="150" src="./Clock.swf">
   </div>
   
   </td>
 </tr>
</table>
<!-- Clock Code: End -->

 </tr>
</table>
</td>
</tr>
</table>
</div>
<br clear="all" />

I must be missing something, can someone please help me out, 3 days working on this ....... what could be my mistake?  ???
OHfishing

ohfishing

#1
my forum is here > http://ohfishing.com/stl-web/bulletin/phpBB2/index.php test account = coppermine test password = test     My coppermine gallery is here http://www.ohfishing.com/v-web/bulletin/phpBB2/cpg132/index.php please someone pinpoint my problem !
P.S. If you look on my forum index you will see the error on the block above the forum catagorys
OHfishing

ohfishing

here are instructions for my zfeeder
Quotescript files

- zfeeder.php - this is the zFeeder script
- zfuncs.php - zFeeder's functions
- admin.php - the administration panel (along with files in includes dir)
- config.php - stores configuration
- index.php - dummy file
- wap.php - outputs wml for wap sites
- subscriptions list files (categories) in the categories subdirectory
- several templates for your use in the templates subdirectory


NOTE: zFeeder comes by default with several categories and multiple subscriptions. They are there for demonstration purposes and personal use only. If you want to display them on your site first check the copyright, licenses and terms of use of that feeds (sites).


top


--------------------------------------------------------------------------------

how to install


- upload newsfeeds directory to your webhost

- give "write" and "execute" attributes to subdirectory: cache
  (either with your FTP client or with CHMOD 0777)
  attributes of all files in cache dir should be 0766 or 0666
  Note: 0666, 0766 and 0777 attributes are considered a security risk

- give writeable attributes to config.php and to files in subdirectory categories

- point your browser to http://your_domain/newsfeeds/admin.php

- configure values and save configuration

- if you set "use subscription file" to "no" then configuration of feeds list will no
  longer be available in the admin config panel, therefore you must edit
  zfeeder.php and set them manually

- include zfeeder.php on your pages

If you want to add new categories you must copy empty.opml with a new category name, in categories directory, and then add subcriptions to that category or import OPML files to it.
If you want to delete a category simply delete the category.opml file from the categories directory.

zFeeder 1.6 implemented two mechanisms for login to admin panel. You can use:
- server - HTTP Server Basic Auth (has limitations on several webservers such as the ones that run PHP as CGI; sends user password base64 encoded; when you logout you need to press cancel when the authentication box appears)
- session - PHP sessions (depends on your webhost's php.ini configuration and can use cookies; sends user password clear text)
- no panel - this disables the login to admin panel, so you can no longer access it. to re-enable login you need to edit config.php and change ZF_LOGINTYPE.

top


--------------------------------------------------------------------------------


how to include

once the installation is succesfull you can include the feedsreader on your php page

Example: <? include ('newsfeeds/zfeeder.php'); ?>


You can also call the script with 4 parameters:
- zftemplate - a template name (filename in templates directory, without the extension)
- zfposition - a list of comma separated values of rss numbers to display (p1,p2,...)
- zfmore - gives all the news from the specified feed number (this is implemented in 'more')
- zfcategory - category name (filename in categories subdirectory, without the extension)

examples:

http://example.com/newsfeeds/zfeeder.php?zftemplate=logos - will show with
the logos template

http://example.com/page_with_zfeeder.php?zftemplate=some&zfposition=p3,p5,p1
will show only the feeds 3, 5, 1 (that you defined in zfeeder) in that order,
in a 'some' template.

If you want to have it on different pages, showing on each page different feeds, you must include it like this:

<? $_GET['zfposition']="p1,p2"; include('newsfeeds/zfeeder.php'); ?>
this will show on the page where is included only the feeds with position 1 and 2

<? $_GET['zfposition']="p3,p2"; $_GET['zftemplate']="logos";
include('newsfeeds/zfeeder.php'); ?>
this will show on the page where is included only the feeds with position 2 and 3 and
will be shown with a different template

You can also include it multiple times in the same page to organize the feeds or to allow multiple templates on the same page.
NOTE: Check the demo pages to view useful examples.

top


--------------------------------------------------------------------------------


online/offline refreshing (the refresh key)

Until zFeeder 1.3 and by default in zFeeder 1.3 the feeds are refreshed online. This means that the script checks each time it is executed if the feeds expired and if so then it tries to refresh them. This may slow the loading of the page and some times (if there are many feeds) the script may even timeout.

The offline refreshing is now available, which means the script doesn't try to refresh any feeds, unless it is told to do so. This means you can add the feed refreshing as an automated task (cron) or only when you call it with certain parameters from your browser.

There are 2 things that allow offline refreshing: the REFRESH_KEY and the 'zfrefresh' parameter passed to the script.

Whenever the REFRESH_KEY is empty the mode of refreshing is: online
Whenever the REFRESH_KEY is not empty the mode of refreshing is: offline

You can put any value in REFRESH_KEY (a keyword) and when you want the script to check and refresh feeds you call it: http://example.com/newsfeeds/zfeeder.php?zfrefresh=your_keyword
This will refresh the feeds in the default category. If you want to refresh other category:
http://example.com/newsfeeds/zfeeder.php?zfcategory=other&zfrefresh=your_keyword

It is not recommended to call the script from your browser. Instead it is better to make it an automated task with cron (and lynx or wget or a php script).

You can view some good articles on cron and php here and here.


top


--------------------------------------------------------------------------------


customization

You can customize the looks of the feeds reader by editing the templates or create
new ones and by configuring values in the configuration section of the script.
There are comments describing what each option means.

Customizing templates:
you can edit and customize (create templates) by changing html code in the template files
The following values in them are coverted:

- {chanlogo} is replaced with the logo of the channel if available;
- {chanlink} is replaced with the channel link;
- {chandesc} is replaced with the channel description;
- {chantitle} is replaced with the channel title;
- {feedurl} is replaced with the rss feed url;
- {moreurl} is replaced with a link which displays all of the stored news for that feed;
- {lasupdated} is replaced with a date when the feed was last read from source
- {scripturl} is replaced with the url to your script
- {hideurl} is replaced with a values so that when clicked that feed will not show
- {category} is replaced with the name of the category
- {link} is replaced with the news link;
- {pubdate} is replaced with the news publication date if available;
- {title} is replaced with the news title;
- {description} is replaced with the available news description;
- {id} is replaced with the number of the channel (feed) if it is in the channel section, or with the number of the news item (if it is in the news section and you use only one feed)


note: if you create nice templates you are welcomed to share them with everybody.
you will be given credit on site.

top


--------------------------------------------------------------------------------

security stuff

It is recommended that after you customize your configuration and subscriptions
you set config.php and categories files attributes back to readonly.
Whenever you want to change them afterwards you need to set them back to write.
If you feel confident manually editing config.php and subscriptions, you might as well delete admin.php and all files in includes directory except zfuncs.php.

top


--------------------------------------------------------------------------------


wap

You need to provide a link to wap.php from your wml pages. There is a demo_wap.wml page to show your how it's done. You can edit and change the templates the same as explained above. wml templates are located in the templates directory, their names begin with "wap_" and their extension is html, altough they are wml.

Limitations:
- by default only supports valid well-formed RSS sources, so feeds which contains special characters like & may not work. To make them work you need to look in "templates" directory and copy "wap_categ_CDATA.html" to "wap_categ.html" and "wap_sources_CDATA.html" to "wap_sources.html".

- zFeeder does not check for the size of the content and mobile devices supports only limited size pages, so it's your duty to include only limited size feeds or set the number of displayed news in the admin panel.

- some feeds may contain images and stuff that only a limited category of mobiles support (images like gif, jpg; the rest supports only wbmp, so the images will not be displayed).

top


--------------------------------------------------------------------------------


hot tips

- find out more about newsfeeds or where to find them here

- if you put the bookmarklet to your browser then everytime you visit a site and want
  to add it's content to your site just click on it and if a rss is detected by
  autodiscovery then it will drive you to your site admin panel to auto-subscribe to it.


what else you can show with zFeeder besides standard feeds:

- you can search for feeds containing a specific keyword by entering this address in the
  import feed list:

  http://www.feedster.com/rss.php?q=someword&sort=date&type=opml&ie=UTF-8

  this will search on Feedster any feeds containing "someword" and return you all that
  feeds, which you can import to your subscriptions

- you can import weather for a city by entering the following address in add new,
  Feed URL:   http://laughingmeme.org/weather-rss/country/city.rss
 
  this will use Kellan Elliott-McCrea's (experimental) RSS Weather Service to display
  the weather for country's city: city

  You can also use rssweather.com

- you can import and show the sites near any location by entering the address in
   Feed URL:   http://geourl.org/rss091/?lat=44.4946&lon=26.0594&dist=300

   this will use GeoURL service to show the sites at 300 miles nearby the location given by the latitude: 44.4946 and longitude: 26.0594 .
   To find your own coordinates you can use: Maporama
   
- for more information about what you can display through RSS you can check Lockergnome's RSS Resource or find feeds at Syndic8


OHfishing

ohfishing

if you run the rss.php file in your browser 
Quotehttp://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php
you will see this? >
Quote<?xml version="1.0" ?>
- <rdf:RDF xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/">
- <channel>
  <title>OHfishing Member Photo Gallery's</title>
  <link>http://mermaid.sanisoft.com/coppermine/</link>
  <description>OHfishing Member's Photo's - Last additions</description>
  <dc:creator>Tarique Sani</dc:creator>
  <dc:language>en-us</dc:language>
  </channel>
- <item rdf:about="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-946">
  <dc:date>2004-10-31 19:33:02</dc:date>
  <title>carp at Linesville spillway</title>
  <link>http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-946</link>
  <description><a href="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-946"><img src="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/albums/userpics/10036/thumb_100-0064_IMG.JPG" border="1" vspace="2" hspace="2" align="left" ></a><span class="thumb_title"><a href ="profile.php?uid=36">Tom the shadowman</a></span><span class="thumb_caption">Oct 31, 2004</span></description>
  </item>
- <item rdf:about="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-945">
  <dc:date>2004-10-31 19:33:02</dc:date>
  <title>bears up at linesville</title>
  <link>http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-945</link>
  <description><a href="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-945"><img src="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/albums/userpics/10036/thumb_100-0060_IMG.JPG" border="1" vspace="2" hspace="2" align="left" ></a><span class="thumb_title"><a href ="profile.php?uid=36">Tom the shadowman</a></span><span class="thumb_caption">Oct 31, 2004</span></description>
  </item>
- <item rdf:about="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-944">
  <dc:date>2004-10-31 19:33:02</dc:date>
  <title>dad with his kids</title>
  <link>http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-944</link>
  <description><a href="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-944"><img src="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/albums/userpics/10036/thumb_101-0111_IMG.JPG" border="1" vspace="2" hspace="2" align="left" ></a><span class="thumb_title"><a href ="profile.php?uid=36">Tom the shadowman</a></span><span class="thumb_caption">Oct 31, 2004</span></description>
  </item>
- <item rdf:about="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-943">
  <dc:date>2004-10-31 19:33:02</dc:date>
  <title>cindy, with mom dad and babies</title>
  <link>http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-943</link>
  <description><a href="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-943"><img src="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/albums/userpics/10036/thumb_101-0110_IMG.JPG" border="1" vspace="2" hspace="2" align="left" ></a><span class="thumb_title"><a href ="profile.php?uid=36">Tom the shadowman</a></span><span class="thumb_caption">Oct 31, 2004</span></description>
  </item>
- <item rdf:about="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-942">
  <dc:date>2004-10-31 19:33:02</dc:date>
  <title>family photo</title>
  <link>http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-942</link>
  <description><a href="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-942"><img src="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/albums/userpics/10036/thumb_100-0012_IMG.JPG" border="1" vspace="2" hspace="2" align="left" ></a>this is from left to right.......abigail simply so fine.....in the middle is simply sir jacob.........and than the son simply sir joseph......my babies my family................<span class="thumb_title"><a href ="profile.php?uid=36">Tom the shadowman</a></span><span class="thumb_caption">Oct 30, 2004</span></description>
  </item>
- <item rdf:about="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-941">
  <dc:date>2004-10-31 19:33:02</dc:date>
  <title>some of you may know this fella, this is JB he lives around youngstown or there abouts.</title>
  <link>http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-941</link>
  <description><a href="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-941"><img src="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/albums/userpics/10002/thumb_normal_IMG_0012.jpg" border="1" vspace="2" hspace="2" align="left" ></a>some of you may know this fella, this is JB he lives around youngstown or there abouts. posted by TOM THE SHADOWMAN <span class="thumb_title"><a href ="profile.php?uid=2">JV</a></span><span class="thumb_caption">Oct 30, 2004</span></description>
  </item>
- <item rdf:about="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-938">
  <dc:date>2004-10-31 19:33:02</dc:date>
  <title />
  <link>http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-938</link>
  <description><a href="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-938"><img src="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/albums/userpics/10036/thumb_IMG_0002.JPG" border="1" vspace="2" hspace="2" align="left" ></a>this is simply sir jacob, my best buddy ever, now that i can work this i,ll send in a pic of the whole family...<span class="thumb_title"><a href ="profile.php?uid=36">Tom the shadowman</a></span><span class="thumb_caption">Oct 30, 2004</span></description>
  </item>
- <item rdf:about="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-937">
  <dc:date>2004-10-31 19:33:02</dc:date>
  <title />
  <link>http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-937</link>
  <description><a href="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-937"><img src="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/albums/userpics/10036/thumb_alans musky.JPG" border="1" vspace="2" hspace="2" align="left" ></a><span class="thumb_title"><a href ="profile.php?uid=36">Tom the shadowman</a></span><span class="thumb_caption">Oct 30, 2004</span></description>
  </item>
- <item rdf:about="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-936">
  <dc:date>2004-10-31 19:33:02</dc:date>
  <title>Heheh ... I-Guys ??</title>
  <link>http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-936</link>
  <description><a href="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-936"><img src="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/albums/userpics/10020/thumb_Raybob-6-14-03.jpg" border="1" vspace="2" hspace="2" align="left" ></a>Fun trip on the Big Pond on Bob oh's boat -Rodbender-<span class="thumb_title"><a href ="profile.php?uid=20">Ray IL</a></span><span class="thumb_caption">Oct 30, 2004</span></description>
  </item>
- <item rdf:about="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-935">
  <dc:date>2004-10-31 19:33:02</dc:date>
  <title>Ft. Myers Kingfish</title>
  <link>http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-935</link>
  <description><a href="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-935"><img src="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/albums/userpics/10007/thumb_davidfish.jpg" border="1" vspace="2" hspace="2" align="left" ></a>Ft. Myers Kinfish<span class="thumb_title"><a href ="profile.php?uid=7">sharky</a></span><span class="thumb_caption">Oct 30, 2004</span></description>
  </item>
- <item rdf:about="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-934">
  <dc:date>2004-10-31 19:33:02</dc:date>
  <title>FisherMOM's FisherDaughter</title>
  <link>http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-934</link>
  <description><a href="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-934"><img src="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/albums/userpics/10002/thumb_Celestehuggingcarp~0.jpg" border="1" vspace="2" hspace="2" align="left" ></a>FisherMOM's FisherDaughter FisherMOM <span class="thumb_title"><a href ="profile.php?uid=2">JV</a></span><span class="thumb_caption">Oct 30, 2004</span></description>
  </item>
- <item rdf:about="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-933">
  <dc:date>2004-10-31 19:33:02</dc:date>
  <title>FisherMOM's FisherDaughter</title>
  <link>http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-933</link>
  <description><a href="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/rss.php?pos=-933"><img src="http://www.ohfishing.com/stl-web/bulletin/phpBB2/cpg132/albums/userpics/10002/thumb_ssCelesteandMom_scarp2~0.jpg" border="1" vspace="2" hspace="2" align="left" ></a>FisherMOM's FisherDaughter FisherMOM <span class="thumb_title"><a href ="profile.php?uid=2">JV</a></span><span class="thumb_caption">Oct 30, 2004</span></description>
  </item>
  </rdf:RDF>
that appears to be my last uploade pictures, so the rss.php if good? maybe my problem is elsewhere
?
OHfishing