426

(2 replies, posted in Suggestions)

Map View and heatmap sounds good, but how would you like to map events on a "date" background. In other words what should the dimensions of the background be? Date/time is a single dimension and for a heatmap we need two.
More details please.
Roel

427

(9 replies, posted in Need Help)

At the same line you should add "<br>{$evt['xf1]}" just before the "\n" at the end.
Roel

428

(9 replies, posted in Need Help)

Okay, here we go . . .
Edit the file "views/month.php" and replace line 46:

echo "{$chBox}<span {$onClick}{$popAttr}>{$dTime} {$evt['tix']}\n";

by

echo "{$chBox}<span {$onClick}{$popAttr}>{$dTime} {$evt['tix']}<br>{$evt['ven']}\n";

Now you will see the venue on a second line for all events in month view.
If you want the venue to be shown on the same line as the title, replace the "<br>" by a space character.
Roel

We've tested the calendar with Opera version 56.0.3051.36 and all functions fine.

Roel

430

(6 replies, posted in Problems)

Hi Jacek,

I've sent you an email concerning your last post.

Roel

431

(6 replies, posted in Problems)

Hi Jacek,

Could you give us a link to your calendar, so that we can see what exactly happens or does not happen?

Roel

432

(12 replies, posted in Need Help)

If you really want to add a 5th sub-category, you should do a global search through all calendar scripts (for instance with the tool TextCrawler). for the database fields "subName", "subColor" and "subBgrnd" and then you will see that there are more files to modify. But as I said in my previous post: It ain't easy wink
Roel

433

(12 replies, posted in Need Help)

Hi Cornel,

I'm very sorry, but adding another sub-category is rather complicated, you will have to add several fields to the categories table in the database and you will need to modify several php scripts. Without good PHP skills this will be very difficult.
It's NOT just a matter of adding an option to the drop down menu sad
Roel

434

(4 replies, posted in Need Help)

Yes, that could be interesting.
This would need a bit of development from our side, in particular to make sure that integrity of the calendar is not at stake.

Could you give me a contact at Sitelok (email address) who would be interested to work with us on this feature?
Regards,
Roel

435

(9 replies, posted in Need Help)

Hi there,
If what Dan writes is not good enough, I can send you a simple change to two or three files to add the venue to the time and description, but it will be a modification for you only. So you will have to be careful when upgrading the calendar in the future.
Let me know if you want the modification.
Roel

436

(7 replies, posted in Problems)

Yes, please do so; send me the credentials by email (Contact Us page).
Roel

What version of Opera are you using?
Roel

438

(7 replies, posted in Problems)

What browser are you using?
And what exactly happens, or does not happen, when you press the Add new category or Edit button on the Categories page?

Roel

Have you upgraded the calendar to v4.7.2?
Roel

440

(7 replies, posted in Problems)

Hi there,
I tried our test calendars with Chrome and all worked fine.
After upgrading to V4.7.2M, did you try refreshing the calendar page in Chrome. Just to be sure the cache is cleared.
Roel

441

(9 replies, posted in Need Help)

Hi Greg and John,

You will also find a short explanation in the admin_guide.html document in section 3c.
Please note that in version 4.7.2 there is a problem with the function to check / uncheck the "to-do" check mark.  In this forum, under Known Issues & Fixes you will find a post where you can download a zip-file with two files and instructions. Once you have followed the instructions, the check mark will work correctly.
Roel

Since improving the PHP session cookie mechanism in calendar version 4.7.2 the following functions are not working anymore:
- in the various calendar views the function to toggle the check mark of to-do events and
- in the Add/Edit Event window the function to remove event attachments.

To solve these problems download the .zip file here and follow the included instructions.

Roel

443

(5 replies, posted in Suggestions)

Hi Greg,
Ha ha, some people need more words than others smile
I actually have a lot of sympathy for your suggestion. I will analyze the impact and, if not too complicated, I will do it.
This however requires a change of the database table "groups" and therefore I can't send you a fix for this. So I will include this change in the next calendar version.
Roel

444

(5 replies, posted in Suggestions)

Hi Greg,

On the admin's Settings page, under Navigation bar, . . .
- with "Options panel menus" (2nd item) you can specify which menus are available in the Options panel; if all menus have been unchecked, the Options Panel button is not available.
- with "Available calendar views" (3rd item) you can specify which calendar views are available for public users and identified users
- with "View buttons on navigation bar" (4th item) you can specify which view buttons (e.g. Month, Week, etc.) are displayed on the navigation bar for public and identified users..
So if for instance you don't want to see the Options Panel button, you can uncheck all Option Panel menus and specify that instead e.g. a "Year", "Month" and "Week" button is displayed.

So, if I'm correct, the only thing you are asking is to have these settings not on the admin's Settings page, but on the User Group page, so that these settings can differ per user group. Am I correct?

Roel

Highlights
The previous calendar version 4.7.1 did not display correctly in the browsers Safari, Edge and IE. This is due to a problem with the PHP session cookie paths.
This problem has been solved in this new version 4.7.2.

We recommend to upgrade your calendar to v4.7.2 or to apply the fix posted in this forum under "Known Issues and Fixes".

Roel

446

(1 replies, posted in Problems)

Hi Stefan,

You are right, at all places on the Settings page (there are three places) where an email recipient list can be specified it should also be possible to enter a user name and the validation of specified user names should be consistent. In addition, the associated Help information should also reflect the possibility to specify user names.
I will update the files concerned and add them to the next calendar release.

Thanks for reporting this.
Roel

LuxCal version 4.7.1 does not display correctly in the browsers Safari, Edge and IE. This problem can be solved by upgrading to LuxCal version 4.7.2 (recommended), or by applying the following fix:
Edit file index.php in the calendar root, and change line 80 . . .
from:

$calPath = './'.basename(__DIR__);

to:

$calPath = rtrim(dirname($_SERVER["PHP_SELF"]),'/').'/';

and edit file css/css.php and change line 14 . . .
from:

$calPath = './'.basename(__DIR__);

to:

$calPath = rtrim(substr(dirname($_SERVER["PHP_SELF"]),0,-4),'/').'/';

You can also download the changed files  here.

Roel

Hello Stefan,

As long a you don't set the end time to 24:00 on the Settings page, it will work fine.
In the calendar source code I've changed it as follows.
File "common/dtpicker.js, line 153 . . .
from:

for (var i=dwStartH; i<dwEndH; i++){

to:

for (var i=dwStartH; i<=Math.min(dwEndH,23); i++){

So it will be included in the next calendar version.

Roel

449

(7 replies, posted in Need Help)

Hi Rabalupe,

I assume you have installed version 4.7.1 (the version I released yesterday). If not, I would strongly suggest to upgrade. Both the MySQL and the SQLite version can easily cope with a few thousand users per hour! So, no need to worry wink

Roel

Hello Stefan & John,

Hmm . . . I could add one more line "22:00 22:15 22:30 22:45", but then I will have to make an exception for 24:00, because this is not a valid time (valid times: 00:00 - 23:59).
Is that  what you are looking for? Any thoughts, suggestions?

Roel