Jump to content

Recommended Posts

Posted

I'm trying to configure MRBS to use periods but all i'm getting is 30 min time slots, can anyone see what is wrong with this portion of the script please?

 

// TIMES SETTINGS

// --------------

 

// These settings are all set per area through MRBS. These are the default

// settings that are used when a new area is created.

 

// The "Times" settings are ignored if $enable_periods is TRUE.

 

// Resolution - what blocks can be booked, in seconds.

// Default is half an hour: 1800 seconds.

// $resolution = (30 * 60);

 

// Default duration - default length (in seconds) of a booking.

// Defaults to (60 * 60) seconds, i.e. an hour

// $default_duration = (60 * 60);

 

// Start and end of day.

// NOTE: The time between the beginning of the last and first

// slots of the day must be an integral multiple of the resolution,

// and obviously >=0.

 

 

// The default settings below (along with the 30 minute resolution above)

// give you 24 half-hourly slots starting at 07:00, with the last slot

// being 18:30 -> 19:00

 

// The beginning of the first slot of the day

// $morningstarts = 7; // must be integer in range 0-23

// $morningstarts_minutes = 0; // must be integer in range 0-59

 

// The beginning of the last slot of the day

// $eveningends = 18; // must be integer in range 0-23

// $eveningends_minutes = 00; // must be integer in range 0-59

 

// Example 1.

// If resolution=3600 (1 hour), morningstarts = 8 and morningstarts_minutes = 30

// then for the last period to start at say 4:30pm you would need to set eveningends = 16

// and eveningends_minutes = 30

 

// Example 2.

// To get a full 24 hour display with 15-minute steps, set morningstarts=0; eveningends=23;

// eveningends_minutes=45; and resolution=900.

 

// This is the maximum number of rows (timeslots or periods) that one can expect to see in the day

// and week views. It is used by mrbs.css.php for creating classes. It does not matter if it

// is too large, except for the fact that more CSS than necessary will be generated. (The variable

// is ignored if $times_along_top is set to TRUE).

// $max_slots = 60;

 

/*******************

* Calendar settings

*******************/

 

// Note: Be careful to avoid specify options that displays blocks overlaping

// the next day, since it is not properly handled.

 

// This setting controls whether to use "clock" based intervals (FALSE and

// the default) or user defined periods (TRUE). If user-defined periods

// are used then $resolution, $morningstarts, $eveningends,

// $eveningends_minutes and $twentyfourhour_format are ignored.

$enable_periods = TRUE;

$periods[] = "Period 1";

$periods[] = "Period 2";

$periods[] = "Period 3";

$periods[] = "Period 4";

$periods[] = "Period 5";

$periods[] = "Period 6";

$periods[] = "After School";

 

// Resolution - what blocks can be booked, in seconds.

// Default is half an hour: 1800 seconds.

// $resolution = 1800;

 

// Default duration - default length (in seconds) of a booking.

// Ignored if $enable_periods is TRUE

// Defaults to (60 * 60) seconds, i.e. an hour

// $default_duration = (60 * 60);

 

// Start and end of day.

// NOTE: The time between the beginning of the last and first

// slots of the day must be an integral multiple of the resolution,

// and obviously >=0.

 

 

// The default settings below (along with the 30 minute resolution above)

// give you 24 half-hourly slots starting at 07:00, with the last slot

// being 18:30 -> 19:00

 

// The beginning of the first slot of the day

//$morningstarts = 7; // must be integer in range 0-23

$morningstarts_minutes = 0; // must be integer in range 0-59

 

// The beginning of the last slot of the day

// $eveningends = 18; // must be integer in range 0-23

$eveningends_minutes = 30; // must be integer in range 0-59

 

// Example 1.

// If resolution=3600 (1 hour), morningstarts = 8 and morningstarts_minutes = 30

// then for the last period to start at say 4:30pm you would need to set eveningends = 16

// and eveningends_minutes = 30

 

// Example 2.

// To get a full 24 hour display with 15-minute steps, set morningstarts=0; eveningends=23;

// eveningends_minutes=45; and resolution=900.

 

// Do some checking

$start_first_slot = ($morningstarts*60) + $morningstarts_minutes; // minutes

$start_last_slot = ($eveningends*60) + $eveningends_minutes; // minutes

$start_difference = ($start_last_slot - $start_first_slot) * 60; // seconds

