Difference between revisions of "WebCalendar"

From Remeis-Wiki
Jump to navigation Jump to search
(Created page with "This is a lose collection of information regarding the web calendar. Currently we use [https://github.com/craigk5n/webcalendar?tab=readme-ov-file k5n's php implementation] wit...")
 
Line 9: Line 9:
  
 
Calendar_I is what was as of this writing. Check include/settings.php in the WebCalendar folder to see what is actually used right now.
 
Calendar_I is what was as of this writing. Check include/settings.php in the WebCalendar folder to see what is actually used right now.
 +
 +
== Update script ==
 +
 +
After backing the data base unpack the new version into a new folder, set the apache address (remember it is in puppet), and go through the install script. Make sure that 'includes/' is read/writeable by www-data! (and also the parent folder).
 +
 +
== PHP version ==
 +
 +
For PHP v7.4 only WebCalendar v1.9.8 seems to work. They are in the process of updating to PHP v8!
 +
 +
==
  
 
[[Category:Web Admin]]
 
[[Category:Web Admin]]

Revision as of 17:01, 9 August 2024

This is a lose collection of information regarding the web calendar. Currently we use k5n's php implementation with some custom changes (which might be possible to do in a better way, but I have no clue so far).

== Backing up database

The calendar user has no rights so you need to know the db admin login. Then you can do ``` mysqldump -uroot -p Calendar_I > Calendar_I.sql ```

Calendar_I is what was as of this writing. Check include/settings.php in the WebCalendar folder to see what is actually used right now.

Update script

After backing the data base unpack the new version into a new folder, set the apache address (remember it is in puppet), and go through the install script. Make sure that 'includes/' is read/writeable by www-data! (and also the parent folder).

PHP version

For PHP v7.4 only WebCalendar v1.9.8 seems to work. They are in the process of updating to PHP v8!

==