No, because the PUN_ROOT will be defined wrong for all the files, which means the requires will fail.
Editing main.tpl is by far the easiest way to integrate it.

The second is certainly not going to work wink
Try

<?php
require 'http://www.kursprawojazdy.pl/forum/extern.php?action=active&show=7';
?>

If that doesn't work, I can't think of a way for you to use extern.php in its current form. You would need to find a modification/write one to allow syndication from within your own site.

I would need to see the page to diagnose any issue.

2,329

(10 replies, posted in PunBB 1.2 troubleshooting)

Except a right click hint would be useless to anyone who used an application which didn't support right click actions (or chmodding with right clicking). wink
Calling it what it is (chmodding) allows you to search and find out how to do it.

2,330

(10 replies, posted in PunBB 1.2 troubleshooting)

chmodding can be done on folders as well as files.

2,331

(4 replies, posted in PunBB 1.2 troubleshooting)

Moved to Troubleshooting
It's a known problem caused by an old, outdated, incorrect mod_security ruleset. Not a bug.

2,332

(11 replies, posted in PunBB 1.2 troubleshooting)

That's the punwrap.png image

2,333

(11 replies, posted in PunBB 1.2 troubleshooting)

I'd have to see your actual site to tell you any more. But deleting the extra folder/the files in it won't help that.

2,334

(11 replies, posted in PunBB 1.2 troubleshooting)

There should be no folder called BlueLife

Moved to Modifications
I don't know that there is a mod to do that.

reviewum.com wrote:

A quick follow up on the item above.   I'd like to change the "Visit timeout" from an hour up to possibly 24 hours but am concerned of the impact this will have on the forum.

Thanks in advance for any thoughts on this matter.

You'll should be fine.

wobo wrote:

Ah, no. This does not solve the 2 major issues: different computers / access points, broken connections. In my country (Germany) most private broadband connections are terminated once in 24 hours, so you will have to read all posts before that break. Then there are other reasons for a connection break also.

The cookie set isn't a session cookie. So, a broken connection would have no impact. However, the different computer argument does have merit.

wobo wrote:

With all due respect I have as a non-coder for all developers: you always talk about issues with the database growing too large or time or performance issues - there are none of those!
I am running a site with nore than 1200 registered users with a total of 140K posts, an average of 20 to 100 posts per day. I used a MOD with exactly the wanted feature for a long time in PHPBB and I used SMF for 2 years which has this feature built in. We never found any issue with this feature. There must be a way to limit the number of unread flags per user - because If a user stays away too long or if he never hits the "Mark all forums read" button  he will get an error message from the database (which could be displayed as a friendly "You have been away too long"). All he has to do then is hit the "Mark all forums read" button. Done.

Except you want to avoid having to do that. And the number of topics stored as read can be huge.
And the way SMF marks post as read in the database versus this mod is very different. I will look into having the mark as read system allow a database component in 1.3.

I have no idea, I've never used Dotclear. You would do a str_replace (http://us.php.net/str_replace) and replace the <br /> with "\n"

Just do a str_replace in your code for outputting the PunBB content in Dotclear

Except that breaks the output for regular PunBB usage.

str_replace?

2,341

(4 replies, posted in PunBB 1.2 troubleshooting)

Moved to Troubleshooting

2,342

(4 replies, posted in PunBB 1.2 troubleshooting)

Having their own tables does not make them immune.

Right

2,344

(6 replies, posted in PunBB 1.2 troubleshooting)

Yup, that probably is the problem. It's fixed in 1.3 at least

2,345

(4 replies, posted in PunBB 1.2 troubleshooting)

What modifications do you have installed?

2,346

(6 replies, posted in PunBB 1.2 troubleshooting)

No.
So, to verify:
- There is a user with the username Admin
- Guests can posts using the name Admin
?

A link to the forum would also be nice.

Yes, you set the default theme in Admin Options.

And I need to know more than the fact that some things don't work.

2,348

(38 replies, posted in PunBB 1.2 bug reports)

OK, ignore me, it appears that the stuff I'm talking about is for stored procedures, not regular usage. wink

Once you create and upload the files, you need to change to the new style in your profile.

I'll give you an example

$old_get = $_GET;
$_GET = array();
$_GET['action'] = 'active';

include PUN_ROOT.'extern.php';

$_GET = $old_get;