Search found 77 matches

by tpost
Fri Aug 01, 2008 9:58 pm
Forum: General discussions
Topic: No Bullshit! - Millionaire Maker Dan Kennedy uses S9Y
Replies: 6
Views: 4003

Cosign what Don said. I also dabble with some open-source products, but by far, the best support comes from S9Y. I always get a prompt response from Garvin et al. and no question is left unanswered! PS. Don, RayGunRobot.com recently switched from S9Y to Drupal. Here's the old post in question: http:...
by tpost
Thu Jul 31, 2008 10:17 pm
Forum: General discussions
Topic: RSS2 feed: Possible improvements
Replies: 4
Views: 4690

Hi guys, I'm just looking at the RSS 2.0 specs as well and was wondering what variable one would need to use if we wanted the <lastBuildDate> attribute displayed? Would this need to be added in S9Y root "rss.php"? or the feed template? I think that by default, the <content:encoded> tag sho...
by tpost
Wed Jul 16, 2008 8:16 pm
Forum: Showcase (old)
Topic: Multi-category / authored blog
Replies: 5
Views: 6703

Hey judebert, I'm not doing anything special with the podcast. If I had a plugin, I would definitely release it to the S9Y community! --- It's pretty much a manual process right now. I make a post on S9Y, take the link of that post and add it to an XML that I manually update, which would be the podc...
by tpost
Wed Jul 16, 2008 12:10 am
Forum: Showcase (old)
Topic: Multi-category / authored blog
Replies: 5
Views: 6703

It's a services page where they can access items that they have subscribed to.

As you've probably guessed, that page isn't S9Y-powered! :wink:
by tpost
Tue Jul 15, 2008 10:12 pm
Forum: Showcase (old)
Topic: Multi-category / authored blog
Replies: 5
Views: 6703

Multi-category / authored blog

Hi everyone! We've been running our blog on Serendipity for the past couple of months and we're quite pleased at how customizable it is! We wanted something that would be able to handle multiple blogs that looked different. Here are a couple of our blogs as an example: PipStop - our main, trading bl...
by tpost
Tue Jul 08, 2008 4:17 am
Forum: General discussions
Topic: Easy way to know category index page?
Replies: 1
Views: 1312

Easy way to know category index page?

Is there a Smarty variable for S9Y that will detect if a page is the category index page?

I would use this variable in the template index.tpl.

Thanks for reading!
by tpost
Sat May 24, 2008 12:32 am
Forum: General discussions
Topic: Smarty - elapsed time since posted for an entry?
Replies: 4
Views: 2893

We use the second Smarty modifier that judebert linked to in his post on our homepage.

Although we did make one customization to allow for weeks to be shown as well!
by tpost
Tue May 20, 2008 11:43 pm
Forum: General discussions
Topic: .htaccess help - adding "www"
Replies: 15
Views: 7698

Hi judebert, Using the second RewriteRule you listed: RewriteCond %{HTTP_HOST} !^www [NC] RewriteRule ^/(.*)$ http://www.domain.com/blog/$1 Outputs these results: Typed in address -> Output address www.domain.com/blog -> domain.com/blog/ (bad) www.domain.com/blog/ -> www.domain.com/blog/ (good) dom...
by tpost
Mon May 19, 2008 1:18 am
Forum: General discussions
Topic: serendipity_spamblocklog
Replies: 6
Views: 3614

Hi David, We used to keep our spamblock log as well. Ours hit more than 200 MB! We use the Akismet API in Spamblock combined with the ReCaptcha plugin as a one-two punch against blog spam. We disabled the log over here because Akismet is pretty decent at catching 99% of the spam... sometimes though ...
by tpost
Fri May 16, 2008 2:48 am
Forum: General discussions
Topic: .htaccess help - adding "www"
Replies: 15
Views: 7698

Hi judebert, Using the second RewriteRule you listed: RewriteCond %{HTTP_HOST} !^www [NC] RewriteRule ^/(.*)$ http://www.domain.com/blog/$1 Outputs these results: Typed in address -> Output address www.domain.com/blog -> domain.com/blog/ (bad) www.domain.com/blog/ -> www.domain.com/blog/ (good) doma...
by tpost
Fri May 16, 2008 2:39 am
Forum: Development
Topic: CategoryTemplate modifications
Replies: 29
Views: 26409

Hi judebert,

v0.27 works the same as v0.24 did!

Thanks for your work in fixing the error.
by tpost
Thu May 15, 2008 2:47 am
Forum: General discussions
Topic: .htaccess help - adding "www"
Replies: 15
Views: 7698

Hi judebert, A little bit of headway! Using your first suggestion, if one typed " domain.com/blog/ " with the trailing slash, it would redirect to " www.domain.com/blog/ " However, if you typed " domain.com/blog " without the trailing slash , you would get the weird suf...
by tpost
Wed May 14, 2008 5:46 am
Forum: General discussions
Topic: .htaccess help - adding "www"
Replies: 15
Views: 7698

judebert wrote:Try constraining the RewriteRule match to the beginning and end of the URL with ^ and $:

Code: Select all

RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/blog/$1 [R=301,L]
Hi judebert,

I tried your constraining fix on the RewriteRule, but I still get the same result...

Any other ideas?
by tpost
Tue May 13, 2008 9:04 pm
Forum: General discussions
Topic: .htaccess help - adding "www"
Replies: 15
Views: 7698

I wasn't paying attention.... if your serendipity install is domain.com/blog, use this in the serendipity root (ie /blog) htaccess file: RewriteEngine On RewriteBase /blog/ RewriteCond %{HTTP_HOST} !^www [NC] RewriteRule (.*) http://www.%{HTTP_HOST}/blog/$1 [R=301,L] Hi Don, Putting in those lines ...
by tpost
Tue May 13, 2008 4:20 am
Forum: General discussions
Topic: .htaccess help - adding "www"
Replies: 15
Views: 7698

Hi Don, Right now all traffic from our domain already appends the "www". Only for the s9y blog, does it not reflect this... We're using this on the root .htaccess RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC] RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R...