ICSviewer 4.2 #icsviewer #ical #calendar #viewer #xojo #event #planning #planned #timeline
Monday, Dec 28 2020, 14:08 Calendar, Database, iCal, Mac OS X, MySQL, software, Xojo Permalink
My ical/ics calendar file viewer and exporter ICS Viewer was updated
v4.2
Bug fixes:
- In rare occasions empty lines are created inside a calendar file. These are now skipped.

My ical/ics calendar file viewer and exporter ICS Viewer was updated
v4.2
Bug fixes:
- In rare occasions empty lines are created inside a calendar file. These are now skipped.
Comments
ICSviewer 4.1
Friday, Jul 03 2020, 14:03 Calendar, Database, iCal, Mac OS X, MySQL, software, Xojo Permalink
My ical/ics calendar file viewer and exporter ICS Viewer was updated
v4.1
Bug fixes:
- When the connection to MySQL fails, the error message dialog would leave the sheet window hang without any controls.

My ical/ics calendar file viewer and exporter ICS Viewer was updated
v4.1
Bug fixes:
- When the connection to MySQL fails, the error message dialog would leave the sheet window hang without any controls.
ICSviewer 3.9
Thursday, May 16 2019, 15:00 Calendar, Database, Event, iCal, Linux, Mac OS X, MySQL, programming, REALstudio, software, Windows, Xojo Permalink
My ical/ics calendar file viewer ICS Viewer is updated to version 3.9
v3.9
Bug fixes:
- Fixed a possible hang when choosing a date-range.

My ical/ics calendar file viewer ICS Viewer is updated to version 3.9
v3.9
Bug fixes:
- Fixed a possible hang when choosing a date-range.
ICSviewer 3.8
Friday, Feb 01 2019, 12:14 Calendar, Database, Event, iCal, Linux, Mac OS X, MySQL, programming, REALstudio, software, Windows, Xojo Permalink
My ical/ics calendar file viewer ICS Viewer is updated to version 3.8
v3.8
Bug fixes:
- 'Last month' preference showed 12 months earlier, when in January of a new year.

My ical/ics calendar file viewer ICS Viewer is updated to version 3.8
v3.8
Bug fixes:
- 'Last month' preference showed 12 months earlier, when in January of a new year.
ICSviewer 3.7
Monday, Sep 03 2018, 23:18 Calendar, Database, Event, iCal, Linux, Mac OS X, MySQL, programming, REALstudio, software, Windows, Xojo Permalink
My ical/ics calendar file viewer ICS Viewer is updated to version 3.7
v3.7
Bug fixes:
- A hang with the new initial date-range preference setting 'Current month' has been fixed.
- The possibility to use the new initial date-range preference setting has been fixed.
- Various UI improvements in the preferences window.

My ical/ics calendar file viewer ICS Viewer is updated to version 3.7
v3.7
Bug fixes:
- A hang with the new initial date-range preference setting 'Current month' has been fixed.
- The possibility to use the new initial date-range preference setting has been fixed.
- Various UI improvements in the preferences window.
[Repair] MySQL Upgrade on Mac OS X
Tuesday, Jun 27 2017, 10:40 Apple, Database, Mac OS X, MySQL, server, Webserver PermalinkSome time ago I did a MySQL upgrade without thinking ... that was not funny. So I retraced what I did to get the new version up and running and wrote it down as a sequence of steps to follow, when I need to upgrade to the next higher version.
I published these steps on the page [Repair] MySQL Upgrade (Mac OS X) , so they might be of help to you too.
I published these steps on the page [Repair] MySQL Upgrade (Mac OS X) , so they might be of help to you too.
CSVviewer - Quicklook CSV files #utility #macos #linux #windows #csv #database
Tuesday, Sep 27 2016, 08:58 Database, FileMakerPro, Linux, Mac OS X, MySQL, software, Windows, Xojo PermalinkCSVviewer (formerly known as TABviewer) is a tool which shows the contents of text files, where data of each line is equally separated by either a semicolon, a comma or a tab-character.
You can download it here.

You can download it here.

Quickly transfer MySQL databases to a new server
Friday, Aug 08 2014, 10:36 Database, Linux, Mac OS X, MySQL, Unix PermalinkAgain I needed to transfer all data from one server to another. I knew I documented the transfer of MySQL databases somewhere (it's deep inside in the Replication-how-to) and decided to post them again here, so they're quicker to find.
One can transfer MySQL databases in various ways:
$ cd /var/mysql/ (or /var/lib/mysql/)
$ sudo zip -r ~/[database].zip [database]
Do this for each database that you want to copy. Then send all zip's per FTP to the new server.
Start an SSH session with the remote server and enter the following commands:
$ cd /var/mysql (or /var/lib/mysql/)
$ sudo unzip ~/[database].zip
$ sudo chown -R _mysql:admin [database]
For the above chown, check first with ls -l if _mysql:admin are the right owners. Then do this for each unzipped database.
Next, start Navicat and now you should see your databases in the connection of the new server. If not, you probably forgot to either do a Refresh Connection or the chown-command.
If you can access the tables and view data, good! If not, right click the table and choose Maintain->Repair Table->Quick or ->Extended and then try again.
One can transfer MySQL databases in various ways:
- Using mysqldump and zip + ftp
- Zip the database itself + ftp (you might need to repair the tables after unzipping)
- Use Navicat's Data Transfer module (not always good for tables with millions of records or blob data)
$ cd /var/mysql/ (or /var/lib/mysql/)
$ sudo zip -r ~/[database].zip [database]
Do this for each database that you want to copy. Then send all zip's per FTP to the new server.
Start an SSH session with the remote server and enter the following commands:
$ cd /var/mysql (or /var/lib/mysql/)
$ sudo unzip ~/[database].zip
$ sudo chown -R _mysql:admin [database]
For the above chown, check first with ls -l if _mysql:admin are the right owners. Then do this for each unzipped database.
Next, start Navicat and now you should see your databases in the connection of the new server. If not, you probably forgot to either do a Refresh Connection or the chown-command.
If you can access the tables and view data, good! If not, right click the table and choose Maintain->Repair Table->Quick or ->Extended and then try again.
ProFTPD with MySQL backend
Friday, Jul 18 2014, 16:23 FTP, Linux, MySQL, server, Unix PermalinkI know there are already many pages about ProFTPD and MySQL, but all info I needed was scattered over the Internet.
Therefore I collected all info I needed and put into one page: Setup ProFTPD and MySQL.
Therefore I collected all info I needed and put into one page: Setup ProFTPD and MySQL.
Store/Show BLOB images with PHP and Lasso 9
Thursday, Nov 07 2013, 11:25 Lasso, MySQL, PHP, programming PermalinkI have added a new page to the 'How To'-list where you can find information about how to read an image from disk, store it into a MySQL blob-field and display that image on a web page. Reading and storing is done with PHP, displaying with Lasso 9. [Read more...]