if (($start_difference < 0) or ($start_difference%$resolution != 0))

{

die('Configuration error: start and end of day incorrectly defined');

}

 

// Define the name or description for your periods in chronological order

// For example:

// $periods[] = "Period 1"

// $periods[] = "Period 2"

// ...

// or

// $periods[] = "09:15 - 09:50"

// $periods[] = "09:55 - 10:35"

// ...

//   is used to ensure that the name or description is not wrapped

// when the browser determines the column widths to use in day and week

// views

//

// NOTE: MRBS assumes that the descriptions are valid HTML and can be output

// directly without any encoding. Please ensure that any special characters

// are encoded, eg '&' to '&', '>' to '>', lower case e acute to

// 'é' or 'é', etc.

 

// NOTE: The maximum number of periods is 60. Do not define more than this.

 

 

 

// NOTE: The maximum number of periods is 60. Do not define more than this.

 

// Do some checking

if (count($periods) > 60)

{

die('Configuration error: too many periods defined');

}

 

// Start of week: 0 for Sunday, 1 for Monday, etc.

$weekstarts = 1;

 

// Trailer date format: 0 to show dates as "Jul 10", 1 for "10 Jul"

$dateformat = 1;

 

// Time format in pages. 0 to show dates in 12 hour format, 1 to show them

// in 24 hour format

$twentyfourhour_format = 0;

 

Posted

HI

 

This is my config

 

<?php

 

#

###################

# Calendar settings

###################

# Note: Be careful to avoid specify options that displays blocks overlaping

# the next day, since it is not properly handled.

 

# This setting controls whether to use "clock" based intervals (FALSE and

# the default) or user defined periods (TRUE). If user-defined periods

# are used then $resolution, $morningstarts, $eveningends,

# $eveningends_minutes and $twentyfourhour_format are ignored.

$enable_periods = TRUE;

 

# Resolution - what blocks can be booked, in seconds.

# Default is half an hour: 1800 seconds.

$resolution = 1800;

 

# Start and end of day, NOTE: These are integer hours only, 0-23, and

# morningstarts must be < eveningends. See also eveningends_minutes.

$morningstarts = 9;

$eveningends = 15;

 

# Minutes to add to $morningstarts to get to the real start of the day.

# Be sure to consider the value of $eveningends_minutes if you change

# this, so that you do not cause a day to finish before the start of

# the last period. For example if resolution=3600 (1 hour)

# morningstarts = 8 and morningstarts_minutes = 30 then for the last

# period to start at say 4:30pm you would need to set eveningends = 16

# and eveningends_minutes = 30

#$ morningstarts_minutes = 0;

 

# Minutes to add to $eveningends hours to get the real end of the day.

# Examples: To get the last slot on the calendar to be 16:30-17:00, set

# eveningends=16 and eveningends_minutes=30. To get a full 24 hour display

# with 15-minute steps, set morningstarts=0; eveningends=23;

# eveningends_minutes=45; and resolution=900.

$eveningends_minutes = 30;

 

# Define the name or description for your periods in chronological order

# For example:

# $periods[] = "Period 1"

# $periods[] = "Period 2"

# ...

# or

#$periods[] = "09:15 - 09:50"

#$periods[] = "10:05 - 10:55"

# ...

#   is used to ensure that the name or description is not wrapped

# when the browser determines the column widths to use in day and week

# views

 

 

$periods[] = "Period 1";

$periods[] = "Period 2";

 

$periods[] = "Period 3";

$periods[] = "Period 4";

$periods[] = "Dinner ";

 

$periods[] = "Period 5";

$periods[] = "Period 6";

$periods[] = "Evening ";

 

# Start of week: 0 for Sunday, 1 for Monday, etc.

$weekstarts = 0;

 

# Trailer date format: 0 to show dates as "Jul 10", 1 for "10 Jul"

$dateformat = 0;

 

# Time format in pages. 0 to show dates in 12 hour format, 1 to show them

# in 24 hour format

$twentyfourhour_format = 1;

 

 

?>

Posted
I keep reading this header and thinking that we've turned into a forum where ladies can seek help for feminine problems...

Lol, was cleverly posted to get some attention, like a damsel in distress.

 

Thanks Ricki just copied and pasted your script over my calendar setting but still the same issue, 30 min slots instead of the specified period - is there any other setting which could be overiding the $enable_periods = TRUE; variable?

