Lindasbadhairday | 1 May 2002 01:49
Picon
Favicon

my account

I'm trying to find out who is a member from this house.
Rhumpster,
Ashton0201,
RandyBabe45, or
Lindasbadhairday.
Because my checking account is being charged $9.95 and I don't know why.
Please respond as quickly as possible.
If one of these names show up Please cancel that person.
Thank you
Linda
Troy Davis | 1 May 2002 22:41
Picon

New features

Would any of you who has tweaked MRBS care to show me some "live" examples?
Thanks.

Troy Davis
University of Tennessee

Eric | 2 May 2002 15:29
Picon

mrbs little problem

Hi i'am french and i like your script .
Sorry for my bad english :)
So i send you this mail to know how can we change ( convert in french language) month and day ?
Example:
Convert september to septembre in french
and sunday to dimanche..
etc ..
Thks a lot.
John Murf | 6 May 2002 15:20

Installing MRBS: (2)

I'm interested in trying MRBS but I get stuck at this instruction

"create a new database with the following: 

 [MySQL] $ mysqladmin create mrbs"

I've tried as root, mysql and my normal login name but all get access denied. 
Can someone give me a hint as to what to do. I've looked at the documentation 
for MySQL on their website but there was just too much for me.  

I'm using Mandrake 8.2. MySql is installed and running according to webmin but 
I have not tried to configure or change anything other than the password for 
the mysql user (I had to change that as root because I didn't know the 
original password).

Thanks

--

-- 
John Murf

John Beranek | 7 May 2002 13:32
Picon

Re: Updating MRBS

On Mon, 2002-04-29 at 19:25, Juan Rosero wrote:
> 
> > - Simple LDAP / Active Directory authentication (PAM support?)
> 
> We are really interested in this feature, since we are based on a 
> Windows 2000 environment it really makes sense. I think most people 
> already have or will migrate to a LDAP server in the future.

The current source code already has LDAP authentication support, it uses
PHP's built-in LDAP support.

> Juan Rosero

John.

--

-- 
John Beranek, Senior Software Engineer
Pace Micro Technology plc. (Cambridge)    Tel: +44 1223 518561
645 Newmarket Road,                       Fax: +44 1223 518526
Cambridge, CB5 8PB, UK.                   Web: http://www.pace.co.uk/

John Beranek | 7 May 2002 13:36
Picon

Re: Installing MRBS: (2)

On Mon, 2002-05-06 at 14:20, John Murf wrote:
> I'm interested in trying MRBS but I get stuck at this instruction
> 
> "create a new database with the following: 
>  
>  [MySQL] $ mysqladmin create mrbs"
> 
> I've tried as root, mysql and my normal login name but all get access denied. 
> Can someone give me a hint as to what to do. I've looked at the documentation 
> for MySQL on their website but there was just too much for me.

MySQL users and passwords have nothing to do with Unix users and
passwords. You need to know the password for the _MySQL user_ 'root'. On
my Redhat box this defaulted to a blank password...I don't know what it
is for Mandrake.

John.

--

-- 
John Beranek, Senior Software Engineer
Pace Micro Technology plc. (Cambridge)    Tel: +44 1223 518561
645 Newmarket Road,                       Fax: +44 1223 518526
Cambridge, CB5 8PB, UK.                   Web: http://www.pace.co.uk/

John Beranek | 7 May 2002 13:40
Picon

Re: mrbs little problem

On Thu, 2002-05-02 at 14:29, Eric wrote:
> Hi i'am french and i like your script .
> Sorry for my bad english :)
> So i send you this mail to know how can we change ( convert in french
> language) month and day ?
> Example:
> Convert september to septembre in french
> and sunday to dimanche..
> etc ..

As long as your browser is configured with French as your preferred
language, this is what MRBS will give you. There were a few changes in
recent MRBS versions to make this work better, but it should certainly
work in the code out of CVS.

> Thks a lot.

John.

P.S. If you _really_ want to change the default language, you can change
the line in config.inc that reads "include 'lang.en'" to "include
'lang.fr'"

--

-- 
John Beranek, Senior Software Engineer
Pace Micro Technology plc. (Cambridge)    Tel: +44 1223 518561
645 Newmarket Road,                       Fax: +44 1223 518526
Cambridge, CB5 8PB, UK.                   Web: http://www.pace.co.uk/

John Beranek | 7 May 2002 14:16
Picon

Re: mrbs little problem

I wrote:
> On Thu, 2002-05-02 at 14:29, Eric wrote:
> 
>>Hi i'am french and i like your script .
>>Sorry for my bad english :)
>>So i send you this mail to know how can we change ( convert in french
>>language) month and day ?
>>Example:
>>Convert september to septembre in french
>>and sunday to dimanche..
>>etc ..
> 
> John.
> 
> P.S. If you _really_ want to change the default language, you can change
> the line in config.inc that reads "include 'lang.en'" to "include
> 'lang.fr'"

