Richard Casson, IT (UK | 3 Aug 2000 10:21

Meeting room booking system.

Hi,
	What a great app.. We have installed it on an NT4.0 box with php and
mysql installed, It all works fine apart from when you click on the times on
the left hand side it returns "page couldn't be found". Do you know how to
fix  this small problem (its probably something ive missed when installing
it).  

Best Regards Rich

Richard Casson
Actebis UK [IT-Department]
*	+44 1793 890236
*	rcasson <at> actebis.com
> *	http://www.actebis.co.uk
> 
Privileged/Confidential Information may be contained in this message.
Opinions,conclusions and other information expressed in this message 
are not given or endorsed by my firm or employer unless otherwise indicated.

Sam Mason | 3 Aug 2000 10:36

RE: Meeting room booking system.

> Hi,
> 	What a great app.. We have installed it on an NT4.0 box 
> with php and
> mysql installed, It all works fine apart from when you click 
> on the times on
> the left hand side it returns "page couldn't be found". Do 
> you know how to
> fix  this small problem (its probably something ive missed 
> when installing
> it).  

Sorry, i've only served it from UNIX, does it happen the first time you
press it or after several presses, there is a small bug that it constantly
appends a bit of text into the end of the URL, after several presses the URL
can get very long.

What do the logs say??

Sam

> Best Regards Rich
> 
> Richard Casson
> Actebis UK [IT-Department]
> *	+44 1793 890236
> *	rcasson <at> actebis.com
> > *	http://www.actebis.co.uk
> > 
> Privileged/Confidential Information may be contained in this message.
> Opinions,conclusions and other information expressed in this message 
(Continue reading)

Françoise König-Jost | 3 Aug 2000 18:16
Picon
Picon

Displaying a language other than english

Hi,

I have just installed mrbs on a Solaris 7 system with Apache 1.3.12, 
php-4.0.1.pl2, mysql-3.22.32, it works fine.

I have a small remark: if I configure my Netscape 4.7 browser 
Preferences/Navigator/Languages/ 1 French 2 English , the
variable $HTTP_ACCEPT_LANGUAGE value is "fr,en" . And the
test in config.inc tries to find lang.fr,en ...

I don't know enough yet of PHP to try to improve this. Maybe this
could be solved in a future release of mrbs.

Bye,

Francoise

--

-- 
Françoise König - jost <at> esrf.fr - tel (33) 476 88 25 57 - fax (33) 476 88 24 27
ESRF - Computing Services - Systems and Communications Group
6, rue Jules Horowitz, BP 220, 38043 GRENOBLE Cedex, France

Sam Mason | 3 Aug 2000 19:32

RE: Displaying a language other than english

Francoise,

Just had a quick look, it looks pretty easy to do, but I have to go home
now.  I'll do it in the morning and upload it to CVS, there have been a
number of little bug fixes recently, I may take this opportunity to create a
new tarball.

Thanks for the info, Sam.

> Hi,
> 
> I have just installed mrbs on a Solaris 7 system with Apache 1.3.12, 
> php-4.0.1.pl2, mysql-3.22.32, it works fine.
> 
> I have a small remark: if I configure my Netscape 4.7 browser 
> Preferences/Navigator/Languages/ 1 French 2 English , the
> variable $HTTP_ACCEPT_LANGUAGE value is "fr,en" . And the
> test in config.inc tries to find lang.fr,en ...
> 
> I don't know enough yet of PHP to try to improve this. Maybe this
> could be solved in a future release of mrbs.
> 
> Bye,
> 
> Francoise
> 
> -- 
> Françoise König - jost <at> esrf.fr - tel (33) 476 88 25 57 - fax 
> (33) 476 88 24 27
> ESRF - Computing Services - Systems and Communications Group
(Continue reading)

Travis Fitch | 4 Aug 2000 09:33
Picon
Picon
Favicon

Update problems

Hi,

I was using MRBS 0.8pre1 without any hitches, so I decided to upgrade
to the latest CVS revision as 08/03/00, and things seemed to run fine
until I go to add an entry, which I can do successfully.  However the
problem lies in the fact that when you are returned to the room page
that you want to book, nothing has been added, the room still looks
empty.  Strange?

Regards,

Travis

----
Travis Fitch
Computer Support / Network Admnistrator
School of Engineering and Science
Swinburne University
email: tfitch <at> swin.edu.au
ph: +61-3-9214-5183
mobile: 0414-324-370

Sam Mason | 4 Aug 2000 11:06

RE: Update problems

Travis,

The database format has changed between 0.8pre1 and yesterdays version, have
you re-created the tables?  NOTE, I think I deleted upgrade.sql because it
does not work, and I haven't had a chance to write a new one yet.  So you
can either run the tables.sql, or create a bit of SQL to do it and I'll
gladly include it in the distribution.

Sam.

> Hi,
> 
> I was using MRBS 0.8pre1 without any hitches, so I decided to upgrade
> to the latest CVS revision as 08/03/00, and things seemed to run fine
> until I go to add an entry, which I can do successfully.  However the
> problem lies in the fact that when you are returned to the room page
> that you want to book, nothing has been added, the room still looks
> empty.  Strange?
> 
> Regards,
> 
> Travis
> 
> 
> 
> ----
> Travis Fitch
> Computer Support / Network Admnistrator
> School of Engineering and Science
> Swinburne University
(Continue reading)

Green, Bob | 4 Aug 2000 17:54
Picon
Favicon

Interesting bug in mincals.inc

Hi,

I just tripped over a neat bug in mincals.inc. The best way to demonstrate
it is to pull up the diary for 29th April 2000. You will notice that the
previous and next months (Feb and Apr) are correct. Now click on 30th March
and see what happens to Feb. Next click on 31st March and see what happens
to April!!!

The problem is triggered when the next or previous months have fewer days in
them than the current date in the current month. Here's a fix:

In mincals.inc:
148c148
< $lastmonth = mktime(0, 0, 0, $month-1, 1, $year);
---
> $lastmonth = mktime(0, 0, 0, $month-1, $day, $year);
150c150
< $nextmonth = mktime(0, 0, 0, $month+1, 1, $year);
---
> $nextmonth = mktime(0, 0, 0, $month+1, $day, $year);

This ensures that the calculation of the next and previous month picks up
the correct month. From my brief look at the code I can't see that it is
going to break anything. Be warned though, I am VERY new to PHP, though not
to programming, so I might have missed something obvious.

Share and enjoy...

-Bob

(Continue reading)

Sam Mason | 7 Aug 2000 10:07

RE: Interesting bug in mincals.inc

This was fixed a little while ago (0.8-pre6 onwards), thanks for the info
though.  Any other wierdos?

Thanks, Sam.

> -----Original Message-----
> From: Green, Bob [mailto:GreenR <at> logica.com]
> Sent: Friday, August 04, 2000 4:55 PM
> To: 'Sam Mason'; Mrbs-general <at> lists.sourceforge.net
> Subject: [Mrbs-general] Interesting bug in mincals.inc
> 
> 
> Hi,
> 
> I just tripped over a neat bug in mincals.inc. The best way 
> to demonstrate
> it is to pull up the diary for 29th April 2000. You will 
> notice that the
> previous and next months (Feb and Apr) are correct. Now click 
> on 30th March
> and see what happens to Feb. Next click on 31st March and see 
> what happens
> to April!!!
> 
> The problem is triggered when the next or previous months 
> have fewer days in
> them than the current date in the current month. Here's a fix:
> 
> In mincals.inc:
> 148c148
(Continue reading)

David C. Dickson | 17 Aug 2000 02:26

Linux Users Forum and Awards Presentations - 30 Oct 2000 - Wash. D.C. AWARDS... EXHIBIT AND SPONSOR OPPORTUNITIES

To:    mrbs-general <at> lists.sourceforge.net 

First Annual Linux User's Training Conference 
And
Awards Presentation

"New Enterprise Solutions Through Linux"

October 30, 2000

Ronald Reagan Building and International Trade Center
1300 Pennsylvania Avenue
Washington D.C.
Atrium Ballroom

PLEASE PASS THIS TO YOUR SALES EXECUTIVE RESPONSIBLE FOR SALES TO THE U.S. GOVERNMENT.

THIS IS A PREMIER OPPORTUNITY FOR YOUR COMPANY TO EXHIBIT AND SHOWCASE YOUR LINUX 
PRODUCTS AND SERVICES.  GO TO OUR WEB SITE. WE ARE VERY SUCCESSFUL AT PRODUCING 
EVENTS THAT SERVE THE INTERESTS OF GOVERNMENT AND INDUSTRY.

Event Sponsors: 
* CIS Global 
* Aronson, Fetridge, & Weigle 
* INPUT 

... new sponsors to be announced.

Purpose of Conference:

(Continue reading)

Chip Mefford | 17 Aug 2000 13:59

Newbie question

Took a look at MRBS, decided I wanted to give it a go,
d'loaded, configured and installed, and pointed
my browser at it.

Not much there, looked for a place to log in, 
no place to log in. 

So I looked at the demo page to see what it
"should" look like, and the demo page also 
seems to be broken. 

What i get is the top tool bar, 
two areas, building one and building
two, help and admin. When I click
on admin I get told I am not authorized. 

Well, who is? How do I log in? 

Also, it appears that there is a lot
more to the page than I am seeing, which
is to say, the page doesn't ever seem to
stop loading, and when I force it to
stop, viewing the source goes of for
many thousands of lines. 


Gmane