76

Re: PunBB 1.2 development source

Rickard wrote:

I believe the number of forums that will be using both LTR and RTL language packs at the same time are quite few

I fact "None" smile

If your people come crazy, you will not need to your mind any more.

77

Re: PunBB 1.2 development source

In that case there will be no problem.

zaher: why don't you have a look at the development release of PunBB 1.2 if you have time. I would certainly be interested in your observations particularly regarding languages and RTL implementation.

78

Re: PunBB 1.2 development source

Paul, i have no time to sleep sad  (in this few days, i will make it)
thanks

If your people come crazy, you will not need to your mind any more.

Re: PunBB 1.2 development source

Updated. Changes this time:

2004-09-12
""""""""""
*  Changed the defaults to allow subjects, posts and signatures to contain
   all caps characters.
*  Added language selection in the register and profile forms. If more than
   one language pack is installed, it is now possible to select one of them
   while registering or in the profile.
*  Added default language option to admin/options.
*  Updated the language pack code a bit. Instead of being called e.g. "en"
   or "se", the packs are now named "English" and "Swedish". I removed the
   unnessecary prefix to the language pack filenames as well.
"Programming is like sex: one mistake and you have to support it for the rest of your life."

Re: PunBB 1.2 development source

I get an error sad

Notice: Undefined index: language in [place]\punbb\include\common.php on line 116
There is no valid language pack '' installed. Please reinstall a language of that name.

81

Re: PunBB 1.2 development source

Smartys wrote:

I get an error sad

Notice: Undefined index: language in [place]\punbb\include\common.php on line 116
There is no valid language pack '' installed. Please reinstall a language of that name.

Do a clean install. Don't just overwrite files.

Re: PunBB 1.2 development source

ty Paul smile

Re: PunBB 1.2 development source

Whoops. Perhaps I should have mentioned that :)

"Programming is like sex: one mistake and you have to support it for the rest of your life."

84

Re: PunBB 1.2 development source

Great job smile

Thanks for that..

/me wait the release of the v1.2 wink

PunBB c'est bon, mangez en !

85

Re: PunBB 1.2 development source

Been running the dev source for a few days now. Everything is still looking good. Haven't found bugs so far.

86

Re: PunBB 1.2 development source

Paul wrote:
Smartys wrote:

I get an error sad

Notice: Undefined index: language in [place]\punbb\include\common.php on line 116
There is no valid language pack '' installed. Please reinstall a language of that name.

Do a clean install. Don't just overwrite files.

I'm receiving this even though i did a clean install (i think).
What's causing this? So i can figure out what i've done wrong..

Re: PunBB 1.2 development source

Try deleting your cookie.

"Programming is like sex: one mistake and you have to support it for the rest of your life."

88

Re: PunBB 1.2 development source

no cookies, same error

Re: PunBB 1.2 development source

You "think" you did a clean install? Did you or didn't you?

"Programming is like sex: one mistake and you have to support it for the rest of your life."

Re: PunBB 1.2 development source

lol if it doubt delete all of it (including db) and start again

91 (edited by D9r 2004-09-17 21:18)

Re: PunBB 1.2 development source

Is the ETA for a stable release of v1.2 in the range of 2-4 weeks or 2-4 months?

Re: PunBB 1.2 development source

Probably the latter. It might come sooner though. It depends on so many factors. If all I did was work on PunBB, I could give you a more exact estimate, but as it is now, I just can't.

"Programming is like sex: one mistake and you have to support it for the rest of your life."

93

Re: PunBB 1.2 development source

That's fine, I understand and I'm not in any rush.  Thanks for the rough estimate.

I'm planning to set up a new forum that will get a lot of use, and I figured if 1.2 were expected to be finished really soon, then I might as well wait for it.

But since it will be a few more months then I'm probably better off starting now with 1.5 so I can get the word out that my new forum is in place.

Re: PunBB 1.2 development source

Sounds like a good idea. Upgrading from 1.1.5 to 1.2 will not be any problem anyway, so you might as well start now :)

"Programming is like sex: one mistake and you have to support it for the rest of your life."

95 (edited by _arse 2004-09-19 16:19)

Re: PunBB 1.2 development source

ok,
this time i deleted everything, (but kept my config.php file and mysql db)
i uploaded 1.2
uploaded by config.php file
chmodded 0777 'cache'
and i still get

Notice: Undefined index: language in /../public_html/include/common.php on line 116
There is no valid language pack '' installed. Please reinstall a language of that name.

what am i doing wrong this time? smile

96

Re: PunBB 1.2 development source

Clean means completely clean. Delete everything including the database, create a new database and run install.php again.

97 (edited by _arse 2004-09-19 16:58)

Re: PunBB 1.2 development source

Ahh ok, but i want to keep my old database.
I ran the conversion script in 'scripts'.

Any suggestions? smile

98

Re: PunBB 1.2 development source

hm. whats the value of $language in your config.php?
maybe it has no value or it is overwritten by a mod somewhere?

Re: PunBB 1.2 development source

_arse: In order to "upgrade" from the previous dev release to this one, you will have to add a field to the users table. Run this query:

ALTER TABLE users ADD language VARCHAR(25) NOT NULL DEFAULT 'English';

Then run this query:

INSERT INTO config (conf_name, conf_value) VALUES('o_default_lang', 'English')

That should do it. As of 1.2, the $language variable in config.php is ignored, so you can safely remove it.

"Programming is like sex: one mistake and you have to support it for the rest of your life."

100

Re: PunBB 1.2 development source

that did it!

Thanks alot smile