Results 1 to 6 of 6

Thread: Subscription Feed on a Freewebs Site

  1. #1

    Default Subscription Feed on a Freewebs Site

    I see multiple subscriptions are listed through a freewebs site how can I achieve this?

    Remember to always click the thanks button of those who help you! It makes them feel wanted:

  2. #2

    Default Re: Subscription Feed on a Freewebs Site

    Pretty simple actually.

    Register on Freewebs.
    Code:
    Smalls1652: Didja use LifeAlert?
    Vash: I've fallen and I can't get up!

  3. #3

    Default Re: Subscription Feed on a Freewebs Site

    Please credit me with enough intelligence to create a site. I can't find a way to host my .xml as a document in it's own right....

    Remember to always click the thanks button of those who help you! It makes them feel wanted:

  4. #4
    Chris (Administrator) Vash's Avatar
    Join Date
    Sep 2007
    Location
    Teh Interwebz
    Posts
    1,992
    Blog Entries
    27

    Default Re: Subscription Feed on a Freewebs Site

    1. Get basic understanding of how a subscription .xml file is set up.
    2. Make blank text file.
    3. Write subscription in blank text file, save as .xml file.
    4. Upload to freewebs site.
    5. Duh.
    Animal Crossing: City Folk
    ACToolkit - NPC_Tool - PattView

  5. #5

    Default Re: Subscription Feed on a Freewebs Site

    The syntax of the subscription is like this
    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <subscription>
    <name>[Subscription Name]</name>
    <note/>
    <codelist>
    	<name>[1st codelist name]</name>
    	<game>
    		<name>[1st Game name]</name>
    		<gameid>[1st Game ID]</gameid>
    		<date>[1st Updated when?]</date>
    			<cheat>
    				<name>[cheat game #1 code #1 name]</name>
    				<codes>[cheat game #1 code #1 name]</codes>
    			</cheat>
    
    			<cheat>
    				<name>[cheat game #1 code #2 name]</name>
    				<codes>[cheat game #1 code #2 code]</codes>
    			</cheat>
    
    	</game>
           <game>
    		<name>[2nd Game name]</name>
    		<gameid>[2nd Game ID]</gameid>
    		<date>[2nd Updated when?]</date>
    			<cheat>
    				<name>[cheat game #2 code #1 name]</name>
    				<codes>[cheat game #2 code #1 name]</codes>
    			</cheat>
    
    			<cheat>
    				<name>[cheat game #2 code #2 name]</name>
    				<codes>[cheat game #2 code #2 code]</codes>
    			</cheat>
    
    	</game>
    
    </codelist>
    </subscription>

  6. #6

    Default Re: Subscription Feed on a Freewebs Site

    Quote Originally Posted by Vash
    1. Get basic understanding of how a subscription .xml file is set up.
    2. Make blank text file.
    3. Write subscription in blank text file, save as .xml file.
    4. Upload to freewebs site.
    5. Duh.
    I worked out afterwards how to link it.

    I just missed out 1 line of code when I wrote it :S

    Remember to always click the thanks button of those who help you! It makes them feel wanted:

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •