[SOLVED] Archives Page - For Small Forums
identicon
df0b2
DISCUSSION OF ORIGIN

df0b2 Friday 12th February 2016, 23:23:51

solved Archives Page - For Small Forums

Hi Fred,
Can you help me to get a code to work?
I want to have an archive page that is like so.
# 2016
**Dec**
* 30 - title
* 01 - title

**Jan**
* 20 - title

# 2015
**Nov**
* 30 - title
* 01 - title
*
This code from goolog is here, but does not show all years... only shows one year each page:
https://github.com/ciptard/goolog/blob/master/view.php#L67

 else if(isGET('archive') && strlen($_GET['archive']) === 4)
{
$archivedPosts = array();
$posts = listEntry('post');
sort($posts);
foreach($posts as $post)
{
if($_GET['archive'] === substr($post, 0, 4))
{
$month = substr($post, 5, 2);
$archivedPosts[$month][] = $post;
}
}
if(!$archivedPosts)
{
exit;
}
$out['subtitle'] = $_GET['archive'];
foreach($archivedPosts as $monthPosts)
{
$out['content'] .= '<b>' .toDate($monthPosts[0], 'M'). '</b>
<ul>';
foreach($monthPosts as $post)
{
$postEntry = readEntry('post', $post);
$out['content'] .= '<li>' .toDate($post, 'jS'). ' - ' .managePost($post). '<a href="view.php/post/' .$post. '">' .$postEntry['title']. '</a></li>';
}
$out['content'] .= '</ul>';
}
}


How can I make this work with FB?
DISCUSSION OF ORIGIN
Fred_f8768
Fred#f8768

Administrator

Fred_f8768

See their activity.

Fred#f8768 Sunday 14th February 2016, 10:40:18

A plugin will arrive very soon to meet your needs, you can [try it here](view.php/plugin/archives) and tell me if it suits you.
identicon
89a5a

89a5a Sunday 14th February 2016, 21:53:21

  looks good, can you make all years on the same page?
Fred_f8768
Fred#f8768

Administrator

Fred_f8768

See their activity.

Fred#f8768 Sunday 14th February 2016, 22:14:15

  Just display a full year it takes a lot of server resources, then with all the years ...
No it is inconceivable in flat-files, also it would be unreadable.
identicon
1a9a7

1a9a7 Sunday 14th February 2016, 23:26:51

  well it looks good, great job. smile

Any idea on how to make it show on www.domain.com/archive/ and not /plugins/plugin/archives?
Fred_f8768
Fred#f8768

Administrator

Fred_f8768

See their activity.

Fred#f8768 Sunday 14th February 2016, 23:39:46

  Try with a [.htaccess and rewrite rules](https://httpd.apache.org/docs/trunk/en/rewrite/intro.html).
I do not want to change the url rewriting of flatboard because flatboard just has the big advantage to turn without .htaccess file, therefore compatible in many servers.
Suggested Topics View / Reply Forum
444f31e1 started REQUIRED IMAGE UPLOAD - FIRST POST 1.3K / 1 Feature Requests
ea05f started Emoji's (better/ more modern) 1.2K / 3 Feature Requests
AlexanderLiebrecht started solved Something went wrong when updating 1.4K / 4 General Questions
Alexander Liebrecht started solved Quote in Topics not worked 924 / 2 Bug reports
Top