Posted (edited)
Yes, that's why I asked you which config file you were changing.

 

Sorry, damn wheel mouse scrolled to fast past your reply, think thats justification to get a strokey apple one! Sorted the "Meeting Room Booking System" title thanks, the file i'm changing is the config.inc.php (in root folder) - when i make changes to the $twentyfourhour_format = 0; variable it changed the 24 hour times on the live site, but still no joy with replacing these with specified periods.

 

Realistically this is all i need to get it working but it's not doing it :

 

$enable_periods = true;

unset($periods); // Include this line when copying to config.inc.php

$periods[] = "Period 1";

$periods[] = "Period 2";

$periods[] = "Period 3";

$periods[] = "Period 4";

$periods[] = "Dinner ";

$periods[] = "Period 5";

$periods[] = "Period 6";

$periods[] = "Evening ";

Edited by chrisjako
Posted

It's been a while since I set up an MRBS install, but this should do what you want it to do:

 

/*******************
* Calendar settings
*******************/

// Note: Be careful to avoid specify options that displays blocks overlaping
// the next day, since it is not properly handled.

// This setting controls whether to use "clock" based intervals (FALSE and
// the default) or user defined periods (TRUE).  If user-defined periods
// are used then $resolution, $morningstarts, $eveningends,
// $eveningends_minutes and $twentyfourhour_format are ignored.
$enable_periods = True;


// TIMES SETTINGS
// --------------

// These settings are all set per area through MRBS.   These are the default
// settings that are used when a new area is created.

// The "Times" settings are ignored if $enable_periods is TRUE.

// Resolution - what blocks can be booked, in seconds.
// Default is half an hour: 1800 seconds.
$resolution = (60 * 60);  // DEFAULT VALUE FOR NEW AREAS

// If the following variable is set to TRUE, the resolution of bookings
// is forced to be the value of $resolution, rather than the resolution set
// for the area in the database.
$force_resolution = FALSE;

// Default duration - default length (in seconds) of a booking.
// Defaults to (60 * 60) seconds, i.e. an hour
$default_duration = (60 * 60);  // DEFAULT VALUE FOR NEW AREAS

// Start and end of day.
// NOTE:  The time between the beginning of the last and first
// slots of the day must be an integral multiple of the resolution,
// and obviously >=0.


// The default settings below (along with the 30 minute resolution above)
// give you 24 half-hourly slots starting at 07:00, with the last slot
// being 18:30 -> 19:00

// The beginning of the first slot of the day (DEFAULT VALUES FOR NEW AREAS)
//$morningstarts         = 9;   // must be integer in range 0-23
//$morningstarts_minutes = 0;   // must be integer in range 0-59

// The beginning of the last slot of the day (DEFAULT VALUES FOR NEW AREAS)
//$eveningends           = 15;  // must be integer in range 0-23
//$eveningends_minutes   = 05;   // must be integer in range 0-59

// Example 1.
// If resolution=3600 (1 hour), morningstarts = 8 and morningstarts_minutes = 30 
// then for the last period to start at say 4:30pm you would need to set eveningends = 16
// and eveningends_minutes = 30

// Example 2.
// To get a full 24 hour display with 15-minute steps, set morningstarts=0; eveningends=23;
// eveningends_minutes=45; and resolution=900.

// This is the maximum number of rows (timeslots or periods) that one can expect to see in the day
// and week views.    It is used by mrbs.css.php for creating classes.    It does not matter if it
// is too large, except for the fact that more CSS than necessary will be generated.  (The variable
// is ignored if $times_along_top is set to TRUE).
$max_slots = 60;


// PERIODS SETTINGS
// ----------------

// The "Periods" settings are ignored if $enable_periods is FALSE.

// Define the name or description for your periods in chronological order
// For example:
// $periods[] = "Period 1"
// $periods[] = "Period 2"
// ...
// or
// $periods[] = "09:15 - 09:50"
// $periods[] = "09:55 - 10:35"
// ...
//   is used to ensure that the name or description is not wrapped
// when the browser determines the column widths to use in day and week
// views
//
// NOTE:  MRBS assumes that the descriptions are valid HTML and can be output
// directly without any encoding.    Please ensure that any special characters
// are encoded, eg '&' to '&', '>' to '>', lower case e acute to 
// 'é' or 'é', etc.

