bonjour
Members-
Posts
76 -
Joined
-
Last visited
Content Type
Forums
News
20th
EduGeek EDIT Conference
Blogs
Everything posted by bonjour
-
Sorry, me again. Finally received the timetables from our data manager in .CSV format. Whenever I try to import a room's timetable, though, I get the following errors: Notice: Undefined offset: 2 in /home/ileagorg/public_html/aps_mrbs/bulkYearMake.php on line 83 - Same error for lines 84 through to 91, 93, 95 and 111 Warning: require_once(HTTP/Request.php) [function.require-once]: failed to open stream: No such file or directory in /home/ileagorg/public_html/aps_mrbs/bulkYearMake.php on line 140 Fatal error: require_once() [function.require]: Failed opening required 'HTTP/Request.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/ileagorg/public_html/aps_mrbs/bulkYearMake.php on line 140 Have I just done something silly, or is it more serious? Cheers.
-
Cheers dude. One other thing.. I understand how MRBS deals with periods / slots, but I'm unsure exactly as to what I have to change in the bulkYearMake script. The bookable periods we have (that appear in MRBS) are 'Before school', 'Period 1', 'Period 2', 'Period 3', 'Period 4', 'Lunch', 'Period 5' and 'After School'. How would this transpose into the bulkYearMake script. Thanks ever so much for your help. This will save an immense amount of time in the coming years.
-
Sorry, two quick questions.. 1. Do the room names ID Numbers on lines 44+ have to match exactly with the names and numbers in the MRBS_room table? 2. Does a room name / number entry have to be created for every bookable item in MRBS? We have some equipment on there that we obviously don't have a timetable for. Cheers.
-
Gave them a call and they sorted it. T'was a problem on one of their servers apparently.
-
Is anyone else having trouble with Synetrix and PHP today? Our Joomla website has gone down, but the old website is still working. I've uploaded a test.php, which yields the same response as trying to load Joomla, so I'm guessing it's a problem at the server end, rather than our website specifically.
-
Just a word of warning, that this update broke my TinyMCE. Half of the tools are now not showing. Anyone else experienced this?
-
Kinda low paid for London. Is the main focus on Web or on Technician?
-
I had exactly the same problem. Edited the config file manually, though, and everything was then fine. Hopefully I wont run into similar issues further down the line...
-
I did get it sorted in the end, but thanks for everyone's input. Much appreciated.
-
I've looked into it a bit further, and the bookings appear OK if (through SQL) I alter the start time entry back by an hour (so to start at 11.00 rather than 12.00 GMT for e.g). There's no way I'm doing that for every booking, so I'll see if I can work out some SQL to do it for me. Serves me right for jumping to 1.4 without it being thoroughly tested. Anyone else had this happen?
-
We've been using MRBS at my school for several years with no real major issues. Got in this morning, however, to find that no bookings were displaying from today onwards (i.e. post clocks moving forward). All bookings from before the weekend are OK, and if I go into a recurring booking and save it then it will appear right the way through to the end of the recurrance once more. I've now done this for all of our recurring bookings, but this doesn't help for the many single bookings that have been made, which are no doubt still in the database but not being displayed. I'm just wondering if anyone else has experienced any problems with the latest MRBS 1.4 following the move into British standard time, using periodical bookings rather than time. Cheers.
-
I went to Highgate. Good school.
-
Not being funny, mate, but how on earth do you know that?
-
Thing is, I can't help but think about the Jarvis fiasco. Screwed on the contract and abysmal service thereafter.
-
BSF is certainly going to be interesting. It has potential to be a success, as it should do with the amount of money that's being ploughed into it. However, I believe their aims and the money available just don't marry up. We're already seeing some corners cut. Cat7 was in the original spec. (as it should be with the BSF programme intended to gear up schools for 50 years or so), but predictably has now been cut as it would cost far too much dough - think entire overhaul of of every single school's infrastructure at every level. It'll be interesting to see what sort of level they'll bring the schools up to. Will we be seeing Cisco IP telephony systems in all the schools (as an e.g.)? I helped introduce one of these in my previous school and it was fantastic, though admittedly they were already 100% Cisco before my arrival. Ultimately, I believe the teachers are going to have to learn to adapt. They're not necessarily going to have a technician on call throughout the school day, or at the very least less technicians. I can just see BSF lining some companies' pockets with a lot of money whilst the schools are short-changed, just as local government usually is when dealing with the private sector.
-
Yes. Our network is set up as 'internal' rather than local. Like I said, I've set up LDAP with other applications previously with no issues (using 'internal'). Thanks for your help mate. I'll keep plugging away.
-
Indeed it did my friend. I have used that and still no joy. Maybe I should have specified that in my original post.
-
Hi there. First time poster here, but seems like a great resource.. I'm currently having trouble with the excellent Meeting Room Booking System. I've got it all working OK on a Windows client running XAMPP. The only problem I'm experiencing is getting LDAP authentication to work. I've got LDAP working fine with other applications, such as Ilient, but have so far been unable to get it working with MRBS. Here is the authentication section from my current config.inc file. Any glaring errors that anyone can notice? ############################################### # Authentication settings - read AUTHENTICATION ############################################### $auth["session"] = "php"; # How to get and keep the user ID. One of # "http" "php" "cookie" "ip" "host" "nt" "omni" # "remote_user" $auth["type"] = "ldap"; # How to validate the user/password. One of "none" # "config" "db" "db_ext" "pop3" "imap" "ldap" "nis" # "nw" "ext". # Cookie path override. If this value is set it will be used by the # 'php' and 'cookie' session schemes to override the default behaviour # of automatically determining the cookie path to use $cookie_path_override = ''; # The list of administrators (can modify other peoples settings) $auth["admin"][] = "127.0.0.1"; # localhost IP address. Useful with IP sessions. $auth["admin"][] = "administrator"; # A user name from the user list. Useful $auth["admin"][] = "ross"; #with most other session schemes. $auth["admin"][] = "ictsupport"; #$auth["admin"][] = "10.0.0.1"; #$auth["admin"][] = "10.0.0.2"; #$auth["admin"][] = "10.0.0.3"; # 'auth_config' user database # Format: $auth["user"]["name"] = "password"; $auth["user"]["administrator"] = "***"; $auth["user"]["spollard"] = "***"; $auth["user"]["schetcuti"] = "pass"; $auth["user"]["ross"] = "pass"; $auth["user"]["jfossey"] = "pass"; $auth["user"]["ictsupport"] = "***"; # 'session_http' configuration settings $auth["realm"] = "mrbs"; # 'session_remote_user' configuration settings #$auth['remote_user']['logout_link'] = '/logout/link.html'; # 'auth_ext' configuration settings $auth["prog"] = ""; $auth["params"] = ""; # 'auth_db_ext' configuration settings $auth['db_ext']['db_host'] = 'localhost'; $auth['db_ext']['db_username'] = 'authuser'; $auth['db_ext']['db_password'] = 'authpass'; $auth['db_ext']['db_name'] = 'authdb'; $auth['db_ext']['db_table'] = 'users'; $auth['db_ext']['column_name_username'] = 'name'; $auth['db_ext']['column_name_password'] = 'password'; # Either 'md5', 'sha1', 'crypt' or 'plaintext' $auth['db_ext']['password_format'] = 'md5'; # 'auth_ldap' configuration settings # Where is the LDAP server $ldap_host = "aps-sr-001.alexandrap.internal"; # If you have a non-standard LDAP port, you can define it here #$ldap_port = 389; # If you want to use LDAP v3, change the following to true $ldap_v3 = false; # If you want to use TLS, change following to true $ldap_tls = false; # LDAP base distinguish name # See AUTHENTICATION for details of how check against multiple base dn's $ldap_base_dn = "ou=Establishments,dc=alexandrap,dc=internal"; $account_suffix = "@alexandrap.internal"; # Attribute within the base dn that contains the username $ldap_user_attrib = "sAMAccountName"; # 'auth_ldap' extra configuration for ldap configuration of who can use # the system # If it's set, the $ldap_filter will be combined with the value of # $ldap_user_attrib like this: # (&($ldap_user_attrib=username)($ldap_filter)) # After binding to check the password, this check is used to see that # they are a valid user of mrbs. $ldap_filter = "mrbsuser=y"; # 'auth_imap' configuration settings # See AUTHENTICATION for details of how check against multiple servers # Where is the IMAP server $imap_host = "aps-sr-001"; # The IMAP server port $imap_port = "143"; # 'auth_pop3' configuration settings # See AUTHENTICATION for details of how check against multiple servers # Where is the POP3 server #$pop3_host = "pop3-server-name"; # The POP3 server port #$pop3_port = "110"; I can't see where it picks up the admin username and password to authenticate with the LDAP server. Any help much appreciated. Ta.
