Search found 9 matches

by sprocketlogic
Fri Aug 03, 2007 3:59 am
Forum: Bugs
Topic: "Next page" link not working
Replies: 46
Views: 22488

Weird. I figured out the problem. Arrays. Not sure why it was messing things up but this now works:

<?php

$page = array();

ob_start();
require 'blog.php';
$content = ob_get_contents();

ob_end_clean();

$title = "ACLU Blog";

require_once("./interior_template.php");

?>
by sprocketlogic
Thu Jul 26, 2007 6:47 pm
Forum: Bugs
Topic: "Next page" link not working
Replies: 46
Views: 22488

Garvin,

I tried the chdir() command and nothing worked. :(

Is there some modification I can make to the htaccess file where we can put the archives in another URL? I have found this problem occurs only on the latest version. The archives work fine on 0.85 (I know, old, old, old!)

Much thanks ...
by sprocketlogic
Thu Jul 19, 2007 2:49 pm
Forum: Bugs
Topic: "Next page" link not working
Replies: 46
Views: 22488

Garvin,

So, I did the following:

I renamed the blog.php file back to index.php. I then created a new blog.php file that was the original index.php file.

I went to the admin and changed the Indexfile filename to "blog.php". I get the same result.

When I change the Indexfile name to index.php, the ...
by sprocketlogic
Tue Jul 17, 2007 4:59 pm
Forum: Bugs
Topic: "Next page" link not working
Replies: 46
Views: 22488

Garvin,

Because of the site template we are using a custom include. Here is the index.php file:

<?php

ob_start();
require 'blog.php';
$page['content'] = ob_get_contents();

ob_end_clean();

$page['title'] = "Client Name Blog";

require_once("./interior_template.php");

?>

The interior ...
by sprocketlogic
Thu Jul 12, 2007 4:28 pm
Forum: Bugs
Topic: "Next page" link not working
Replies: 46
Views: 22488

Garvin,

I have the following plugins installed:

Sidebar:

HTML Nugget
Categories
Archives
Syndicate This Blog
Quicksearch
Recent Entries

Event:

Markup: Serendipity
Markup: Emoticate
Markup: NL2BR
Browser Compatability
Spam Protector
Spartacus
Category Assignment
Spam Protector (SURBL)
Trackback ...
by sprocketlogic
Wed Jul 11, 2007 11:02 pm
Forum: Bugs
Topic: "Next page" link not working
Replies: 46
Views: 22488

Having next page problems, too

I am having the same problem with one of my blogs (s9y v1.12). When a user goes to the "next page" link (/index.php?/archives/P2.html) the template is displayed and only the letter "A" shows up.

This is the same case for any P[number] you put in there.

However, when you enter any other archive ...
by sprocketlogic
Thu May 03, 2007 3:42 pm
Forum: Plugins
Topic: Feature/Unfeature Comments
Replies: 4
Views: 42557

Re: Modified comment.tpl code

Garvin,

I as well have been short on time, which is why I am so late responding to your reply.

I would be happy to start on your suggestions. I am taking the current hacked version of s9y live on the client's site today. When we move to their next blog, I will use your suggestions.

What should I ...
by sprocketlogic
Fri Apr 13, 2007 11:36 pm
Forum: Plugins
Topic: Feature/Unfeature Comments
Replies: 4
Views: 42557

Modified comment.tpl code

While working with the program I noticed the comment.tpl was not working. This version does:


{counter start=0 skip=1 print=0 assign="count"}
{assign var="commentCount" value=$comments|@count}
{foreach from=$comments item=comment name="comments"}
{counter print=0}
<a id="c{$comment.id}"></a ...
by sprocketlogic
Fri Apr 13, 2007 9:52 pm
Forum: Plugins
Topic: Feature/Unfeature Comments
Replies: 4
Views: 42557

Feature/Unfeature Comments

I was hoping I could work with someone on this project to create a modular plugin for these modifications I made to s9y. I made these modifications several years ago on 0.89 and just updated them for 1.12.

Here's a little background:

One of my clients wants to allow comments on their web site ...