// NOTE:  The maximum number of periods is 60.   Do not define more than this.
unset($periods);    // Include this line when copying to config.inc.php
$periods[] = "Period 1";
$periods[] = "Period 2";
$periods[] = "Period 3";
$periods[] = "Period 4";
$periods[] = "Dinner";
$periods[] = "Period 5";
$periods[] = "Period 6";
$periods[] = "Evening"; 
// NOTE:  The maximum number of periods is 60.   Do not define more than this.


// Page refresh time (in seconds). Set to 0 to disable
$refresh_rate = 600;

// Trailer type.   FALSE gives a trailer complete with links to days, weeks and months before
// and after the current date.    TRUE gives a simpler trailer that just has links to the
// current day, week and month.
$simple_trailer = TRUE;

Posted

Pasted those settings over mine and made no difference, surely something else must be dominating the $enable_periods = True; variable?

 

here is the script without the commenting :

 

<?php

// $morningstarts = 9; # Start and end of day, NOTE: These are integer hours only, 0-23, and

// $eveningends = 17; # morningstarts must be < eveningends. See also eveningends_minutes.

// $eveningends_minutes = 30;

// $weekstarts = 0; //# Start of week: 0 for Sunday, 1 for Monday, etc.

// $dateformat = 0; # Trailer date format: 0 to show dates as "Jul 10", 1 for "10 Jul"

// $twentyfourhour_format = 0; # Time format in pages. 0 to show dates in 12 hour format, 1 to show them # in 24 hour format

$timezone = "Europe/London";

$dbsys = "mysql";

$db_host = "localhost";

$db_database = "mrbs";

$db_login = "root";

$db_password = ''*******';

$db_tbl_prefix = "mrbs_";

$auth["type"] = "ldap"; // How to validate the user/password. One of "none"

$ldap_host = "sjdc1.baeda.local";

$ldap_port = 389;

$ldap_v3 = true;

$ldap_tls = false;

$ldap_base_dn = "OU=Staff,DC=baeda,DC=local";

$ldap_user_attrib = "sAMAccountName";

$ldap_dn_search_attrib = "sAMAccountName";

$ldap_dn_search_dn = "CN=macbind,OU=St Josephs,OU=Staff,DC=baeda,DC=local";

$ldap_dn_search_password = "*********";

$auth["session_cookie"]["secret"] = "This isn't a very good secret!";

$auth["session_cookie"]["session_expire_time"] = (60*60*24*30); // 30 days

$auth["session_cookie"]["include_ip"] = TRUE;

$auth["session_php"]["session_expire_time"] = (60*60*24*30); // 30 days

unset($auth["admin"]); // Include this when copying to config.inc.php

$auth["admin"][] = "127.0.0.1"; // localhost IP address. Useful with IP sessions.

$auth["admin"][] = "administrator";

$auth["admin"][] = "cjakubowski"; // A user name from the user list. Useful

$auth["realm"] = "mrbs";

$auth["prog"] = "";

$auth["params"] = "";

$max_level = 2;

$min_user_editing_level = 2;

$auth['only_admin_can_book'] = FALSE;

$auth['only_admin_can_book_repeat'] = FALSE;

$auth['only_admin_can_book_multiday'] = FALSE;

$auth['only_admin_can_select_multiroom'] = FALSE;

$auth['only_admin_can_see_other_users'] = FALSE;

$auth['deny_public_access'] = FALSE;

$mrbs_admin = "C Jakubowski";

$mrbs_admin_email = "[email protected]"; // NOTE: there are more email addresses in $mail_settings below

$mrbs_company = "St Josephs Catholic College"; // This line must always be uncommented ($mrbs_company is used in various places)

$mrbs_company_more_info = "ICT Suite Booking System"; // e.g. "XYZ Department"

$mrbs_company_url = "http://www.stjcc.co.uk";

$url_base = "http://sjweb1/roombooking";

$weekstarts = 1;

$hidden_days = array(0,6);

$dateformat = 1;

$search["count"] = 20;

$refresh_rate = 0;

$simple_trailer = TRUE;

$area_list_format = "select";

$monthly_view_entries_details = "both";

$view_week_number = FALSE;

$times_along_top = FALSE;

$row_labels_both_sides = TRUE;

$default_view = "day";

$default_room = 0;

$clipped = TRUE;

$month_cell_scrolling = TRUE;

