Due to enormous amounts of spam, the forum has been set to read-only mode.



Reply to topic  [ 33 posts ]  Go to page Previous  1, 2, 3, 4  Next
Forum Software Updated 
Author Message

Joined: Thu Jul 15, 2004 2:37 pm
Posts: 92
Location: Belgium
Post Re: Forum Software Updated

Seems i lose the search box as soon as i log in to the system. Could this be the same problem?[/quote]

And i don't seem to have the permission to use a signature?


Fri Jan 30, 2009 3:42 pm
Profile WWW

Joined: Mon Aug 04, 2003 3:39 pm
Posts: 75
Location: A little place on the outskirts of town
Post Re: Forum Software Updated

Hi Fredrik,
When I logged in just now I found that the link to "view new posts" or "posts since your last visit" or whatever, is missing. I hope that''s just a temporary condition. :?

Steve


Fri Jan 30, 2009 5:11 pm
Profile

Joined: Thu Aug 03, 2006 8:35 pm
Posts: 34
Location: Canada
Post Re: Forum Software Updated

What about PM? Can't send PM anymore and when I try to access the PM part of the user control panel, it says that I'm not allowed to send PM.

Thanks!

Nelson


Fri Jan 30, 2009 5:37 pm
Profile WWW
User avatar

Joined: Sun Dec 08, 2002 9:36 pm
Posts: 2573
Location: Wisconsin, USA
Post Re: Forum Software Updated

snidely wrote:
When I logged in just now I found that the link to "view new posts" or "posts since your last visit" or whatever, is missing. I hope that''s just a temporary condition. :?
I hope so too!


Fri Jan 30, 2009 7:09 pm
Profile WWW
Site Admin
User avatar

Joined: Fri Nov 22, 2002 3:52 pm
Posts: 13748
Post Re: Forum Software Updated

The.Bartman wrote:
ustoexx wrote:
Another strange thing:
If I click on "View your posts" from "User control panel" I get:
Sorry but you are not permitted to use the search system.


Seems i lose the search box as soon as i log in to the system. Could this be the same problem?

Yes, there is a serious problem with the user group permissions screen in the admin control panel. Trying to figure out what is wrong :?


Fri Jan 30, 2009 7:15 pm
Profile WWW
Site Admin
User avatar

Joined: Fri Nov 22, 2002 3:52 pm
Posts: 13748
Post Re: Forum Software Updated

OK, looks like we are back in business now. Let me know if there are any problems.

_________________
Fredrik Nordbakke
www.fnprg.com


Fri Jan 30, 2009 9:41 pm
Profile WWW

Joined: Thu Aug 03, 2006 8:35 pm
Posts: 34
Location: Canada
Post Re: Forum Software Updated

PM is working fine now.

Thanks!


N

_________________
My Music Database


Sat Jan 31, 2009 4:11 am
Profile WWW
User avatar

Joined: Wed Apr 04, 2007 9:19 am
Posts: 273
Location: NH USA
Post Oddities with date format

Hi Fredrik,
This is a very minor issue, some problems I'm having getting the time zone part of the date-time display to work. I'm setting the preferences here:

User Control Panel | Board Preferences | Edit Global Settings

Note that I have previously selected my time zone as "[UTC-5:00] Eastern Standard Time"

To generate the correct input string for the PHP Date() function, I referenced the table of input parameters defined here:

http://us3.php.net/date

Currently my date-time format is defined as

"m/d/Y h:i:s a" which generates "01/30/2009 01:15:48 pm"

That works fine, but if I try to add some of the timezone identifiers, I get screwy results. Now, the following examples get pretty nit-picky, so if the timezone identifiers for the date() function just plain don't work correctly for this version of the phpBB software, what I'm trying to do is not possible anyway; so there's no need to read further.

********************************************************************************************

OK, here goes the nit-picking. If I add the "T" timezone identifier, I get this:

"m/d/Y h:i:s a T" generates "01/30/2009 03:15:16 am GMT"

According to the character table, "T" should generate the local time zone abbreviation, as in "EST". Because it generates "GMT" instead, I added "O" to display the offset from GMT:

"m/d/Y h:i:s a TO" which generates "01/30/2009 03:15:16 am GMT+0000"

Here the offset should be "-0500". "P" is supposed to generate the same offset with a ":" delimiter for hours:minutes, so I tried that. I got the delimiter OK, but the value of the offset is still spooged:

"m/d/Y h:i:s a TP" generates "01/30/2009 03:15:16 am GMT+00:00"

Next I tried the other time zone parameter, "e". It wasn't clear to me from the description what sort of abbreviation this would generate. It turns out to be:

"m/d/Y h:i:s a e" generates "01/30/2009 03:15:16 am UTC"

This put me back in the same place as "GMT", and I got the expected results by trying to add my local time zone offset:

"m/d/Y h:i:s a eO" generates "01/30/2009 03:15:16 am UTC+0000"

"m/d/Y h:i:s a eP" generates "01/30/2009 03:15:16 am UTC+00:00"

*******************************************************************************

As a workaround for now, I've used the literal "-05:00 hours" for my local time zone offset from GMT. e.g.,

"m/d/Y h:i:s a T-05:00" generates "01/30/2009 03:15:16 am GMT-05:00"

That's OK; the only drawback is that when Daylight Savings Time takes effect, and vice versa, I'll have to remember to change that offset to the corresponding value.

Have I messed something up here (most likely), or used parameters not currently handled by the board software? At the reference website I noticed that those time zone identifiers have annotations such as "added in PHP 5.1.0" and "added in PHP 5.1.3". Could this version of the phpBB software be the culprit?

In that context I searched the phpBB forum and found this thread that addresses the issues using the "T" timezone identifier:

http://www.phpbb.com/bugs/ascraeus/19645

The workaround described is specific to "PHP 5.1 and above", but it's not clear if it was ever implemented in phpBB.

I hope I didn't generate a lot of ado over nothing here. As always, thanks for taking the time to read this,

_________________
Alan Mintaka

"Old men ought to be explorers
Here and there does not matter
We must be still and still moving
Into another intensity"
--T. S. Eliot, Four Quartets, "East Coker"


Sat Jan 31, 2009 4:58 am
Profile WWW
Site Admin
User avatar

Joined: Fri Nov 22, 2002 3:52 pm
Posts: 13748
Post Re: Oddities with date format

AlanMintaka wrote:

The workaround described is specific to "PHP 5.1 and above", but it's not clear if it was ever implemented in phpBB.

As far as I understand, this is not supported by this version of phpBB (v3.0.4). (The fnprg.com server is running PHP v5.2.8 by the way). So when the help text in the control panel says "The syntax used is identical to the PHP date() function." this is not correct.

Although, you might want to ask over in the phpBB support forum: http://www.phpbb.com/community/viewforum.php?f=46

_________________
Fredrik Nordbakke
www.fnprg.com


Sat Jan 31, 2009 9:54 pm
Profile WWW
User avatar

Joined: Fri Nov 14, 2003 6:15 pm
Posts: 1425
Post Re: Forum Software Updated

Hi Fredrik,

Highlighting code with color no longer works. I think this was done with ColoursInCode.mod but that seems to be gone now from the phpbb site.

Code:
      [color=blue]Highlighting with color[/color]
     

Cheers,
Dave


Sat Jan 31, 2009 11:29 pm
Profile WWW
Display posts from previous:  Sort by  
Reply to topic   [ 33 posts ]  Go to page Previous  1, 2, 3, 4  Next

You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group.
Designed by STSoftware for PTF.