Oh, and you'd also need to comment out a few lines, and change one more 
line...so you'd end up with something like the below. Note, however, that 
this completely removes the auto language switching functionality of MRBS.

John.

##########
# Language
##########

# Change the en below to the code for your language - if
# there is a language file for it.
include 'lang.fr';

# We also want to do locales for Dates/Times etc.
# Use the setlocale() function for this.

# Define the default locale here. For a list of supported
# locales on your system do "locale -a"
setlocale('LC_ALL','fr_FR');

# We attempt to make up a sensible locale from the HTTP_ACCEPT_LANGUAGE
# environment variable. If this doesn't work for you, comment it out
# and assign locale directly.
# If HTTP_ACCEPT_LANGUAGE is a comma-separated list, take the first one.
#$locale = ereg_replace(",.*", "", getenv('HTTP_ACCEPT_LANGUAGE'));

# These two lines import a language based on what the client
# is using. Comment them out to disable this.

#$lang_file = "lang.". strtolower(substr($locale,0,2));
#if (file_exists($lang_file)) {include $lang_file;}

#
# Convert locale=xx to xx_XX; this is not correct for some locales???
#if (strlen($locale) == 2) {
#   $locale = strtolower($locale)."_".strtoupper($locale);
#} else {
#   $locale = 
#strtolower(substr($locale,0,2))."_".strtoupper(substr($locale,3,2));
#}
#setlocale('LC_ALL',$locale);

--

-- 
John Beranek, Senior Software Engineer
Pace Micro Technology plc. (Cambridge)    Tel: +44 1223 518561
645 Newmarket Road,                       Fax: +44 1223 518526
Cambridge, CB5 8PB, UK.                   Web: http://www.pace.co.uk/

Bhanji, Al-Karim | 7 May 2002 18:05
Picon

(no subject)

Hi,

I have just added a extra field to the database 'Contact No'.  I seemed to
be able to alter the code so that a single booking works fine but it does
not seem to work for multiple bookings.  No errors occur but no bookings are
made /entered at all.

Please help!!!

Ps I have changed the following files:  Edit_entry.php,
edit_entry_handler.php, mrbs_sql.inc. Have I missed out any files
Alternatively tell me where I am going wrong......

 
>>> Al-Karim Bhanji
>>> Systems Developer 
>>> BRE 
>>> Bucknalls Lane
>>> Garston, Watford
>>> WD25 9XX
>>> Mailto:bhanjia <at> bre.co.uk
>>> Website: http://www.bre.co.uk

Privileged and confidential information and/or copyright material may be
contained in this e-mail.  The information and material is intended for the
use of the intended addressee only.  If you are not the intended addressee
you may not copy or deliver it to anyone else or use it in any unauthorised
manner. To do so is prohibited and may be unlawful.  If you receive this
e-mail by mistake, please advise the sender immediately by return e-mail and
destroy all copies. Thank you.

Attachment (edit_entry.php): application/octet-stream, 8 KiB
Attachment (edit_entry_handler.php): application/octet-stream, 4488 bytes
Attachment (mrbs_sql.inc): application/octet-stream, 10 KiB
Bhanji, Al-Karim | 7 May 2002 18:36
Picon

FW:

Hi,

I have just added a extra field to the database 'Contact No'.  I seemed to
be able to alter the code so that a single booking works fine but it does
not seem to work for multiple bookings.  No errors occur but no bookings are
made /entered at all.

Please help!!!

Ps I have changed the following files:  Edit_entry.php,
edit_entry_handler.php, mrbs_sql.inc. Have I missed out any files
Alternatively tell me where I am going wrong......

 
>>> Al-Karim Bhanji
>>> Systems Developer 
>>> BRE 
>>> Bucknalls Lane
>>> Garston, Watford
>>> WD25 9XX
>>> Mailto:bhanjia <at> bre.co.uk
>>> Website: http://www.bre.co.uk

Privileged and confidential information and/or copyright material may be
contained in this e-mail.  The information and material is intended for the
use of the intended addressee only.  If you are not the intended addressee
you may not copy or deliver it to anyone else or use it in any unauthorised
manner. To do so is prohibited and may be unlawful.  If you receive this
e-mail by mistake, please advise the sender immediately by return e-mail and
destroy all copies. Thank you.

Attachment (edit_entry.php): application/octet-stream, 8 KiB
Attachment (edit_entry_handler.php): application/octet-stream, 4488 bytes
Attachment (mrbs_sql.inc): application/octet-stream, 10 KiB

Gmane