Search found 22 matches

by ReLight
Sat Jan 19, 2008 7:53 pm
Forum: Plugins
Topic: serendipity_event_forum<>PHPbb3
Replies: 31
Views: 21008

Last bug left

Ok, The last 'bug' is : comments added in phpbb - show in s9y as 'anonymous' posts.

Use case:

1. Enable phpbb mirror
2 Create new s9y article, this is now mirrored to phpbb
3 Goto phpbb
4 Add phpbb comment to article created in #2
5 Goto s9y site, view article
6> ' bug ': In stead of the forum ...
by ReLight
Thu Jan 17, 2008 11:34 pm
Forum: Plugins
Topic: serendipity_event_forum<>PHPbb3
Replies: 31
Views: 21008

\yes yhats the problem, Your fix will do it nice

But i thought of another way to fix it, within the forum_event_plugin (although it is an hack).

The result is the same i posted above: Insert a single fake comment containing the phpbb reference into the comment table.

If you setup the fake ...
by ReLight
Wed Jan 16, 2008 11:11 pm
Forum: Plugins
Topic: serendipity_event_forum<>PHPbb3
Replies: 31
Views: 21008

1 install the plugin with phpbb mirror
2 create an article in s9y
3 goto the forum to the mirrored article
4 post an reply in phpbb on the article
5 goto s9y to the article created in #2
6 -> bug : the comment-reply made in phpbb is not visible in s9y website

7 Now in the s9y site in the article ...
by ReLight
Wed Jan 16, 2008 12:33 am
Forum: Plugins
Topic: serendipity_event_forum<>PHPbb3
Replies: 31
Views: 21008

Up2:
Well I know a workarround now, basically in the event when phpbb mirror is on and an article is created or saved just add the referal comment table entries so it always looks at phpbb for its comments.
Just need you Gavin to put it in as I can't get the if statement to work with serendipity_db ...
by ReLight
Mon Jan 14, 2008 12:21 am
Forum: Plugins
Topic: serendipity_event_forum<>PHPbb3
Replies: 31
Views: 21008

OK.

Can't make head or tails yet of bug#3:
phpBB3 entered comments only show in s9y-site if minimal 1 s9y comment was made. (critical bug).

Without an original s9y comment it does not seem to trigger the case 'fetchcomments' of the event_form plugin.



>update: seems that without an entry in ...
by ReLight
Wed Jan 09, 2008 10:42 pm
Forum: Plugins
Topic: serendipity_event_forum<>PHPbb3
Replies: 31
Views: 21008

issue (2): Initial article from s9y to phpBB3 has lastposter-id = guest-id when no comments have been given.


replace in line 2561
, 0 , 0
with
,$topic_poster,$topic_poster
by ReLight
Wed Jan 09, 2008 5:16 pm
Forum: General discussions
Topic: Hiding old entries
Replies: 5
Views: 3341

I'll check later, but what I see now thats not the case.

They are not showing and in the calender view and archive neither.
by ReLight
Wed Jan 09, 2008 1:11 pm
Forum: General discussions
Topic: Hiding old entries
Replies: 5
Views: 3341

I'm looking for the mid-way of both of these.

The hide function of the extended plugin makes the article also hidden in category views etc.

I want the article to be placed as normal, but excluded in the frontpage view.
by ReLight
Tue Jan 08, 2008 9:03 pm
Forum: Plugins
Topic: serendipity_event_forum<>PHPbb3
Replies: 31
Views: 21008

0.29 tested and works fine with phpbb3.

issues remaining:
1- comments added in phpbb - show in s9y as 'anonymous' posts.
2- Initial article from s9y to phpBB3 has lastposter-id = guest-id when no comments have been given. (cosmetic issues more or less), this should be the same as the poster-id ...
by ReLight
Mon Jan 07, 2008 11:29 pm
Forum: Plugins
Topic: serendipity_event_forum<>PHPbb3
Replies: 31
Views: 21008

Great !

Its not online I see (site or spartacus) but i'll snatch it asap.
by ReLight
Sat Jan 05, 2008 10:48 pm
Forum: Plugins
Topic: Suppressing IP adress in Statistics
Replies: 1
Views: 1912

a bit offtopic, but wouldn't google analytics plugin suite your needs better then off the shelf ? That has the option to exclude user groups makeing it even more flexible.
by ReLight
Sat Jan 05, 2008 12:20 am
Forum: Plugins
Topic: Can't post comments through Firefox
Replies: 18
Views: 10349

:)
That fixed it allright. I also had no www in the path. Don't know why because i have set it all up using www in the path.

Thanks Margaret for the quick reply.
Now we have the solution here as well.
by ReLight
Fri Jan 04, 2008 11:47 pm
Forum: Plugins
Topic: Can't post comments through Firefox
Replies: 18
Views: 10349

I'm having the same trouble with FF (2.0.0.11). In IE 7 no issues, in FF I can't get through the captchas.

FF is accepting cookies fine. After clearing them, a straight visit to the article provides 6 cookies. After using the form with capcha I still have 6.

(only FF extentions I have are firebug ...
by ReLight
Fri Jan 04, 2008 5:12 pm
Forum: Plugins
Topic: serendipity_event_forum<>PHPbb3
Replies: 31
Views: 21008

Hi!

> Tried, no good.

Hm, can you modify it to:


if ((int)$phpbb_mirror === 3) {
$phpbb_mirror = 3;
die('3!');
} elseif ((int)$phpbb_mirror === 2) {
$phpbb_mirror = 2;
die('2a!');
} elseif (serendipity_db_bool($phpbb_mirror)) {
$phpbb_mirror = 2;
die('2b!');
} else {
$phpbb_mirror ...
by ReLight
Fri Jan 04, 2008 10:39 am
Forum: Plugins
Topic: serendipity_event_forum<>PHPbb3
Replies: 31
Views: 21008

Hi!

1) The phpbb2 or 3 detection does not work properly. Workarround hack by hard coding $phpbb_mirror = 3; in the plugin on line 2326.

Hm, I wonder why?


if ((int)$phpbb_mirror === 3) {
$phpbb_mirror = 3;
} elseif ((int)$phpbb_mirror === 2) {
$phpbb_mirror = 2;
} elseif (serendipity_db ...