Tuesday, April 18, 2017

Outlook and its mapping to Ctrl+F to Forward

Some info on the topic:

https://blogs.msdn.microsoft.com/oldnewthing/20140715-00/?p=503

http://www.standss.com/blog/index.php/ctrlf-find-outlookans-bill-gates/

Most users want mapping Ctrl+F to Find.

And my question is: Why MS haven't implemented a way of re-mapping (changing) keyboard shortcuts in Microsoft Outlook 2016?
(Other MS Office products have this functionality but Outlook - not.)

May be Outlook is just Oldlook...

Tuesday, April 4, 2017

Opencart Product Options are not showing in Firefox

Issue in Opencart

Dropdown (select) with Options for products is not available. Writing in the search box does not show any options. Maybe other functionality in administrative is affected.

Sunday, March 5, 2017

Solved: MediaWiki sets all date to Thu, 01 Jan 1970 00:00:00 GMT

All dates (datetimes, timestamps) in your revisions in MediaWiki are shown as:
  • Thu, 01 Jan 1970 00:00:00 GMT
  • 00:33, 1 January 1970 
  • 31 December 1969
  • or something similar (depends on locale you use)
The issue is that a column in database is defined with shorter limit and date is truncated extremely. Updating your mediawiki will not solve the issue.

Solution: In your SQL db for your wiki look for the table called yourdbprefix_revision in that table find the column rev_timestamp and check its datatype, if it's set to anything less then VarChar(14) change it (to "VarChar(14)") and save the changes. Now when you edit a page the revision will show the correct date.

Special thanks to krikit.

Tuesday, February 21, 2017

No results in set for executeQuery() in Oracle

Issue:
executeQuery() returns no rows. Oracle SQL developer shows the rows persist into database.

Cause / error / solution: