At the moment I cannot reproduce the bug but I'll keep your words in mind.

Regards
Wolfgang
Yes, I am a very special Bonobo.MarkDHamill wrote:Wolfgang, yes seeing %20 characters in URLs is a bit ugly, but I did the same thing in my phpBB 2 version and you are the first to complain.
Good idea. But the best solution would be when people didn't get logged out unintentionally. Unfortunately I don't have an idea how to realize that at the moment.MarkDHamill wrote:I don't think there is anything necessarily dangerous about showing bogus sessions, it just gives an artificial impression of who is accessing the board and suggests people are logged in who are not actually logged in. Perhaps it would be better to have an ACP switch where administrator can choose whether or not to kill Smartfeed sessions automatically.
Thanks for the suggestion, you're right: I've had made an kind of mega-stupid mistake.MarkDHamill wrote:The syntax error is there somewhere, just hiding.
I suggest commenting out blocks of inserted code and rerunning and see if that helps isolate where the error is occurring. It sounds like the problem is in the ACP, so I would start first with changes to the language files and see if that makes any difference. Pages may come up with blank text, but it will at least isolate the problem. Then narrow the range of comments until you get a blank screen. This will eventually point to the line with the syntax error.
In my experience, it is always something stupid that is staring you in the face causing these problems.
That's strange. I have automatically login enabled and I use cookies, but nonetheless I had been logged out...MarkDHamill wrote:Well, I suppose I could add it as an option. But it removes the session only. If you are logged in to the board and walk away for an hour, you would be logged out too unless you had your settings set to log you in automatically.
Yes, pleeease!MarkDHamill wrote:I could replace spaces with underscores easily enough, but in general I strive for backwards compatibility.
Code: Select all
// Begin Smartfeed Mod
,
array(
0 => '--',
1 => 'Newsfeeds'
),
array(
0 => 'Are your forums accessible as a newsfeed using RSS and Atom protocols?',
1 => 'Yes. This site has installed the Smartfeed phpBB modification for phpBB 3, which allows access to both our public and private forums. Accessing private forums requires appropriate authorizations. <a href="' . append_sid("{$phpbb_root_path}smartfeed_url.$phpEx") . '">Learn more</a>.'
),
// End Smartfeed Mod
Code: Select all
// Begin Smartfeed Mod
array(
0 => '--',
1 => 'Newsfeeds'
),
array(
0 => 'Are your forums accessible as a newsfeed using RSS and Atom protocols?',
1 => 'Yes. This site has installed the Smartfeed phpBB modification for phpBB 3, which allows access to both our public and private forums. Accessing private forums requires appropriate authorizations. <a href="' . append_sid("{$phpbb_root_path}smartfeed_url.$phpEx") . '">Learn more</a>.'
),
// End Smartfeed Mod
Code: Select all
array(
0 => 'Why isn’t X feature available?',
1 => 'This software was written by and licensed through phpBB Group. If you believe a feature needs to be added, please visit the phpbb.com website and see what phpBB Group have to say. Please do not post feature requests to the board at phpbb.com, the group uses SourceForge to handle tasking of new features. Please read through the forums and see what, if any, our position may already be for a feature and then follow the procedure given there.'
),
array(
0 => 'Who do I contact about abusive and/or legal matters related to this board?',
1 => 'Any of the administrators listed on the “The team” page should be an appropriate point of contact for your complaints. If this still gets no response then you should contact the owner of the domain (do a <a href="http://www.google.com/search?q=whois">whois lookup</a>) or, if this is running on a free service (e.g. Yahoo!, free.fr, f2s.com, etc.), the management or abuse department of that service. Please note that the phpBB Group has <strong>absolutely no jurisdiction</strong> and cannot in any way be held liable over how, where or by whom this board is used. Do not contact the phpBB Group in relation to any legal (cease and desist, liable, defamatory comment, etc.) matter <strong>not directly related</strong> to the phpBB.com website or the discrete software of phpBB itself. If you do e-mail phpBB Group <strong>about any third party</strong> use of this software then you should expect a terse response or no response at all.'
)
// Begin Smartfeed Mod
,
array(
0 => '--',
1 => 'Newsfeeds'
),
array(
0 => 'Are your forums accessible as a newsfeed using RSS and Atom protocols?',
1 => 'Yes. This site has installed the Smartfeed phpBB modification for phpBB 3, which allows access to both our public and private forums. Accessing private forums requires appropriate authorizations. <a href="' . append_sid("{$phpbb_root_path}smartfeed_url.$phpEx") . '">Learn more</a>.'
),
// End Smartfeed Mod
Code: Select all
(...)
/language/en/acp/acp_board.php
(...)
Code: Select all
/includes/acp/acp_board.php