Jump to content

Recommended Posts

Posted

Hello everyone,

 

I am having a slight issue with the configuration of CRBS (http://classroombookings.com).

 

Everything is installed correctly and functioning. All I would like to do now is hand the system over to our Admin Team. They're all members of a Security Group in AD.

 

I have added that group into the following configuration file (BookingSystem > ModuleSettings.asp), and this is working, they're all 'Managers'. However, I would like to make the Administration Team Manager an 'Administrator' of the system.

 

I can't find the configuration file that enables me to make users an 'Administrator'. I have tried using the GUI, changed the user from Manager to Administrator but this has had no affect.

 

Hopefully someone has had the same issue as me! :)

 

I appreciate any guidance, as always!

Posted

I've found the solution:

 

I've found the problem in my case and have a workaround that might be useful.

 

For whatever reason, Domain Admins did not appear in the GrpList variable. This meant my membership of that group was not overiding other settings.

 

What I did was to create a new security group in AD that I called "Bookers". Then in Start/Settings.asp I modified the code (red) at line 615 to:

 

'''''''''''''''''''''''Display if a domain admin Administrator

if instr(1, UCASE(GrpList) ,UCASE("Bookers")) then

ExtraGroup = 1

End if

Session("721155username") = User

Session("721155displayname") = displayname

Session("721155ExtraGroup") = ExtraGroup

AdminPassword = 0

StaffPassword = 0

Now any staff that I want to give full administrator rights goes into Bookers security group.

 

I have no idea why the group was not appearing properly but this works for me. I hope it helps others.

 

Thanks for your input! :)

Posted

Sorry I don't like to bring up an old topic again, I have another issue, it's to do with changing the MS Database which is currently used to SQL. If you use http://folders.devizes.wilts.sch.uk/download/bookingsystem3/index.asp you'll understand.

 

Due to the on-going issue of MS Access databases crashing, I have decided to go with SQL.

 

I have used the Upsizing Wizard in Access 2003 to create the SQL database. Everything is setup, the database is running on our SQL Server.

 

I am having trouble linking to the database in the booking software.

 

I have modified the Settings.txt file to include the password on the first line.

 

I have changed the ModuleSettings.asp file to look for an SQL Database and finally I have modified the DatabasePath.asp to point to the new location, in my case being:

 

D:\Program Files\Microsoft SQL Server\MSSQL\Data\

 

I have put the SQL User, Server Name and Database Name. In my case being:

 

SQLuser = "bookings"

SQLserver = "JMA-SAGE01"

SQLdatabase = "BookingSystem"

 

Can anyone spot anything I'm doing wrong?

Posted

In modulesettings.asp set DataType = 2

 

now in DatabasePath.asp enter your SQL Server details and then try to access the booking system this should be ok then.

 

You should not need to edit or change any other files for connecting to SQL Server

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...