require_once "language.inc"; // DO NOT DELETE THIS LINE

// $typel["A"] = "A";

// $typel["B"] = "Timetabled";

// $typel["C"] = "C";

$typel["D"] = "Timetabled";

$typel["E"] = get_vocab("External");

// $typel["F"] = "F";

$typel["G"] = "Reservation";

// $typel["H"] = "H";

$typel["I"] = get_vocab("Internal");

// $typel["J"] = "Timetabled";

$enable_periods = True;

$resolution = (60 * 60); // DEFAULT VALUE FOR NEW AREAS

$force_resolution = FALSE;

$default_duration = (60 * 60); // DEFAULT VALUE FOR NEW AREAS

$max_slots = 60;

unset($periods); // Include this line when copying to config.inc.php

$periods[] = "Period 1";

$periods[] = "Period 2";

$periods[] = "Period 3";

$periods[] = "Period 4";

$periods[] = "Dinner";

$periods[] = "Period 5";

$periods[] = "Period 6";

$periods[] = "Evening";

$refresh_rate = 600;

$simple_trailer = TRUE;

?>

Posted (edited)

The file I changed is config.inc.php in the MRBS blocks folder; i.e. Blocks>MRBS>web. These are the changes I made to the code

# Define the name or description for your periods in chronological order
# For example:
# $periods[] = "Period 1"
# $periods[] = "Period 2"
# ...
# or
# $periods[] = "09:15 - 09:50"
# $periods[] = "09:55 - 10:35"
# ...
#   is used to ensure that the name or description is not wrapped
# when the browser determines the column widths to use in day and week
# views

$periods[] = "Period 1 08:30 - 09:30";
$periods[] = "Period 2 09:30 - 10.25";
$periods[] = "   ";
$periods[] = " ";
$periods[] = "Period 3 11:00 - 12:00";
$periods[] = "Period 4 12:00 - 13:00";
$periods[] = " ";
$periods[] = "Period 5 13:45 - 14:45";
#$periods[] = "Period 9";
#$periods[] = "Period 10";
#$periods[] = "Period 11";
#$periods[] = "Period 12";

 

Some of the periods above may appear to contain nothing more than a non-breaking space, but this allows me to add the details of these periods via the GUI.

HTH

Edited by beeswax
Posted (edited)

its the same file i'm editing, i've stripped the code down to bare basics now and i'ts still not showing periods! it's driving me nuts :

 

<?php

 

// $morningstarts = 9; # Start and end of day, NOTE: These are integer hours only, 0-23, and

// $eveningends = 17; # morningstarts must be < eveningends. See also eveningends_minutes.

// $eveningends_minutes = 30;

// $weekstarts = 0; //# Start of week: 0 for Sunday, 1 for Monday, etc.

// $dateformat = 0; # Trailer date format: 0 to show dates as "Jul 10", 1 for "10 Jul"

// $twentyfourhour_format = 0; # Time format in pages. 0 to show dates in 12 hour format, 1 to show them # in 24 hour format

$timezone = "Europe/London";

$dbsys = "mysql";

$db_host = "localhost";

$db_database = "mrbs";

$db_login = "root";

$db_password = "*******";

$db_tbl_prefix = "mrbs_";

$auth["type"] = "ldap"; // How to validate the user/password. One of "none"

$ldap_host = "sjdc1.baeda.local";

$ldap_port = 389;

$ldap_v3 = true;

$ldap_tls = false;

$ldap_base_dn = "OU=Staff,DC=baeda,DC=local";

$ldap_user_attrib = "sAMAccountName";

$ldap_dn_search_attrib = "sAMAccountName";

$ldap_dn_search_dn = "CN=macbind,OU=St Josephs,OU=Staff,DC=baeda,DC=local";

$ldap_dn_search_password = "*******";

$auth["session_cookie"]["secret"] = "This isn't a very good secret!";

$auth["session_cookie"]["session_expire_time"] = (60*60*24*30); // 30 days

$auth["session_cookie"]["include_ip"] = TRUE;

$auth["session_php"]["session_expire_time"] = (60*60*24*30); // 30 days

unset($auth["admin"]); // Include this when copying to config.inc.php

$auth["admin"][] = "127.0.0.1"; // localhost IP address. Useful with IP sessions.

$auth["admin"][] = "administrator";

