<?xml version="1.0"?>
<rss version="2.0">
    <channel>
        <title>Gossamer Forum</title>
        <link>http://www.gossamer-threads.com/forum/</link>
        <language>en-us</language>
        <managingEditor>gforum@gossamer-threads.com</managingEditor>
        <pubDate>Sat, 18 May 2013 08:49:43 GMT</pubDate>
        <generator>Gossamer Forum by Gossamer Threads, Inc.</generator>
        <docs>http://www.rssboard.org/rss-specification</docs>
        <image>
            <url>http://static.gossamer-threads.com/forum/images/gforum-logo.png</url>
            <title>Gossamer Forum</title>
            <link>http://www.gossamer-threads.com/forum/</link>
            <width>50</width>
            <height>50</height>
        </image>
        <item>
            <title>Benefits of Online Supplement Stores</title>
            <link>http://www.gossamer-threads.com/forum/General_C8/Chit_Chat_F26/Benefits_of_Online_Supplement_Stores_P314983/?page=unread#314983</link>
            <description>Modern day living has overloaded the new generation population with increased nutritional requirement and intake. Death taking diseases like cardiovascular, cancer, pulmonary conditions and neuron generative diseases are gripping across the world. Creative health supplement are the best awaited solution to prevent or reduce the sufferings in long run. These are consumed on daily basis for balancing the nutritional deficiency of body. Even if one consumes proper meals, fruits and vegetables, there is a considerable metabolism which happens inside the body due to which the nutrients are lost resulting in deficiency. However, sometimes supplements are also consumed for weight loss, bodybuilding or similar activities to churn the enzymes in your body. Whatever is the reason, but the fact is that supplements are in great demand everywhere!

You can buy supplements form a physical store or online but generally buying them from an Online Supplement Store is more advantageous. Chances are, you will be able to get it online for a better price and maybe before it hits store shelves. Buying from online nutrition stores will also increase your selection choice because there are far more stores online than physical stores. You get the supplements delivered to your doorstep, so it saves your time and resources in going to the market. Moreover, you have varied choices online to compare research and choose the best supplement for your needs. So the next time you are shopping for sports nutritional supplements, check online stores first, you might be surprised about the services offered.</description>
            <guid>166b231a6863bd090fdc89b5951ee0b9</guid>
            <pubDate>May 18, 2013, 1:40 AM</pubDate>
        </item>
        <item>
            <title>Re: [patricktarget] Sort By Functionality</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Gossamer_Links_C5/Development%2C_Plugins_and_Globals_F20/Re%3A_%5Bpatricktarget%5D_Sort_By_Functionality_P314982/?page=unread#314982</link>
            <description>Hi,

I *think* you can sort categories by doing:

page.cgi?g=Category_Name/Foo_Bar;sb=The_Field;so=ASC

Hope that helps

Cheers

Andy (mod)
andy@ultranerds.co.uk
----------------------------------------------------------------------
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total &amp;quot;value&amp;quot; $3,325 &amp;amp; rising, for just $350)| GLinks ULTRA Package PRO (plugins total &amp;quot;value&amp;quot; $5,625 &amp;amp; rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates</description>
            <guid>aa202d1aeaa3a5a077e92635e0114afd</guid>
            <pubDate>May 16, 2013, 11:36 PM</pubDate>
        </item>
        <item>
            <title>Re: [Andy] Sort By Functionality</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Gossamer_Links_C5/Development%2C_Plugins_and_Globals_F20/Re%3A_%5BAndy%5D_Sort_By_Functionality_P314981/?page=unread#314981</link>
            <description>Hi Andy,

Is there anyway to use the sort functionality in the category page in the url? I have a sort by dropdown on the page and it would be ideal to have this work through the url. They can sort by the title and others. Is this possible?</description>
            <guid>04433dd9d540aff2576842a78e22025d</guid>
            <pubDate>May 16, 2013, 1:22 PM</pubDate>
        </item>
        <item>
            <title>Re: [patricktarget] Sort By Functionality</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Gossamer_Links_C5/Development%2C_Plugins_and_Globals_F20/Re%3A_%5Bpatricktarget%5D_Sort_By_Functionality_P314980/?page=unread#314980</link>
            <description>Hi,

1) Using sb in category pages won&#039;t work. You need to update the category sort order defined in Setup &amp;gt; Build Options . sb is only effeective for things like review.cgi / search.cgi

