Thread Rating:
  • 3 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
GetSimple Blog
#89
Update RSS generation function.

If you create a post with a future date of publish, this appears in RSS.

This modification of Blog.php file solves the problem, but there are some things to improve:

  1. The RSS only updates when create, modify and save any post.
  2. So, when deleting a post, it remains on RSS feed
  3. So, you can publish any post with future date and it will neve be included on RSS feed until you create or save any time
  4. It will be a better solution to allow rss feed to be a dinamic PHP instead a single generated file... this will solve all the bugs

Here the Blog.php code for RSS feed generation:

PHP Code:
    /** 
    * Generates RSS Feed of posts
    * 
    * @return bool
    */  
public function generateRSSFeed($save=true$filtered=false)
    {
        global 
$SITEURL;

        
$post_array glob(BLOGPOSTSFOLDER "/*.xml");
        if(
$save == true)
        {
            
$locationOfFeed $SITEURL."rss.rss";
            
$posts $this->listPosts(truetrue);
        }
        else
        {
            
$locationOfFeed $SITEURL."plugins/blog/rss.php";
            if(
$filtered != false)
            {
                
$posts $this->filterPosts($filtered['filter'], $filtered['value']);
            }
            else
            {
                
$posts $this->listPosts(truetrue);
            }
        }

        
$RSSString      "";
        
$RSSString     .= "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n";
        
$RSSString     .= "<rss version=\"2.0\"  xmlns:atom=\"http://www.w3.org/2005/Atom\">\n";
        
$RSSString     .= "<channel>\n";
        
$RSSString     .= "<title>".$this->getSettingsData("rsstitle")."</title>\n";
        
$RSSString     .= "<link>".$locationOfFeed."</link>\n";
        
$RSSString     .= "<description>".$this->getSettingsData("rssdescription")."</description>\n";
        
$RSSString     .= "<lastBuildDate>".date("D, j M Y H:i:s T")."</lastBuildDate>\n";
        
$RSSString     .= "<language>".str_replace("_""-",$this->getSettingsData("lang"))."</language>\n";
        
$RSSString     .= '<atom:link href="'.$locationOfFeed."\" rel=\"self\" type=\"application/rss+xml\" />\n";

        
$limit $this->getSettingsData("rssfeedposts");
        
array_multisort(array_map('filemtime'$post_array), SORT_DESC$post_array); 
        
$post_array array_slice($post_array0$limit);

        foreach (
$posts as $post
        {
            
            
$blog_post simplexml_load_file($post['filename']);
            
$RSSDate    $blog_post->date;
            
            
// This solves the problem to publish post with 
            // a date higer than now.
            
            // get the actual time.
            
$date_now strtotime(date("d-m-Y H:i:00",time()));
            
// get the post time.
            
$date strtotime($RSSDate);

            
// if post time is lower than actual time, then save data in feed.
            
if ($date <= $date_now)
            {
                                
                
$RSSTitle   $blog_post->title;
                
$RSSBody     html_entity_decode(str_replace("&nbsp;"" "substr(htmlspecialchars(strip_tags($blog_post->content)),0,200)));
                
$ID         $blog_post->slug;
                
$RSSString .= "<item>\n";
                
$RSSString .= "\t  <title>".$RSSTitle."</title>\n";
                
$RSSString .= "\t  <pubDate>".$RSSDate."</pubDate>\n";                
                
$RSSString .= "\t  <link>".$this->get_blog_url('post').$ID."</link>\n";
                
$RSSString .= "\t  <guid>".$this->get_blog_url('post').$ID."</guid>\n";
                
$RSSString .= "\t  <description>".htmlspecialchars($RSSBody)."</description>\n";
                if(isset(
$blog_post->category) and !empty($blog_post->category) and $blog_post->category!=''
                {
                    
$RSSString .= "\t  <category>".$blog_post->category."</category>\n";
                }
                
$RSSString .= "</item>\n";
                
            }
// end if $date <= $date_now
        
}

        
$RSSString .= "</channel>\n";
        
$RSSString .= "</rss>\n";
        
        if(
$save==true)
        {
            if(!
$fp fopen(GSROOTPATH."rss.rss",'w'))
            {
                echo 
"Could not open the rss.rss file";
                exit();
            }
            if(!
fwrite($fp,$RSSString))
            {
                echo 
"Could not write to rss.rss file";
                exit();
            }
            
fclose($fp);
        }
        else
        {
            return 
$RSSString;
        }
    } 


Attached Files
.php   Blog.php (Size: 22.12 KB / Downloads: 4)
Reply


Messages In This Thread
GetSimple Blog - by johnstray2001 - 2014-05-12, 08:31:02
Translators Wanted! - by johnstray2001 - 2014-05-13, 23:30:36
RE: GS Blog v3.0 - by timenerd17 - 2014-05-14, 06:55:31
RE: GS Blog v3.0 - by xxdex - 2014-05-14, 07:22:28
RE: GS Blog v3.0 - by datiswous - 2014-05-14, 08:02:48
RE: GS Blog v3.0 - by datiswous - 2014-05-14, 08:52:39
File renaming problem - by johnstray2001 - 2014-05-14, 15:24:09
GS Blog v3.1.0 released - by johnstray2001 - 2014-05-14, 16:19:06
RE: GS Blog v3.0 - by xxdex - 2014-05-14, 19:33:48
Disappearing blog problem - by johnstray2001 - 2014-05-14, 23:44:01
RE: GS Blog v3.0 - by snooze - 2014-05-15, 02:01:28
RE: GS Blog v3.0 - by snooze - 2014-05-14, 23:43:12
RE: GS Blog v3.0 - by datiswous - 2014-05-15, 00:01:13
RE: GS Blog v3.0 - by xxdex - 2014-05-15, 01:21:30
RE: GS Blog v3.0 - by datiswous - 2014-05-15, 01:43:27
RE: GS Blog v3.0 - by datiswous - 2014-05-15, 04:08:46
GS Blog v3.1.1 released - by johnstray2001 - 2014-05-15, 06:24:27
RE: GS Blog v3.1.1 - by datiswous - 2014-05-15, 07:16:50
GS Blog v3.1.2 released - by johnstray2001 - 2014-05-15, 23:01:10
RE: GS Blog v3.1.2 - by xxdex - 2014-05-16, 06:08:21
RE: GS Blog v3.1.2 - by datiswous - 2014-05-16, 06:56:16
RE: GS Blog v3.1.2 - by datiswous - 2014-05-16, 06:12:23
RSS System Bugs - by johnstray2001 - 2014-05-16, 08:18:05
RE: GS Blog v3.1.2 - by datiswous - 2014-05-16, 08:43:54
RE: GS Blog v3.1.2 - by johnstray2001 - 2014-05-16, 09:11:02
RE: GS Blog v3.1.2 - by snooze - 2014-05-17, 03:45:36
listPosts() function bug - by johnstray2001 - 2014-05-17, 05:20:45
RE: GS Blog v3.1.2 - by snooze - 2014-05-17, 08:57:21
RE: GS Blog v3.1.2 - by snooze - 2014-05-19, 08:45:21
RE: GS Blog v3.1.2 - by Jano - 2014-05-19, 09:38:56
RE: GS Blog v3.1.2 - by calonddraig - 2014-05-17, 09:45:54
RE: GS Blog v3.1.2 - by johnstray2001 - 2014-05-17, 10:03:15
RE: GS Blog v3.1.2 - by calonddraig - 2014-05-17, 10:05:28
Using GS Blog w/Markdown pulugin - by snooze - 2014-05-18, 08:24:19
RE: GS Blog v3.1.2 - by xxdex - 2014-05-18, 09:22:40
RE: GS Blog v3.1.2 - by johnstray2001 - 2014-05-18, 17:58:15
RE: GS Blog v3.1.2 - by snooze - 2014-05-19, 04:26:27
Version 3.1.3 Released! - by johnstray2001 - 2014-05-19, 03:11:20
RE: GetSimple Blog - by datiswous - 2014-05-19, 07:25:25
RE: Markdown - by Carlos - 2014-05-19, 07:48:44
RE: Markdown - by datiswous - 2014-05-19, 07:57:45
RE: GetSimple Blog - by snooze - 2014-05-19, 08:31:28
Next/Previous - by snooze - 2014-05-20, 09:48:49
RE: GetSimple Blog - by johnstray2001 - 2014-05-20, 17:15:05
Version 3.2.0 Released! - by johnstray2001 - 2014-05-21, 19:00:20
RE: GetSimple Blog - by Oleg06 - 2014-05-22, 01:00:28
RE: GetSimple Blog - by johnstray2001 - 2014-05-22, 02:04:06
RE: GetSimple Blog - by Oleg06 - 2014-05-22, 04:48:01
RE: GetSimple Blog - by shawn_a - 2014-05-22, 23:51:40
RE: GetSimple Blog - by Tzvook - 2014-05-23, 01:01:54
Version 3.2.1 Released! - by johnstray2001 - 2014-05-23, 05:14:15
RE: GetSimple Blog - by addison - 2014-05-25, 01:11:45
RE: GetSimple Blog - by addison - 2014-05-25, 23:24:21
RE: GetSimple Blog - by johnstray2001 - 2014-05-26, 00:28:27
RE: GetSimple Blog - by addison - 2014-05-26, 04:14:36
RE: GetSimple Blog - by jesusda - 2014-05-26, 05:14:33
RE: GetSimple Blog - by johnstray2001 - 2014-06-01, 14:07:20
RE: GetSimple Blog - by jesusda - 2014-06-01, 20:06:06
RE: GetSimple Blog - by apt - 2014-06-06, 21:52:09
RE: GetSimple Blog - by snooze - 2014-06-07, 15:32:14
RE: GetSimple Blog - by xxdex - 2014-06-11, 03:09:32
RE: GetSimple Blog - by apt - 2014-06-11, 08:04:59
RE: GetSimple Blog - by johnstray2001 - 2014-06-12, 22:49:27
RE: GetSimple Blog - by apt - 2014-06-12, 22:54:24
GS Blog .htaccess - by snooze - 2014-06-13, 00:18:09
RE: GS Blog .htaccess - by snooze - 2014-06-13, 10:35:51
RE: GetSimple Blog - by t3vall - 2014-06-13, 00:44:34
RE: GetSimple Blog - by johnstray2001 - 2014-06-13, 12:15:20
RE: GetSimple Blog - by Sharmila - 2014-06-14, 01:23:17
RE: GetSimple Blog - by johnstray2001 - 2014-06-15, 00:18:30
RE: GetSimple Blog - by Sharmila - 2014-06-15, 01:56:34
RE: GetSimple Blog - by johnstray2001 - 2014-06-15, 04:11:27
Bugfixes & Feature Requests - by johnstray2001 - 2014-06-15, 01:07:30
Version 3.2.2 Released! - by johnstray2001 - 2014-06-15, 14:32:01
RE: Version 3.2.2 Released! - by apt - 2014-06-16, 21:23:14
RE: GetSimple Blog - by Oleg06 - 2014-06-15, 19:58:41
RE: GetSimple Blog - by t3vall - 2014-06-16, 17:18:22
RE: GetSimple Blog - by webmonkeyukcom - 2014-06-18, 20:42:55
RE: GetSimple Blog - by jesusda - 2014-06-18, 22:30:09
GS-Blog - RSS Feed - by timenerd17 - 2014-06-20, 06:56:45
RE: GS-Blog - RSS Feed - by johnstray2001 - 2014-06-23, 07:16:05
RE: GetSimple Blog - by gok - 2014-06-23, 18:21:20
RE: GetSimple Blog - by jesusda - 2014-06-27, 07:13:47
RE: GetSimple Blog - by jesusda - 2014-06-27, 07:18:19
RE: GetSimple Blog - by jesusda - 2014-06-27, 16:07:32
RE: GetSimple Blog - by jesusda - 2014-06-27, 17:06:04
RE: GetSimple Blog - by johnstray2001 - 2014-06-27, 19:12:21
RE: GetSimple Blog - by jesusda - 2014-06-27, 20:02:02
Version 3.2.3 Released! - by johnstray2001 - 2014-06-30, 19:32:26
RE: GetSimple Blog - by jesusda - 2014-07-06, 05:46:14
RE: GetSimple Blog - by akd - 2014-07-27, 20:32:06
RE: GetSimple Blog - by johnstray2001 - 2014-07-28, 08:30:08
RE: GetSimple Blog - by akd - 2014-07-28, 15:42:00
RE: GetSimple Blog - by akd - 2014-07-28, 19:08:18
RE: GetSimple Blog - by shawn_a - 2014-07-28, 23:04:59
RE: GetSimple Blog - by johnstray2001 - 2014-08-04, 22:59:03
RE: GetSimple Blog - by akd - 2014-08-06, 23:44:10
RE: GetSimple Blog - by Carlos - 2014-08-06, 23:54:13
RE: GetSimple Blog - by akd - 2014-08-07, 01:42:28
RE: GetSimple Blog - by akd - 2014-08-07, 01:45:36
RE: GetSimple Blog - by akd - 2014-08-07, 03:16:27
RE: GetSimple Blog - by johnstray2001 - 2014-08-07, 11:53:19
Version 3.2.4 Released! - by johnstray2001 - 2014-08-07, 13:47:25
RE: Version 3.2.4 Released! - by n3uronick - 2014-08-12, 22:52:04
RE: GetSimple Blog - by akd - 2014-08-07, 14:09:11
RE: GetSimple Blog - by Antariksh - 2014-08-07, 17:27:21
RE: GetSimple Blog - by BigChris - 2014-08-14, 15:50:54
RE: GetSimple Blog - by Kida - 2014-08-19, 05:09:15
RE: GetSimple Blog - by johnstray2001 - 2014-08-19, 09:09:07
RE: GetSimple Blog - by Scribbit - 2014-08-20, 01:06:17
RE: GetSimple Blog - by Scribbit - 2014-08-22, 23:36:30
RE: GetSimple Blog - by Scribbit - 2014-08-23, 01:11:53
RE: GetSimple Blog - by nickgd - 2014-09-03, 00:51:14
RE: GetSimple Blog - by johnstray2001 - 2014-09-03, 08:11:04
RE: GetSimple Blog - by nickgd - 2014-09-03, 18:18:21
RE: GetSimple Blog - by nickgd - 2014-09-05, 01:09:49
RE: GetSimple Blog - by shawn_a - 2014-09-07, 00:02:42
RE: GetSimple Blog - by shawn_a - 2014-09-07, 00:03:57
RE: GetSimple Blog - by johnstray2001 - 2014-09-07, 02:33:28
Version 3.3.0 Released! - by johnstray2001 - 2014-09-12, 18:15:04
RE: GetSimple Blog - by petersondsz - 2014-09-12, 22:43:04
RE: GetSimple Blog - by johnstray2001 - 2014-09-16, 11:31:42
RE: GetSimple Blog - by Manubcode - 2014-09-16, 08:02:59
RE: GetSimple Blog - by johnstray2001 - 2014-09-16, 11:18:23
RE: GetSimple Blog - by Manubcode - 2014-09-16, 20:48:10
RE: GetSimple Blog - by johnstray2001 - 2014-09-16, 22:59:25
RE: GetSimple Blog - by nikrodk - 2014-09-17, 22:13:16
RE: GetSimple Blog - by johnstray2001 - 2014-09-17, 22:57:07
RE: GetSimple Blog - by Manubcode - 2014-09-18, 02:33:22
RE: GetSimple Blog - by nikrodk - 2014-09-17, 23:00:39
Version 3.3.1 Released! - by johnstray2001 - 2014-09-22, 14:52:29
RE: Version 3.3.1 Released! - by Manubcode - 2014-09-27, 18:12:53
RE: GetSimple Blog - by Hypertexter - 2014-09-27, 03:47:40
RE: GetSimple Blog - by vixrealitum - 2014-09-27, 20:22:33
RE: GetSimple Blog - by bensayers - 2014-10-27, 04:08:23
RE: GetSimple Blog - by johnstray2001 - 2014-09-29, 14:45:00
RE: GetSimple Blog - by vixrealitum - 2014-09-29, 22:08:38
RE: GetSimple Blog - by Hypertexter - 2014-09-30, 00:20:33
RE: GetSimple Blog - by Manubcode - 2014-10-01, 02:09:39
RE: GetSimple Blog - by johnstray2001 - 2014-09-30, 12:38:55
RE: GetSimple Blog - by johnstray2001 - 2014-09-30, 12:54:04
RE: GetSimple Blog - by nice10150 - 2014-10-10, 22:02:06
RE: GetSimple Blog - by johnstray2001 - 2014-10-19, 21:54:27
Post length less than excerpt - by Luigi - 2014-10-21, 10:28:51
RE: GetSimple Blog - by shawn_a - 2014-10-21, 10:37:26
RE: GetSimple Blog - by Luigi - 2014-10-21, 10:56:34
RE: GetSimple Blog - by shawn_a - 2014-10-21, 12:35:09
RE: GetSimple Blog - by richardp - 2014-10-24, 21:44:48
RE: GetSimple Blog - by anteroom - 2015-07-05, 17:17:49
RE: GetSimple Blog - by inteq - 2014-12-22, 22:32:37
RE: GetSimple Blog - by johnstray2001 - 2014-12-22, 22:34:55
RE: GetSimple Blog - by inteq - 2014-12-23, 05:52:34
Disable thumbnail in post page - by salvamaine - 2015-01-24, 06:19:40
RE: GetSimple Blog - by WarOfDevil - 2015-01-29, 03:57:13
RE: GetSimple Blog - by datiswous - 2015-01-29, 04:46:04
RE: GetSimple Blog - by WarOfDevil - 2015-01-29, 05:02:55
RE: GetSimple Blog - by Roamer - 2015-02-08, 07:54:06
RE: GetSimple Blog - by johnstray2001 - 2015-02-08, 22:17:51
RE: GetSimple Blog - by salvamaine - 2015-02-09, 05:38:37
RE: GetSimple Blog - by johnstray2001 - 2015-02-10, 12:11:36
RE: GetSimple Blog - by johnstray2001 - 2015-02-10, 12:25:20
RE: GetSimple Blog - by krzysiuus - 2015-02-10, 23:33:48
RE: GetSimple Blog - by johnstray2001 - 2015-02-17, 16:51:12
RE: GetSimple Blog - by salvamaine - 2015-02-18, 04:03:28
RE: GetSimple Blog - by johnstray2001 - 2015-02-18, 04:08:30
RE: GetSimple Blog - by tuxophil - 2015-03-02, 02:38:29
RE: GetSimple Blog - by johnstray2001 - 2015-03-02, 03:39:40
RE: GetSimple Blog - by tuxophil - 2015-03-02, 04:00:18
RE: GetSimple Blog - by johnstray2001 - 2015-03-02, 03:51:55
RE: GetSimple Blog - by Oleg06 - 2015-03-04, 08:14:57
RE: GetSimple Blog - by johnstray2001 - 2015-03-04, 19:03:11
RE: GetSimple Blog - by Oleg06 - 2015-03-04, 21:37:04
RE: GetSimple Blog - by salvamaine - 2015-03-13, 21:28:27
[SOLVED] - by salvamaine - 2015-03-13, 22:14:39
RE: GetSimple Blog - by uhebeisen - 2015-03-20, 04:09:36
RE: GetSimple Blog - by uhebeisen - 2015-04-06, 19:26:36
RE: GetSimple Blog - by johnstray2001 - 2015-04-06, 20:38:22
RE: GetSimple Blog - by johnstray2001 - 2015-04-06, 20:50:25
RE: GetSimple Blog - by pigsound - 2016-03-21, 03:09:46
RE: GetSimple Blog - by dryland404 - 2015-04-19, 22:12:20
RE: GetSimple Blog - by stwneu - 2015-04-28, 17:46:37
RE: GetSimple Blog - by dryland404 - 2015-04-28, 23:41:50
RE: GetSimple Blog - by jakef - 2015-06-25, 05:54:58
RE: GetSimple Blog - by johnstray2001 - 2015-06-25, 11:11:16
RE: GetSimple Blog - by jakef - 2015-06-26, 04:25:25
RE: GetSimple Blog - by lnickel - 2015-09-29, 01:20:24
RE: GetSimple Blog - by xxdex - 2015-10-13, 10:35:44
RE: GetSimple Blog - by johnstray2001 - 2015-10-21, 13:05:25
RE: GetSimple Blog - by tuxophil - 2016-01-28, 03:07:51
RE: GetSimple Blog - by tibbz - 2016-02-28, 14:02:44
RE: GetSimple Blog - by dryland404 - 2016-02-28, 23:04:01
RE: GetSimple Blog - by abuhayyan - 2016-03-03, 19:06:13
RE: GetSimple Blog - by johnstray2001 - 2016-03-21, 15:06:40
RE: GetSimple Blog - by pigsound - 2016-03-21, 17:11:00
RE: GetSimple Blog - by johnstray2001 - 2016-03-21, 17:20:35
RE: GetSimple Blog - by pigsound - 2016-03-21, 19:39:44
RE: GetSimple Blog - by johnstray2001 - 2016-03-22, 08:17:23
RE: GetSimple Blog - by pigsound - 2016-03-22, 18:47:19
RE: GetSimple Blog - by johnstray2001 - 2016-03-22, 19:09:05
RE: GetSimple Blog - by jwzumwalt - 2016-03-23, 23:23:12
RE: GetSimple Blog - by johnstray2001 - 2016-03-26, 16:32:46
RE: GetSimple Blog - by jwzumwalt - 2016-03-26, 17:29:20
RE: GetSimple Blog - by tuxophil - 2016-03-26, 21:46:42
RE: GetSimple Blog - by tuxophil - 2016-03-28, 02:14:40
RE: GetSimple Blog - by jwzumwalt - 2016-03-28, 07:14:29
RE: GetSimple Blog - by Sisyphos - 2016-03-28, 09:53:50
RE: GetSimple Blog - by jwzumwalt - 2016-03-28, 12:09:17
RE: GetSimple Blog - by tuxophil - 2016-03-28, 18:07:53
RE: GetSimple Blog - by jwzumwalt - 2016-03-28, 22:33:10
RE: GetSimple Blog - by johnstray2001 - 2016-03-26, 22:29:21
RE: GetSimple Blog - by tuxophil - 2016-03-27, 00:50:22
RE: GetSimple Blog - by Sisyphos - 2016-03-28, 12:20:28
RE: GetSimple Blog - by Sisyphos - 2016-03-29, 03:24:30
RE: GetSimple Blog - by jwzumwalt - 2016-03-29, 04:03:05
RE: GetSimple Blog - by Sisyphos - 2016-03-30, 06:35:01
RE: GetSimple Blog - by jwzumwalt - 2016-03-30, 16:02:30
RE: GetSimple Blog - by pigsound - 2016-03-30, 16:44:58
RE: GetSimple Blog - by jwzumwalt - 2016-03-30, 16:49:28
RE: GetSimple Blog - by pigsound - 2016-03-30, 16:58:59
RE: GetSimple Blog - by pigsound - 2016-03-29, 20:29:04
RE: GetSimple Blog - by johnstray2001 - 2016-03-30, 19:09:22
RE: GetSimple Blog - by datiswous - 2016-03-30, 19:51:58
RE: GetSimple Blog - by pigsound - 2016-04-01, 02:20:26
RE: GetSimple Blog - by johnstray2001 - 2016-03-30, 20:03:22
RE: GetSimple Blog - by pigsound - 2016-03-31, 18:59:24
RE: GetSimple Blog - by Lucianp - 2016-04-07, 04:34:52
RE: GetSimple Blog - by johnstray2001 - 2016-04-07, 07:32:56
RE: GetSimple Blog - by Lucianp - 2016-04-10, 23:37:53
RE: GetSimple Blog - by sremick - 2016-05-11, 03:12:34
RE: GetSimple Blog - by pigsound - 2016-05-17, 20:01:34
RE: GetSimple Blog - by webservsol - 2016-05-20, 12:19:41
RE: GetSimple Blog - by homershines - 2016-06-17, 22:24:37
RE: GetSimple Blog - by datiswous - 2016-06-17, 23:37:27
RE: GetSimple Blog - by Carlos - 2016-06-18, 00:01:01
RE: GetSimple Blog - by homershines - 2016-06-18, 09:57:51
RE: GetSimple Blog - by Sean - 2016-06-26, 17:48:37
RE: GetSimple Blog - by johnstray2001 - 2016-08-07, 22:05:10
RE: GetSimple Blog - by johnstray2001 - 2016-08-07, 22:10:53
RE: GetSimple Blog - by johnstray2001 - 2016-08-07, 22:15:45
RE: GetSimple Blog - by johnstray2001 - 2016-08-08, 13:37:02
RE: GetSimple Blog - by xxdex - 2016-08-15, 09:19:37
RE: GetSimple Blog - by johnstray2001 - 2016-08-16, 11:49:40
RE: GetSimple Blog - by xxdex - 2016-08-18, 10:12:32
RE: GetSimple Blog - by Riianna - 2016-08-17, 16:11:51
RE: GetSimple Blog - by johnstray2001 - 2016-08-17, 20:07:02
RE: GetSimple Blog - by Riianna - 2016-08-18, 20:19:08
RE: GetSimple Blog - by xxdex - 2016-08-18, 20:23:23
RE: GetSimple Blog - by johnstray2001 - 2016-08-18, 21:24:51
RE: GetSimple Blog - by xxdex - 2016-08-19, 06:35:34
RE: GetSimple Blog - by Riianna - 2016-08-19, 00:13:54
RE: GetSimple Blog - by johnstray2001 - 2016-08-19, 14:50:40
RE: GetSimple Blog - by calonddraig - 2016-10-11, 10:33:50
RE: GetSimple Blog - by johnstray2001 - 2016-10-12, 08:18:51
Uploading Thumbnail - by JaapV - 2016-11-15, 01:30:25
RE: GetSimple Blog - by johnstray2001 - 2016-11-15, 14:24:24
RE: GetSimple Blog - by salvamaine - 2016-12-15, 20:23:50
RE: GetSimple Blog - by johnstray2001 - 2016-12-16, 01:24:33
RE: GetSimple Blog - by Inugami - 2016-12-16, 23:40:40
RE: GetSimple Blog - by johnstray2001 - 2016-12-16, 23:48:59
RE: GetSimple Blog - by JaapV - 2016-12-20, 19:08:14
RE: GetSimple Blog - by johnstray2001 - 2016-12-20, 20:58:55
RE: GetSimple Blog - by pinguin - 2016-12-21, 23:32:03
RE: GetSimple Blog - by johnstray2001 - 2016-12-21, 23:47:48
RE: GetSimple Blog - by pinguin - 2016-12-22, 03:34:50
RE: GetSimple Blog - by petrijah - 2017-01-11, 01:05:16
RE: GetSimple Blog - by bensayers - 2017-03-17, 04:04:44
charcodes and date format - by pigsound - 2017-03-20, 20:05:50
RE: GetSimple Blog - by mr_clark - 2016-12-31, 10:26:48
RE: GetSimple Blog - by rogi - 2017-03-30, 00:13:11
RE: GetSimple Blog - by FairlyIncognito - 2017-04-07, 00:12:20
RE: GetSimple Blog - by Riianna - 2017-05-10, 21:05:17
RE: GetSimple Blog - by QBFreak - 2017-06-20, 10:53:52
RE: GetSimple Blog - by Riianna - 2017-06-20, 17:58:32
Some format questions - by lotova - 2017-06-27, 20:41:01
RE: Some format questions - by lotova - 2017-07-05, 19:53:44
RE: Some format questions - by QBFreak - 2017-08-11, 02:50:00
RE: GetSimple Blog - by QBFreak - 2017-07-10, 02:54:20
RE: GetSimple Blog - by johnstray2001 - 2017-09-15, 00:23:50
RE: GetSimple Blog - by pigsound - 2017-09-15, 04:32:07
RE: GetSimple Blog - by pigsound - 2017-11-30, 00:50:56
RE: GetSimple Blog - by bensayers - 2017-11-22, 01:48:18
RE: GetSimple Blog - by johnstray2001 - 2017-11-24, 01:25:50
RE: GetSimple Blog - by bensayers - 2017-11-25, 01:34:11
RE: GetSimple Blog - by johnstray2001 - 2017-11-24, 01:31:14
RE: GetSimple Blog - by bensayers - 2017-12-09, 01:45:25
RE: GetSimple Blog - by johnstray2001 - 2017-11-30, 01:45:56
RE: GetSimple Blog - by pigsound - 2017-11-30, 02:02:36
RE: GetSimple Blog - by pigsound - 2017-12-01, 02:22:42
RE: GetSimple Blog - by johnstray2001 - 2017-12-01, 08:39:20
RE: GetSimple Blog - by pigsound - 2017-12-02, 17:43:32
RE: GetSimple Blog - by datiswous - 2017-12-06, 20:48:45
RE: GetSimple Blog - by pigsound - 2017-12-07, 02:10:35
RE: GetSimple Blog - by Carlos - 2017-12-07, 02:22:03
RE: GetSimple Blog - by pigsound - 2017-12-07, 02:31:13
RE: GetSimple Blog - by snoozeburg - 2018-04-20, 07:27:56
RE: GetSimple Blog - by snoozeburg - 2018-07-24, 00:55:55
RE: GetSimple Blog - by Carlos - 2018-04-28, 02:26:06
RE: GetSimple Blog - by ragou - 2018-08-14, 08:21:10
RE: GetSimple Blog - by lotova - 2018-08-19, 00:39:03
RE: GetSimple Blog - by johnstray2001 - 2018-08-19, 01:45:00
RE: GetSimple Blog - by ragou - 2018-11-09, 04:56:52
RE: GetSimple Blog - by Lazy-Crocodile - 2019-03-04, 21:07:10
RE: GetSimple Blog - by johnstray2001 - 2019-03-05, 16:40:13
RE: GetSimple Blog - by bhatraj03 - 2021-12-19, 00:01:14
RE: GetSimple Blog - by johnstray2001 - 2019-03-05, 16:42:34
RE: GetSimple Blog - by chainsaw81 - 2019-03-07, 09:48:22
RE: GetSimple Blog - by Riianna - 2019-03-18, 20:28:25
RE: GetSimple Blog - by Lazy-Crocodile - 2019-03-18, 21:07:25
RE: GetSimple Blog - by elubben - 2019-03-29, 13:03:19
RE: GetSimple Blog - by datiswous - 2019-03-29, 21:56:36
RE: GetSimple Blog - by noobxj9 - 2019-04-05, 07:28:33
RE: GetSimple Blog - by chainsaw81 - 2019-04-06, 23:57:42
RE: GetSimple Blog - by chainsaw81 - 2019-07-19, 23:32:29
RE: GetSimple Blog - by krlllo - 2019-11-14, 16:57:05
Upgrading from GS Blog 1.5 - by salvamaine - 2019-06-06, 16:53:43
RE: Upgrading from GS Blog 1.5 - by datiswous - 2019-06-07, 21:12:32
RE: Upgrading from GS Blog 1.5 - by Carlos - 2019-06-08, 19:04:33
RE: Upgrading from GS Blog 1.5 - by salvamaine - 2019-06-13, 16:00:36
RE: GetSimple Blog - by ecotypes - 2019-06-13, 11:56:19
RE: GetSimple Blog - by digitalGasim - 2019-12-10, 15:25:44
RE: GetSimple Blog - by datiswous - 2019-12-17, 05:15:34
RE: GetSimple Blog - by vixrealitum - 2020-01-07, 08:31:35
RE: GetSimple Blog - by Vatan - 2020-01-10, 10:05:47
RE: GetSimple Blog - by dryland404 - 2020-01-10, 13:44:56
RE: GetSimple Blog - by platinum - 2020-01-11, 21:06:41
RE: GetSimple Blog - by Oleg06 - 2020-01-11, 21:35:57
RE: GetSimple Blog - by platinum - 2020-01-11, 22:47:16
RE: GetSimple Blog - by Oleg06 - 2020-01-12, 01:26:25
RE: GetSimple Blog - by platinum - 2020-01-12, 02:14:24
RE: GetSimple Blog - by platinum - 2020-01-14, 06:14:18
RE: GetSimple Blog - by Brex - 2020-03-05, 01:53:48
RE: GetSimple Blog - by chainsaw81 - 2022-06-03, 06:38:41
RE: GetSimple Blog - by Riianna - 2020-03-13, 23:43:52
RE: GetSimple Blog - by ragou - 2020-05-09, 09:58:46
RE: GetSimple Blog - by pacchiee - 2020-09-16, 04:44:19
RE: GetSimple Blog - by homershines - 2021-10-26, 05:42:00
RE: GetSimple Blog - by Oleg06 - 2021-10-26, 06:08:46
RE: GetSimple Blog - by homershines - 2021-10-26, 14:30:26
RE: GetSimple Blog - by jjancel - 2021-11-17, 23:28:17
RE: GetSimple Blog - by bhatraj03 - 2021-12-19, 03:25:05
RE: GetSimple Blog - by homershines - 2022-03-22, 04:53:34
RE: GetSimple Blog - by df8oe - 2023-08-14, 03:16:37
RSS-Feed as opml - by df8oe - 2023-09-01, 20:37:02



Users browsing this thread: 6 Guest(s)