$auth["admin"][] = "cjakubowski"; // A user name from the user list. Useful

$auth["realm"] = "mrbs";

$auth["prog"] = "";

$auth["params"] = "";

$max_level = 2;

$min_user_editing_level = 2;

$auth['only_admin_can_book'] = FALSE;

$auth['only_admin_can_book_repeat'] = FALSE;

$auth['only_admin_can_book_multiday'] = FALSE;

$auth['only_admin_can_select_multiroom'] = FALSE;

$auth['only_admin_can_see_other_users'] = FALSE;

$auth['deny_public_access'] = FALSE;

$mrbs_admin = "C Jakubowski";

$mrbs_admin_email = "[email protected]"; // NOTE: there are more email addresses in $mail_settings below

$mrbs_company = "St Josephs Catholic College"; // This line must always be uncommented ($mrbs_company is used in various places)

$mrbs_company_more_info = "ICT Suite Booking System"; // e.g. "XYZ Department"

$mrbs_company_url = "http://www.stjcc.co.uk";

$url_base = "http://sjweb1/roombooking/";

#$weekstarts = 1;

#$hidden_days = array(0,6);

#$dateformat = 1;

#$search["count"] = 20;

#$refresh_rate = 0;

#$simple_trailer = TRUE;

#$area_list_format = "select";

#$monthly_view_entries_details = "both";

#$view_week_number = FALSE;

#$times_along_top = FALSE;

#$row_labels_both_sides = TRUE;

#$default_view = "day";

#$default_room = 0;

#$clipped = TRUE;

#$month_cell_scrolling = TRUE;

require_once "language.inc"; // DO NOT DELETE THIS LINE

// $typel["A"] = "A";

// $typel["B"] = "Timetabled";

// $typel["C"] = "C";

$typel["D"] = "Timetabled";

$typel["E"] = get_vocab("External");

// $typel["F"] = "F";

$typel["G"] = "Reservation";

// $typel["H"] = "H";

$typel["I"] = get_vocab("Internal");

// $typel["J"] = "Timetabled";

$enable_periods = True;

#$resolution = (60 * 60); // DEFAULT VALUE FOR NEW AREAS

#$force_resolution = FALSE;

#$default_duration = (60 * 60); // DEFAULT VALUE FOR NEW AREAS

#$max_slots = 60;

unset($periods); // Include this line when copying to config.inc.php

$periods[] = "Period 1 08:30 - 09:30";

$periods[] = "Period 2 09:30 - 10.25";

$periods[] = "   ";

$periods[] = " ";

$periods[] = "Period 3 11:00 - 12:00";

$periods[] = "Period 4 12:00 - 13:00";

$periods[] = " ";

$periods[] = "Period 5 13:45 - 14:45";

#$periods[] = "Period 9";

#$periods[] = "Period 10";

#$periods[] = "Period 11";

#$periods[] = "Period 12";

#$simple_trailer = TRUE;

?>

Edited by chrisjako
Posted

$periods[] = "Period 1";

$periods[] = "Period 2";

 

$periods[] = "Period 3";

$periods[] = "Period 4";

$periods[] = "Dinner ";

 

$periods[] = "Period 5";

$periods[] = "Period 6";

$periods[] = "Evening ";

 

Try removing the   from Dinner and Evening

 

$periods[] = "Period 1";

$periods[] = "Period 2";

 

$periods[] = "Period 3";

$periods[] = "Period 4";

$periods[] = "Dinner";

 

$periods[] = "Period 5";

$periods[] = "Period 6";

$periods[] = "Evening";

  • 1 month later...
Posted

Hi Chrisjako,

 

I have tried all that has been described above and I cant seem to get anything to work. Have you had any luck?

 

Thanks,

TBD

Posted

Probably wont help as I tried at my end and changing didn't remove my periods, but I figured its worth a try....

 

Have you tried TRUE instead of True for enable_periods?

Posted
Neither worked for me. Will any of settings in the systemdefaults config or in the database effect the periods?
Posted

I've checked all my MRBS files and the database. While I can find a few references using enable_periods it is set nowhere else. Sorry, but I can't think of anywhere else it could be.

 

Is this a fresh install? If so have you tried creating from scratch again, just in case there is some silly syntax error causing issues...

Posted
Thanks Alex I found that there are more settings under the each area and here you need to enable the periods, I had not done this. I have now and it works...

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...