Hi Laur (and JMS),
Are you Laurentiu Bubuianu who updated the Romanian language files last year?
If so, i could maybe send you both a proposal by email, based on the initial request in the first post of this thread
Roel
You are not logged in. Please login or register.
LuxCal Web Calendar → Posts by Roel
Hi Laur (and JMS),
Are you Laurentiu Bubuianu who updated the Romanian language files last year?
If so, i could maybe send you both a proposal by email, based on the initial request in the first post of this thread
Roel
Hi there,
We're considering the implementation of your request. Manual entry of email addresses, phone numbers and Telegram chat IDs can be rather cumbersome and is prone to typos. So we are looking into a possibility to pick recipients from a list.
Roel
I agree it would be useful if the user could select/change the order of the posts: up=>down or down=>up.
This is currently not possible.
This forum uses punBB and is not supported anymore, so I guess I will have to implement this feature myself.
Maybe I will give it a try when I have a spare moment, but I don't know when this will be.
Roel
For those having the same issue, this is the solution.
Edit the file "common/header.php" and on line 306 replace the first word "sequence" by "ID". So the line should look as follows:
$stH = dbQuery("SELECT `name`,`ID`,`color`,`bgColor` FROM `categories`".$where." ORDER BY `sequence`");
Roel
Hi David,
I checked again our test calendars. When I select one single category in the Options Panel and thereafter open the Event window to add a new event, the default category in the Category drop-down menu is the category selected in the Options Panel. Apparently this is not what you are experiencing, which is surprising. In particular because I also checked the PHP code and see that when one single category is selected it definitively takes this category as default when adding a new event.
Are you using the latest calendar version 5.3.2?
Would it be possible to send me the URL of your calendar (by email) and create a temporary account for me with admin rights?
Roel
Hi there,
When in the Options Panel you have selected only one category, then when adding a new event the default category will always be the category selected in the Options Panel. When more, or all, categories have been selected in the Options panel, the default category is the first in the drop-down menu.
The possibility to specify a default category per user would indeed address the issue. I think however a default category should be put in the user groups, Why? Because in the user groups you can already specify which categories a user in a particular group can see and add/edit.
If then you want a user (or group of users) to add events in a specific category, you can create a dedicated user group for them.
Would that solve your issue?
Roel
Yes, it will be in the future LuxCal versions
Roel
The auto-complete feature is not yet on our To Do list. I see it could be useful for you, but it is a lot o programming and so far there was not much demand for it.
Roel
That's weird indeed.
If you want the search to be always case-insensitive, edit the file "pages/search.php" and . . .
change line 118 from:
$schString = str_replace('&', '%', "%{$schText}%");
to
$schString = strtoupper(str_replace('&', '%', "%{$schText}%"));
and change lines 124 - 128 from:
if (in_array(0, $eF) or in_array(1, $eF)) { $filter .= "e.`title` LIKE '{$schString}'"; } //Title
if (in_array(0, $eF) or in_array(2, $eF)) { $filter .= ((substr($filter, -1) == '(') ? '' : ' OR ')."e.`venue` LIKE '{$schString}'"; } //venue
if (in_array(0, $eF) or in_array(3, $eF)) { $filter .= ((substr($filter, -1) == '(') ? '' : ' OR ')."e.`text1` LIKE '{$schString}'"; } //text field 1
if (in_array(0, $eF) or in_array(4, $eF)) { $filter .= ((substr($filter, -1) == '(') ? '' : ' OR ')."e.`text2` LIKE '{$schString}'"; } //text field 2
if (in_array(0, $eF) or in_array(5, $eF)) { $filter .= ((substr($filter, -1) == '(') ? '' : ' OR ')."e.`text3` LIKE '{$schString}'"; } //text field 3
to
if (in_array(0, $eF) or in_array(1, $eF)) { $filter .= "UPPER(e.`title`) LIKE '{$schString}'"; } //Title
if (in_array(0, $eF) or in_array(2, $eF)) { $filter .= ((substr($filter, -1) == '(') ? '' : ' OR ')."UPPER(e.`venue`) LIKE '{$schString}'"; } //venue
if (in_array(0, $eF) or in_array(3, $eF)) { $filter .= ((substr($filter, -1) == '(') ? '' : ' OR ')."UPPER(e.`text1`) LIKE '{$schString}'"; } //text field 1
if (in_array(0, $eF) or in_array(4, $eF)) { $filter .= ((substr($filter, -1) == '(') ? '' : ' OR ')."UPPER(e.`text2`) LIKE '{$schString}'"; } //text field 2
if (in_array(0, $eF) or in_array(5, $eF)) { $filter .= ((substr($filter, -1) == '(') ? '' : ' OR ')."UPPER(e.`text3`) LIKE '{$schString}'"; } //text field 3
That's all.
Use cut and paste
Roel
I tried in our MySQL test calendars and for all fields the text search is case-sensitive.
I also looked in the PHP code and the searches in the different database fields are all done in the same way (with the MySQL "LIKE" operator).
Roel
Unfortunately LuxCal version 5.3.1 has the following problem on several pages: Clicking an event to open it doesn't work.
The solution is very simple, but since it requires a change on several pages (some10 pages), we decided to release a new version.
Users of the current version 5.3.1, who encounter these problems, are advised to upgrade to version 5.3.2.
We are sorry for the inconvenience.
Roel
Hi there,
This is not really a bug.
• For the SQLite version of the calendar the text search is always case-insensitive. That's the way the SQLite database works.
• For the MySQL version of the calendar it depends on the database. Some databases support case-sensitive text search and others don't.
Roel
When using the Search function, clicking an event in the search results to open the event does not work.
This problem can be solved by editing the file "pages/search.php" and change line 204 from . . .
$click = ($evt['mayE'] ? 'editE' : 'showE')."({$evt['eid']},'{$date}')";
to
$click = ($evt['mayE'] ? 'editE' : 'showE')."({$evt['eid']},`{$date}`)";
It's hard to see, but the single quotes around {$date} towards the end of the line have been replaced by backticks ( ` ).
(Back ticks can be found on a US/UK keyboard left upper corner next to the 1 key.)
Roel
Bonjour,
You found a bug!
This problem can be solved by editing the file "pages/search.php" and change line 204 from . . .
$click = ($evt['mayE'] ? 'editE' : 'showE')."({$evt['eid']},'{$date}')";
to
$click = ($evt['mayE'] ? 'editE' : 'showE')."({$evt['eid']},`{$date}`)";
It's hard to see, but the single quotes around {$date} at the end of the line have been replaced by backticks ( ` ).
(Back ticks can be found on a US/UK keyboard left upper corner next to the 1 key.)
Roel
If you have the SQLite version of the calendar installed and after upgrading you get an "Invalid calendar ID error, this can be solved as follows:
• In the database folder (default "db") change the uppercase characters in the database file name to lowercase characters
• In the lcconfig.php file in the calendar root folder, if uppercase characters are present in the default calendar name, change them to lowercase.
• Start the calendar (just once) with the ?cal=<calendar name> URL parameter. Where <calendar name> is the calendar name changed above.
Thereafter the problem should be solved.
Roel
When on the Settings page the 12-hour time format (am/pm) has been selected, then on the Add / Edit Event page the time picker doesn't work anymore.
This can be solved by editing the file /common/dtpicker.js and on lines 152 and 153 replace "const" by "var", as indicated below:
var am = apm[0].replace("a","am").replace("A","AM");
var pm = apm[0].replace("a","pm").replace("A","PM");
Roel
Hi there.
There are various possibilities to embed the LuxCal calendar in a webpage. It's all explained in the installation_guide.html, section 6.
If you need help, you should give us a detailed description f what goes wrong.
Roel
Because the LuxCal version 5.3.0 MySQL had some problems, both the MySQL and the SQLite versions have been withdrawn and replaced by version 5.3.1.
If you have downloaded LuxCal version 5.3.0, you should replace it by the new version 5.3.1.
We are sorry for the inconvenience.
In this new LuxCal version 5.3.1 you will find some interesting new features and improvements. Furthermore a number of technical issues have been addressed and a few bugs have been fixes.
As always, John from Denmark spent a lot of time beta testing this new version and helped to make the LuxCal Web Calendar a better product. Thanks again John!
Hereafter you will find a full summary of all changes since the previous LuxCal version 5.2.4.
New features / improvements
• When enabled on the Settings page, in the Event and Day Marker windows an emoji picker can be opened, which can be used to add emojis to the title and description fields.
• The event notification system has been revised. In addition to email and SMS notifications now also Telegram notifications are possible. Which service for notification is used is now determined by each individual user, rather than by the sending script. The user can select from the message services enabled on the Settings page via which service to receive notifications. The user can also select to receive notifications via more than one service, for instance both via email and Telegram messages. For more details see the admin_guide.html document.
• To give certain users calendar access for a limited duration, for each user account an expiry date can be specified. To do so one needs manager rights or up.
• On the admin's Edit Categories page you can now add a list with notification recipients to an event category. When on the calendar an event is added, edited or delete in this category, a notification will be sent to the recipients specified for the category. If the event editor is part of the recipients list, he/she will be excluded from the notifications to be sent. If the editor wants a notification as well, he/she can check "send notification now" in the Event window.
• On narrow displays in Month view the "Previous year" and "Next year" arrows in the navigation bar will float left and right respectively, so that they are further away from the normal "Previous" and "Next" arrows.
• The settings specifying the view buttons on the navigation bar for public and logged in users have been split in settings for large displays and settings for small displays. This way the admin can specify less buttons for small displays, so that the navigation bar on small displays fits on one line.
• As background information, on the Manage Database page a list with useful totals of database records is shown. Furthermore the length of the date fields have been limited to 10 characters.
• When not used the 'To approve', 'Upcoming' and 'Todo' side lists can now be disabled on the Settings page. This will result in less database accesses and faster calendar load times.
• When specified on the Settings page, a calendar logo will be displayed on the Log In page just below the Log In dialog box. The height of the logo can also be specified. The maximum width is 80% of the window width.
• The calendar can now remember multiple user log-ins from different devices. So for example when you log in from your mobile phone and from your desktop computer, while in both cases selecting "Remember me", the calendar will remember both log ins.
• When on the Thumbnails page a thumbnail is clicked, a "Copied to clipboard" notification is shown for some seconds.
• On the Thumbnail Images page, the Manage Thumbnails box has been given a bit more padding and the Submit button is horizontally centered now. Embellishment.
• The form on the Contact page has been redesigned. Embellishment
Technical issues
• Non-recurring events and recurring events are retrieved with one single database query, instead of two separate queries. This results in
faster calendar load times.
• Several code optimizations to speed up calendar load times.
• In the options menu, the entries in the calendar selection table were enclosed in redundant <div>-tags. <div>-tags removed.
• On the Settings page, in the Events section, for the Event drag and drop setting, the "enabled" radio button was followed by a stray '>' character. Character removed.
• In the JavaScript "onclick", "onmouseover" code, by using the back-tick character the code has been made more consistent, better readable and less prone to interference with quotes in text strings.
• For the so-called Displays, in the <script>-tags where the toolbox.js file is loaded the calendar version number is added to the toolbox.js, to ensure the loading of the last toolbox.js version.
• In the Add / Edit Event window, both Help question mark symbols (Description and To) have been replaced by more discrete question marks.
• On the admin's Database page, the number of characters in the date input fields has been limited to 10.
• In the list of sub-categories, the first entry (None) was hard coded and consequently the same in all languages. It's now taken from the language file (ui-<lang>.php).
• In all functions the unused global variables have been deleted. Cleaning up.
• Empty and duplicate entries are removed from the recipients list, before the list is used to send notifications.
• On the User Profile page, when a field contained an invalid value, the field was reloaded from the database so that the user could not see why the value was invalid. Solved.
• The regex $rxPhone updated, so that a mobile phone number must start with a + or a 0 (zero) character.
• Both pages Import Users and Export Users have been revised. The telegram chat ID has been added to imported and exported files. Further changes: When exporting all users, the Public User is skipped. When importing users, the error handling and reporting of the file to import has been improved.
• LuxCal versions 2.7 - 3.2 (older than 10 years) are not supported anymore and have been removed from the upgrade procedure. If someone is still using a version < 4.1 and needs help, LuxSoft should be contacted.
• On the Settings page, section Reminders - SMS, the validation of the calendar phone number has been added.
• In the saveSettings function, to avoid leading and trailing spaces, the values are trimmed before saving them to the DB settings table.
• In the right upper corner, on the navigation bar, the Log In link overlapped the Full Screen symbol and the User Menu was not aligned with the User name
• The Thumbnails page was not responsive and did not show correctly on a narrow screen device
• The current date and time have been removed from the header in email notifications because it was redundant. The email client already shows the date and time of email messages.
• To cope with emoji and other special characters, for the MySQL version the database collation is set to utf8mb4.
Bug fixes
• To check the current settings against the $defSet entries in the toolboxx.php file, the 'short-ternary' operator was used instead of the 'null coalescing' operator, which could result in showing wrong check box values on the Settings page, whilst the actual $set value was correct.
• In the Upcoming view events could not be clicked anymore to open or edit event details (due to nested single quotes). Solved.
• Thumbnail images in the onmouseover pop attribute could cause strange effects. In some PHP versions < 8.1 single quotes were not converted to HTML entities because ENT_QUOTES was missing in the htmlspecialchars PHP function.
• When updating the user profile data, the "User profile updated" message was shown in the error message color, instead of the confirmation message color (green).
• When a user self registered or asked for a new password, the confirmation message was shown in the error message color, instead of the confirmation message color (green).
Hi Chris,
Remove red shadow from links:
The line specifying "a:hover {text-shadow:0.2em 0.3em 0.2em #F88;}" cannot be line 21. I checked again and it actually is line 72 of the file css/css.php.
Curved edges:
I checked at "calendarforum", which is the website of my Danish friend who always helps testing new calendar versions, and saw no listing at all. Maybe you mean the round edges of the so called displays which you can see on the Demo -> Displays page of this site?
Thumbnails:
In the mean time I've added a notification "Copied to Clipboard" to the next LuxCal version, which will be released next month (March).
New Question:
If you want to get rid of the "Previous year" and "Next year" arrows, you should edit the file "views/month.php" and comment out (// at the start of the line) lines 84 and 85, starting with $arrowLL and $arrowRR respectively.
In the new Calendar version on narrow displays the "Previous Year" and "Next Year" arrows will will have more distance to the inner arrows.
Roel
I think in your admin account you ave specified English, so when you log in as admin, it will be English.
or . . . .
On the Settings page, section User Accounts you have selected "Restore last user selections". If so, it will remember the last language you have selected.
Is this thread about calendar version 5.2.4?
Roel
Yes please send me the luxcal.log content and if possible a link to the calendar
What is that invalid request issue? When does it appear? and waht is the exact message?
Roel
Hi Chris,
1. It's on line 73 of the file css/css.php. (a:hover {text-shadow:0.2em 0.3em 0.2em #F88;})
2. Which event listing? On what page? Huh, do we have a German event listing somewhere !?
3. Yeah, would be good. In the next LuxCal version there will be a "Copied to clipboard" prompt.
NOTE: I will think about this. We need the prefixes to avoid duplicate thumbnail image names.
Roel
The Default language on the Settings page is taken if a user has no language set in the user profile. For instance Public (not logged in) Users.
Roel
Hi there,
Could you go to the Settings page and click the Save Settings button t the top.
And then see if the problem is solved.
Roel
LuxCal Web Calendar → Posts by Roel