View Single Post
Old 02-10-2013, 12:43 AM  
JamesM
Confirmed User
 
Industry Role:
Join Date: Nov 2012
Posts: 732
Quote:
Originally Posted by CyberSEO View Post
WP (freeware) + CyberSEO ($29.95 per license) + the following small script to convert your text dump into the preoperly-formatted RSS feed:

Code:
<?php
if (isset ( $_GET ["dump"] )) {
    $dump = file ( $_GET ["dump"] );
    $time = time ();
    echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
    echo "<rss version=\"2.0\">\n";
    echo "<channel>\n";
    echo "<title>My Feed</title>\n";
    foreach ( $dump as $item ) {
        list ( $url, $title ) = explode ( "|", trim ( $item ) );
        echo "       <item>\n";
        echo "               <title><![CDATA[" . $title . "]]></title>\n";
        echo "               <link><![CDATA[" . $url . "]]></link>\n";
        echo "               <guid><![CDATA[" . $url . "]]></guid>\n";
        echo "               <pubDate>" . date ( "D, d M  Y H:i:s O", $time ) . "</pubDate>\n";
        echo "               <description></description>\n";
        echo "       </item>\n";
        $time -= 86400;
    }
    echo "</channel>\n";
    echo "</rss>\n";
}
?>
The result site may look like this or like that depends on which exactly WP theme you are going to use.
looks good, but the images arent opeing in new pages as html page , both sites are using something like lightbox or thickbox.

arylia can do what i want but its just gallery creator and not tgp script, so i have to handle 2 separate installations., one for just creating gallery and another one is tgp script.

thanks
__________________


Ex GF Films | Grab Dollars
Up To 80% Rev-Share | 255 Day Cookie | Legal Content | Variety of Promo Tools | CCBill Program | GF Niche
james[at]grabdollars[dot]com | ICQ::611-99-zero-zero-20
JamesM is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote