Rhys
Members-
Posts
7 -
Joined
-
Last visited
Content Type
Forums
News
20th
EduGeek EDIT Conference
Blogs
Everything posted by Rhys
-
Hi John, I don't actually work in the position anymore as I am off traveling and working in europe, but I would just like to thank you for updating the thread when you found the resolution (I received an email when the thread was updated ). I will pass the solution on to the fellow who replaced me however. If I remember correctly I just utilised a work around by putting before school at the end of the list. Cheers Rhys
-
I have MRBS up and running and have managed to get it to switch over to periods (is there a document anywhere that lists all the config.inc.php commands for it? I have mostly got them from threads here on edugeek) but am having an issue where it is producing two extra time blocks named Period 1 and Period 2 before the ones I enter manually. Any idea why that is? my config.inc.php is below. so it says Period 1 Period 2 Before School Period 1 Period 2 Recess Period 3 Period 4 Lunch Period 5 After School when it should say Before School Period 1 Period 2 Recess Period 3 Period 4 Lunch Period 5 After School // $Id: config.inc.php 1336 2010-04-21 09:53:39Z jberanek $ /************************************************************************** * MRBS Configuration File * Configure this file for your site. * You shouldn't have to modify anything outside this file * (except for the lang.* files, eg lang.en for English, if * you want to change text strings such as "Meeting Room * Booking System", "room" and "area"). **************************************************************************/ // The timezone your meeting rooms run in. It is especially important // to set this if you're using PHP 5 on Linux. In this configuration // if you don't, meetings in a different DST than you are currently // in are offset by the DST offset incorrectly. // // When upgrading an existing installation, this should be set to the // timezone the web server runs in. // $timezone = "Australia/Sydney"; /******************* * Database settings ******************/ // Which database system: "pgsql"=PostgreSQL, "mysql"=MySQL, // "mysqli"=MySQL via the mysqli PHP extension $dbsys = "mysql"; // Hostname of database server. For pgsql, can use "" instead of localhost // to use Unix Domain Sockets instead of TCP/IP. $db_host = "localhost:3306"; // Database name: $db_database = "mrbs"; // Database login user name: $db_login = "redacted"; // Database login password: $db_password = 'redacted'; // Prefix for table names. This will allow multiple installations where only // one database is available $db_tbl_prefix = "mrbs_"; // Uncomment this to NOT use PHP persistent (pooled) database connections: // $db_nopersist = 1; $auth["type"] = "config"; $auth["session"] = "php"; $auth["user"]["username1"] = "password1"; $auth["admin"][] = "username1"; $enable_periods = TRUE; $periods[] = "Before School"; $periods[] = "Period 1"; $periods[] = "Period 2"; $periods[] = "Recess"; $periods[] = "Period 3"; $periods[] = "Period 4"; $periods[] = "Lunch"; $periods[] = "Period 5"; $periods[] = "After School"; /* Add lines from systemdefaults.inc.php here to change the default configuration. Do _NOT_ modify systemdefaults.inc.php. */ // This next section must come at the end of the config file - ie after any // language and mail settings, as the definitions are used in the included file require_once "language.inc"; // DO NOT DELETE THIS LINE /************* * Entry Types *************/ // This array maps entry type codes (letters A through J) into descriptions. // // Each type has a color which is defined in the array $color_types in the Themes // directory - just edit whichever include file corresponds to the theme you // have chosen in the config settings. (The default is default.inc, unsurprisingly!) // // The value for each type is a short (one word is best) description of the // type. The values must be escaped for HTML output ("R&D"). // Please leave I and E alone for compatibility. // If a type's entry is unset or empty, that type is not defined; it will not // be shown in the day view color-key, and not offered in the type selector // for new or edited entries. // $typel["A"] = "A"; // $typel["B"] = "B"; // $typel["C"] = "C"; // $typel["D"] = "D"; $typel["E"] = get_vocab("external"); // $typel["F"] = "F"; // $typel["G"] = "G"; // $typel["H"] = "H"; $typel["I"] = get_vocab("internal"); // $typel["J"] = "J"; ?>
-
I get the following PHP error when I try to run MRBS index.php The description for Event ID ( 2 ) in Source ( PHP-5.2.13 ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: php[4260], PHP Fatal error: Call to undefined function mysql_pconnect() in C:\Inetpub \wwwroot\MRBS\web\mysql.inc on line 432. EDIT: I have fixed this error, for anyone with this problem in the future the solution is http://docs.phplivesupport.com/viewarticle.php?uid=1&aid=73&pid=3
-
Network Printers automatically added to user accounts
Rhys replied to Olliegami's topic in Windows Server 2000/2003
There are two main ways to do this. 1) A login script (I think this covers the topic fairly well) 2) Group Policy (windows Server 2003 and Windows XP machines will need an update for this to work) -
I have just tried to install PHP and MRBS on a Windows 2003 server. I am using ISAPI PHP and IIS 6.0 After finding PHP 5.3.2 would not work at all I have installed 5.2.13 and when I run a test php webpage it comes up fine. However when I tried to load index.php for MRBS I get a 500 Internal Server Error and I am not sure where to go from here my config.inc.php the only real change is the time zone // $Id: config.inc.php 1336 2010-04-21 09:53:39Z jberanek $ /************************************************************************** * MRBS Configuration File * Configure this file for your site. * You shouldn't have to modify anything outside this file * (except for the lang.* files, eg lang.en for English, if * you want to change text strings such as "Meeting Room * Booking System", "room" and "area"). **************************************************************************/ // The timezone your meeting rooms run in. It is especially important // to set this if you're using PHP 5 on Linux. In this configuration // if you don't, meetings in a different DST than you are currently // in are offset by the DST offset incorrectly. // // When upgrading an existing installation, this should be set to the // timezone the web server runs in. // $timezone = "Australia/Sydney"; /******************* * Database settings ******************/ // Which database system: "pgsql"=PostgreSQL, "mysql"=MySQL, // "mysqli"=MySQL via the mysqli PHP extension $dbsys = "mysql"; // Hostname of database server. For pgsql, can use "" instead of localhost // to use Unix Domain Sockets instead of TCP/IP. $db_host = "localhost"; // Database name: $db_database = "mrbs"; // Database login user name: $db_login = "mbrs"; // Database login password: $db_password = 'mbrs-password'; // Prefix for table names. This will allow multiple installations where only // one database is available $db_tbl_prefix = "mrbs_"; // Uncomment this to NOT use PHP persistent (pooled) database connections: // $db_nopersist = 1; /* Add lines from systemdefaults.inc.php here to change the default configuration. Do _NOT_ modify systemdefaults.inc.php. */ // This next section must come at the end of the config file - ie after any // language and mail settings, as the definitions are used in the included file require_once "language.inc"; // DO NOT DELETE THIS LINE /************* * Entry Types *************/ // This array maps entry type codes (letters A through J) into descriptions. // // Each type has a color which is defined in the array $color_types in the Themes // directory - just edit whichever include file corresponds to the theme you // have chosen in the config settings. (The default is default.inc, unsurprisingly!) // // The value for each type is a short (one word is best) description of the // type. The values must be escaped for HTML output ("R&D"). // Please leave I and E alone for compatibility. // If a type's entry is unset or empty, that type is not defined; it will not // be shown in the day view color-key, and not offered in the type selector // for new or edited entries. // $typel["A"] = "A"; // $typel["B"] = "B"; // $typel["C"] = "C"; // $typel["D"] = "D"; $typel["E"] = get_vocab("external"); // $typel["F"] = "F"; // $typel["G"] = "G"; // $typel["H"] = "H"; $typel["I"] = get_vocab("internal"); // $typel["J"] = "J"; ?>
-
Sorry, I do understand I can link MRBS to LDAP, but are you inferring that since sharepoint does the same the user will stay logged in somehow. I should note that teachers will be accessing this from non-domain computers as well as the desktop PC's we have on campus.
-
Hi, I work at a relatively small school here in Australia as the ICT Officer and after having to deal with the awful intranet that was in place when I started have begun work on replacing it with a Sharepoint Services site. While looking for a better alternative than the Room and Equipment booking template I stumbled upon edugeek and consequently MRBS. While I can get it running without an issue I certainly am not am expert with sharepoint or web design (most of my experience and training is with IT support and administering a Windows domain. so while I know enough VB for scripting and a little HTML you would consider me a novice in this area). To get on to my main point I was wondering if there is some way to integrate MRBS and Sharepoint Services so they use a single sign-on and the teachers do not have to continually enter their passwords. I would appreciate any advice I can get on this. Cheers Rhys