2) As Tandat said, this is used by the rate.cgi system. I would leave that alone. Just add a new one called &amp;quot;ReviewRating&amp;quot; or something (as a FLOAT)...then make a script to simply go through each link and get the average rating nightly:



Code:
#!/usr/local/bin/perl

use strict;
use CGI::Carp qw(fatalsToBrowser);
use lib &#039;/path/to/admin&#039;;
use Links qw/$PLG $IN $DB/;

local $SIG{__DIE__} = \&amp;amp;Links::fatal;

Links::init(&#039;/path/to/admin&#039;);

my $Reviews = $DB-&amp;gt;table(&amp;quot;Reviews&amp;quot;);
my $Links	= $DB-&amp;gt;table(&amp;quot;Links&amp;quot;);
my $sth = $Links-&amp;gt;select( [&#039;ID&#039;], { isValidated =&amp;gt; &amp;quot;Yes&amp;quot; } );
while (my $id = $sth-&amp;gt;fetchrow) {
$Links-&amp;gt;update( { ReviewRating =&amp;gt; $Reviews-&amp;gt;select( [&#039;AVG(Review_Rating)&#039;], { Review_LinkID =&amp;gt; $id } )-&amp;gt;fetchrow }, { ID =&amp;gt; $id }) || die $GT::SQL::error;
}

Untested, but should work =)

Cheers

Andy (mod)
andy@ultranerds.co.uk
----------------------------------------------------------------------
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total &amp;quot;value&amp;quot; $3,325 &amp;amp; rising, for just $350)| GLinks ULTRA Package PRO (plugins total &amp;quot;value&amp;quot; $5,625 &amp;amp; rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates</description>
            <guid>98082edb8fb4de5edf6e7887ccbf2b75</guid>
            <pubDate>May 14, 2013, 11:59 PM</pubDate>
        </item>
        <item>
            <title>Re: [patricktarget] Sort By Functionality</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Gossamer_Links_C5/Development%2C_Plugins_and_Globals_F20/Re%3A_%5Bpatricktarget%5D_Sort_By_Functionality_P314979/?page=unread#314979</link>
            <description>Hi,

For 1), To use &amp;amp;sb=Title&amp;amp;so=desc should be working.

For 2), the Rating is used for link, at least in rate.cgi. So, can add another field for your purpose.

Hope that helps!

Cheers,

Dat

Programming and creating plugins and templates
Blog</description>
            <guid>bc1c6fe46d02e7e713fcc82d82eaa74b</guid>
            <pubDate>May 14, 2013, 6:47 PM</pubDate>
        </item>
        <item>
            <title>Re: [Andy] Sort By Functionality</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Gossamer_Links_C5/Development%2C_Plugins_and_Globals_F20/Re%3A_%5BAndy%5D_Sort_By_Functionality_P314978/?page=unread#314978</link>
            <description>Thanks for the help Andy.

I have a couple of more questions...

1. For some reason, when I add the &amp;amp;sb=Title or &amp;amp;sb=Title DESC to the url for the category pages on glinks, it doesn&#039;t sort the items as it should. Is there something that I am missing?

2. Related to my previous question, I noticed a field called Rating in the database table. Is there any functionality that uses that field for the data? I was thinking of making it so that it would update the rating number every time a new review has been approved and then just sort by that field.

Thanks!</description>
            <guid>089b29e0501f388b27dd7c705a745ddb</guid>
            <pubDate>May 14, 2013, 1:33 PM</pubDate>
        </item>
        <item>
            <title>Re: [patricktarget] Sort By Functionality</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Gossamer_Links_C5/Development%2C_Plugins_and_Globals_F20/Re%3A_%5Bpatricktarget%5D_Sort_By_Functionality_P314977/?page=unread#314977</link>
            <description>Hi,

No problem.

The simplest way to sort by an average review score, is to have a script run once a night that goes through each link, gets the average rating... and then stores it in the Links table. That way you can just sort by it.

Cheers

Andy (mod)
andy@ultranerds.co.uk
----------------------------------------------------------------------
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total &amp;quot;value&amp;quot; $3,325 &amp;amp; rising, for just $350)| GLinks ULTRA Package PRO (plugins total &amp;quot;value&amp;quot; $5,625 &amp;amp; rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates</description>
            <guid>96f88c48696b61fc416f933f0c6c5bdc</guid>
            <pubDate>May 14, 2013, 6:34 AM</pubDate>
        </item>
        <item>
            <title>Sort By Functionality</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Gossamer_Forum_C7/Discussion_F22/Sort_By_Functionality_P314976/?page=unread#314976</link>
            <description>N/A</description>
            <guid>N/A</guid>
            <pubDate>May 14, 2013, 5:20 AM</pubDate>
        </item>
        <item>
            <title>Re: [Andy] Sort By Functionality</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Gossamer_Links_C5/Development%2C_Plugins_and_Globals_F20/Re%3A_%5BAndy%5D_Sort_By_Functionality_P314975/?page=unread#314975</link>
            <description>Oops. I have posted it in the Gossamer Links forum.</description>
            <guid>81af075b0688574ef0ced0925cfa7b02</guid>
            <pubDate>May 14, 2013, 5:20 AM</pubDate>
        </item>
        <item>
            <title>Re: [patricktarget] Sort By Functionality</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Gossamer_Links_C5/Development%2C_Plugins_and_Globals_F20/Re%3A_%5Bpatricktarget%5D_Sort_By_Functionality_P314974/?page=unread#314974</link>
            <description>Hi,

Are you talking about Gossamer Links, or Gossamer Forum? (thats the forum you&#039;re in )

Cheers

Andy (mod)
andy@ultranerds.co.uk
----------------------------------------------------------------------
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total &amp;quot;value&amp;quot; $3,325 &amp;amp; rising, for just $350)| GLinks ULTRA Package PRO (plugins total &amp;quot;value&amp;quot; $5,625 &amp;amp; rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates</description>
            <guid>1cd726771da78913986844aeb583e687</guid>
            <pubDate>May 13, 2013, 10:17 PM</pubDate>
        </item>
        <item>
            <title>Sort By Functionality</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Gossamer_Links_C5/Development%2C_Plugins_and_Globals_F20/Sort_By_Functionality_P314973/?page=unread#314973</link>
            <description>I currently have the ability to use the sort by functionality using the sb tag in the url for the search results. I wanted to include the average review for the link as part of the sorting capabilities. Since the current system uses the sb function by sorting with the field name in the db, it makes it hard to sort by the average review, which is all stored in a separate table. Is there a way to get the average review sort by functionality to work?</description>
            <guid>a479777b7612253c956d84461d8fac6b</guid>
            <pubDate>May 13, 2013, 10:04 AM</pubDate>
        </item>
        <item>
            <title>Re: [Andy] [UPDATE] Ace_News v 3</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Gossamer_Links_C5/Development%2C_Plugins_and_Globals_F20/Re%3A_%5BAndy%5D_%5BUPDATE%5D_Ace_News_v_3_P314972/?page=unread#314972</link>
            <description>Yaha, OK - no, that one that I have downloaded is dated 11/5 and that one is 3.0.1 - I will change it to 3.2.0 during the next weekend

Thanks for info Andy</description>
            <guid>961627c08d1a3f760b7de2fd3a538df9</guid>
            <pubDate>May 13, 2013, 9:05 AM</pubDate>
        </item>
        <item>
            <title>Re: [katakombe] [UPDATE] Ace_News v 3</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Gossamer_Links_C5/Development%2C_Plugins_and_Globals_F20/Re%3A_%5Bkatakombe%5D_%5BUPDATE%5D_Ace_News_v_3_P314971/?page=unread#314971</link>
            <description>Mmm, not for me?



Quote:
3.2.0 - Mon May 13 01:16:23 2013

Cheers

Andy (mod)
andy@ultranerds.co.uk
----------------------------------------------------------------------
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total &amp;quot;value&amp;quot; $3,325 &amp;amp; rising, for just $350)| GLinks ULTRA Package PRO (plugins total &amp;quot;value&amp;quot; $5,625 &amp;amp; rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates</description>
            <guid>7dfe157033a0bf529e7d46274474e563</guid>
            <pubDate>May 13, 2013, 9:01 AM</pubDate>
        </item>
        <item>
            <title>Re: [Andy] [UPDATE] Ace_News v 3</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Gossamer_Links_C5/Development%2C_Plugins_and_Globals_F20/Re%3A_%5BAndy%5D_%5BUPDATE%5D_Ace_News_v_3_P314970/?page=unread#314970</link>
            <description>11 maj 2013 10:18:58</description>
            <guid>534651982e32b28f577be5b6f8dfd585</guid>
            <pubDate>May 13, 2013, 8:59 AM</pubDate>
        </item>
        <item>
            <title>Re: [katakombe] [UPDATE] Ace_News v 3</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Gossamer_Links_C5/Development%2C_Plugins_and_Globals_F20/Re%3A_%5Bkatakombe%5D_%5BUPDATE%5D_Ace_News_v_3_P314969/?page=unread#314969</link>
            <description>I only put it up this morning

Andy (mod)
andy@ultranerds.co.uk
----------------------------------------------------------------------
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total &amp;quot;value&amp;quot; $3,325 &amp;amp; rising, for just $350)| GLinks ULTRA Package PRO (plugins total &amp;quot;value&amp;quot; $5,625 &amp;amp; rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates</description>
            <guid>4c9707d6e274ffce247a011c54c7161a</guid>
            <pubDate>May 13, 2013, 8:55 AM</pubDate>
        </item>
        <item>
            <title>Re: [Andy] [UPDATE] Ace_News v 3</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Gossamer_Links_C5/Development%2C_Plugins_and_Globals_F20/Re%3A_%5BAndy%5D_%5BUPDATE%5D_Ace_News_v_3_P314968/?page=unread#314968</link>
            <description>Yea, few days ago ..</description>
            <guid>fce9f9e26e299c6d9a347187d2b3cd4f</guid>
            <pubDate>May 13, 2013, 8:54 AM</pubDate>
        </item>
        <item>
            <title>Re: [katakombe] [UPDATE] Ace_News v 3</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Gossamer_Links_C5/Development%2C_Plugins_and_Globals_F20/Re%3A_%5Bkatakombe%5D_%5BUPDATE%5D_Ace_News_v_3_P314967/?page=unread#314967</link>
            <description>From the Members Area?

Cheers

Andy (mod)
andy@ultranerds.co.uk
----------------------------------------------------------------------
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total &amp;quot;value&amp;quot; $3,325 &amp;amp; rising, for just $350)| GLinks ULTRA Package PRO (plugins total &amp;quot;value&amp;quot; $5,625 &amp;amp; rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates</description>
            <guid>977bfed207c6081db122886b6f643cf4</guid>
            <pubDate>May 13, 2013, 8:50 AM</pubDate>
        </item>
        <item>
            <title>Re: [Andy] [UPDATE] Ace_News v 3</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Gossamer_Links_C5/Development%2C_Plugins_and_Globals_F20/Re%3A_%5BAndy%5D_%5BUPDATE%5D_Ace_News_v_3_P314966/?page=unread#314966</link>
            <description>OK, this one is 3.0.1</description>
            <guid>ab55e62eff62bcb1820e443c675f32ed</guid>
            <pubDate>May 13, 2013, 8:50 AM</pubDate>
        </item>
        <item>
            <title>Re: [katakombe] [UPDATE] Ace_News v 3</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Gossamer_Links_C5/Development%2C_Plugins_and_Globals_F20/Re%3A_%5Bkatakombe%5D_%5BUPDATE%5D_Ace_News_v_3_P314965/?page=unread#314965</link>
            <description>NP

BTW - you may want to update it to 3.0.2, as there was a mess up with the WYSIWYG editor on the install as well :)

Cheers

Andy (mod)
andy@ultranerds.co.uk
----------------------------------------------------------------------
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total &amp;quot;value&amp;quot; $3,325 &amp;amp; rising, for just $350)| GLinks ULTRA Package PRO (plugins total &amp;quot;value&amp;quot; $5,625 &amp;amp; rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates</description>
            <guid>08ea97892de70e630a612afe0bf73492</guid>
            <pubDate>May 13, 2013, 8:42 AM</pubDate>
        </item>
        <item>
            <title>Re: [Andy] [UPDATE] Ace_News v 3</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/Gossamer_Links_C5/Development%2C_Plugins_and_Globals_F20/Re%3A_%5BAndy%5D_%5BUPDATE%5D_Ace_News_v_3_P314964/?page=unread#314964</link>
            <description>Perfect , thank you Andy</description>
            <guid>f4be1c61b87e47366cfd5bdda18faa9d</guid>
            <pubDate>May 13, 2013, 8:41 AM</pubDate>
        </item>
    </channel>
</rss>
