rejetto forum

Software => HFS ~ HTTP File Server => Topic started by: Bigbrett87 on December 11, 2005, 12:05:06 AM

Title: Is there anyone to let anyone use this?
Post by: Bigbrett87 on December 11, 2005, 12:05:06 AM
I have set up my own RSS feed, but i just wanted to know if it was possible for my friend using his psp on a DIFFERENT network to use my RSS feed. I have a firewall and windows firewall is disabled. So far i havent found a way to allow him to. Any suggestions would be appreciated, thanks a lot guys.
Title: Is there anyone to let anyone use this?
Post by: rejetto on December 11, 2005, 02:20:45 AM
once they reach your HFS, it is done
Title: Is there anyone to let anyone use this?
Post by: bigbrett87 on December 11, 2005, 11:48:59 PM
He cant get into the HFS is what im saying, when he goes to the link it says it cant be displayed.
Title: Is there anyone to let anyone use this?
Post by: SiY11 on December 19, 2005, 03:00:12 AM
You will have to add ports to be opened on your firewall kind of like port forwarding. And if you have an RSS feed made up for your internal network you will have to edit your RSS file to include your external IP address for it to work or you can make another one for external use.

Example of internal RSS file
Code: [Select]
<?xml version="1.0" encoding="windows-1252"?>
<rss version="2.0">
  <channel>
    <title>SiY&apos;s Music</title>
    <description>Music</description>
    <link>http://192.168.2.2:8080/</link>
    <lastBuildDate>Sun, 18 Dec 2005 20:44:15 -0500</lastBuildDate>
    <pubDate>Sun, 18 Dec 2005 20:44:12 -0500</pubDate>
    <image>
      <url>http://192.168.2.2:8080/Private/Pictures/siyinternetlogo.GIF</url>
      <title>SiY</title>
      <link>http://192.168.2.2:8080/</link>
      <width>38</width>
      <height>38</height>
    </image>
    <item>
      <title>Audioslave - Show Me How to Live</title>
      <description>Audioslave - 02 - Show Me How to Live.mp3</description>
      <link>http://192.168.2.2:8080/</link>
      <enclosure url="http://192.168.2.2:8080/Private/Music/My%20Music/Audioslave%20-%2002%20-%20Show%20Me%20How%20to%20Live.mp3" length="" type="Audio/MP3"></enclosure>
      <pubDate>Sun, 18 Dec 2005 19:45:40 -0500</pubDate>
    </item>

Example of external RSS file
Code: [Select]
<?xml version="1.0" encoding="windows-1252"?>
<rss version="2.0">
  <channel>
    <title>SiY&apos;s Music</title>
    <description>Music</description>
    <link>http://66.2xx.xxx.70:8080/</link>
    <lastBuildDate>Sun, 18 Dec 2005 20:44:15 -0500</lastBuildDate>
    <pubDate>Sun, 18 Dec 2005 20:44:12 -0500</pubDate>
    <image>
      <url>http://66.2xx.xxx.70:8080/Private/Pictures/siyinternetlogo.GIF</url>
      <title>SiY</title>
      <link>http://66.2xx.xxx.70:8080/</link>
      <width>38</width>
      <height>38</height>
    </image>
    <item>
      <title>Audioslave - Show Me How to Live</title>
      <description>Audioslave - 02 - Show Me How to Live.mp3</description>
      <link>http://66.2xx.xxx.70:8080/</link>
      <enclosure url="http://66.2xx.xxx.70:8080/Private/Music/My%20Music/Audioslave%20-%2002%20-%20Show%20Me%20How%20to%20Live.mp3" length="" type="Audio/MP3"></enclosure>
      <pubDate>Sun, 18 Dec 2005 19:45:40 -0500</pubDate>
    </item>
Notice the IP adress has changed for internal and external RSS feeds.