Search found 57 matches

by mdnava
Wed Feb 18, 2009 6:42 am
Forum: General discussions
Topic: Comments and sidebar not showing on one entry
Replies: 23
Views: 10227

Re: Comments and sidebar not showing on one entry

The sidebar issue was fixed when I replaced: {serendipity_printComments entry=$entry.id mode=$CONST.VIEWMODE_LINEAR} With: {serendipity_printComments entry=$entry.id mode=$CONST.COMMENTS_VIEWMODE_LINEAR} Which I found comparing my template with bulletproof, I guess hat was older code or something bu...
by mdnava
Wed Feb 18, 2009 6:18 am
Forum: General discussions
Topic: Comments and sidebar not showing on one entry
Replies: 23
Views: 10227

Re: Comments and sidebar not showing on one entry

Those numbers are correct, besides that nothing out of the ordinary. Yes the comments are disabled (there are too many already and I decided to limit them to 500) but even when enabled they won't show. I can give you an example of other posts with a high number of comments but none other is failing:...
by mdnava
Wed Feb 18, 2009 2:50 am
Forum: General discussions
Topic: Comments and sidebar not showing on one entry
Replies: 23
Views: 10227

Comments and sidebar not showing on one entry

I've found one entry on my Blog that doesn't show any related comments and neither it shows the sidebar plugins. Every other entry I've checked seems to be working fine.

This is the entry: http://www.venelogia.com/archivos/695/

I did a check on the database and the content is there... Any ideas?
by mdnava
Thu Feb 12, 2009 7:56 am
Forum: General discussions
Topic: Redirecting S9Y to a new domain
Replies: 4
Views: 2379

Re: 301 redirects

Careful with redirects, too many 302 redirects can get you penalized on search engines, especially Google.

If the move is permanent then you should use permanent 301 redirects:

Code: Select all

RewriteRule ^(.*)$ http://www.b.com/$1 [R=301,L,QSA]
by mdnava
Wed Aug 27, 2008 2:43 pm
Forum: General discussions
Topic: Posts have passwords by default with Mozilla
Replies: 8
Views: 4976

Posts have passwords by default with Mozilla

Hello,

When I go to new entry with Mozilla, the posts always have a password by default (extended properties) even if I've already cleared it and the page was reloaded.

I have never set a password on any of our posts and this does not happen on Internet Explorer.
by mdnava
Mon Jul 14, 2008 4:53 pm
Forum: Bugs
Topic: Cannot create references to/from string offsets nor overload
Replies: 4
Views: 3522

Re: Cannot create references to/from string offsets nor over

garvinhicking wrote:Hi!
Hm, where exactly do you get the error?
I did it originally on this post but I just did the same with Firefox 3, the comment was successful; perhaps it was a rare behavior which got cached by simple_cache plugin.

Thanks!
by mdnava
Mon Jul 14, 2008 10:31 am
Forum: Bugs
Topic: Cannot create references to/from string offsets nor overload
Replies: 4
Views: 3522

Re: Cannot create references to/from string offsets nor over

Hi! ./serendipity_event_karma/serendipity_event_karma.php ./serendipity_event_entrysplit/serendipity_event_entrysplit.php ./serendipity_event_freetag/serendipity_event_freetag.php ./serendipity_event_entrylastmodified/serendipity_event_entrylastmodified.php ./serendipity_event_wikilinks/serendipity...
by mdnava
Mon Jul 14, 2008 10:13 am
Forum: Bugs
Topic: Cannot create references to/from string offsets nor overload
Replies: 4
Views: 3522

Cannot create references to/from string offsets nor overload

I got this error several times trying to comment thru Firefox 3:

Fatal error: Cannot create references to/from string offsets nor overloaded objects in /home/venelog/public_html/include/plugin_api.inc.php on line 1572

On IE the comment was succesful with no erros, I'm using latest s9y.
by mdnava
Tue Jul 01, 2008 10:59 pm
Forum: General discussions
Topic: When posting, server load goes thru the clouds
Replies: 6
Views: 3484

Cache on the Core

Garvin, Wouldn't it be more efficient to include caching on the core of s9y than loading a plugin first, doesn't it have some overhead? Also, I've been reading about "memcache" and looks promising (http://www.danga.com/memcached/) but it depends on having a third party app installed on the...
by mdnava
Tue May 27, 2008 10:26 am
Forum: General discussions
Topic: Sitemap plugin wrong URL when permalink is not default
Replies: 1
Views: 1699

Anyone interested just edit serendipity_event_google_sitemap.php and replace the one ocurrence of "plugin/tag/" for the implemented url.
by mdnava
Mon May 26, 2008 10:59 am
Forum: General discussions
Topic: Sitemap plugin wrong URL when permalink is not default
Replies: 1
Views: 1699

Sitemap plugin wrong URL when permalink is not default

Hello, I just wanted to report on Sitemap plugin... When the tag URLs are included in the sitemap they are not valid if the plugin path has been changed on s9y's permalinks in the configuration. i.e. /plugin/tag/Tagname is used on Sitemaps plugin even if the URL for plugins is changed to /plug/ or i...
by mdnava
Thu May 22, 2008 7:58 am
Forum: General discussions
Topic: When posting, server load goes thru the clouds
Replies: 6
Views: 3484

Re: When posting, server load goes thru the clouds

Hello Garvin, The cache simple plugin could be responsible, because it erases the cache of all files when you post a new article. Woah!!... I have over 2200 articles, cache is set to expire after 6 hours, but if that's true it could explain it... I'm now worried about what will happen once we reach ...
by mdnava
Tue May 20, 2008 10:42 pm
Forum: General discussions
Topic: When posting, server load goes thru the clouds
Replies: 6
Views: 3484

When posting, server load goes thru the clouds

Everytime I post in Serendipity the server load goes to the clouds, from an average of 1.5 and 4 in peak hours it goes to over 15 and as far as 50 on which the server stops responding. I own a dedicated FreeBSD server with dual Opterons, 4Gb of ram and IDE hard drives... I'm running the latest softw...
by mdnava
Mon May 19, 2008 7:52 pm
Forum: General discussions
Topic: Any freetag variable I can use in smarty?
Replies: 4
Views: 2485

Great!!

Thanks Garvin, works like a charm...
by mdnava
Mon May 19, 2008 7:04 am
Forum: General discussions
Topic: Any freetag variable I can use in smarty?
Replies: 4
Views: 2485

Re: Any freetag variable I can use in smarty?

Yes, there is...I couldn't look up which one. Inside serendipity_event_freetag.php, if you search for "assign" you should see all variables. I believe one constant is set for the current tag, that you can access through $CONST.xxxx (like CONST.PLUGIN_FREETAG} Hello Garvin, "assign&qu...