To get screen sharing support from Vialect please any of
Or send us a link to
Currently not working:
- Microsoft Teams [CoreError::LAYOUT_ERROR][Error::Cannot return null for non-nullable field AuthenticationUserProfile.upn.]
To get screen sharing support from Vialect please any of
Or send us a link to
Currently not working:
Add the following to the Host tag in server.xml
<Context docBase="ROOT" override="true"> <Resources cachingAllowed="true" cacheMaxSize="100000"/> </Context>
Add the following to multiserver or intranet.bat
-Xmx1000m -Xms1000m -XX:+UseG1GC
Safari mobile 15+ uses desktop mode by default, if desired disable it in;
To display timestamps exported from Noodle to csv files in Microsoft Excel, format the column as custom with this pattern;
yyyy-mm-dd hh:mm:ss.000
To show just the date one of these formulae can be used;
=DATE(YEAR(B2),MONTH(B2),DAY(B2))
=CONCAT(YEAR(B2),"-",MONTH(B2),"-",DAY(B2))
To show just the time one of these formulae can be used;
=TIME(HOUR(B2),MINUTE(B2),SECOND(B2))
=CONCAT(HOUR(B2),":",MINUTE(B2),":",SECOND(B2))
Like all formula the above examples can be applied to whole columns by copy pasting, dragging, or double clicking.
Note that Microsoft Excel does not respect original formatting so any save (without any edit) can convert a timestamp into a number representing seconds since epoch.
certbot renew --quiet --manual --preferred-challenges dns \
--manual-public-ip-logging-ok \
--manual-auth-hook cert_dns.sh \
--deploy-hook cert_deploy.sh
ssh $DNS "nsupdate <( echo \"server 127.0.0.1
update delete _acme-challenge.$CERTBOT_DOMAIN.
update add _acme-challenge.$CERTBOT_DOMAIN. 3600 TXT $CERTBOT_VALIDATION
send
quit\" )"
sleep 10
See letsencrypt for other options.
Noodle respects requests for dark mode with the "prefers-color-scheme:dark" CSS that can be customized.
Web Browsers respect requests for dark mode by the Operating System, and can be customized:
Operating Systems can be customized to use dark mode:
Other sites that support dark mode as of 2020:
The Business Continuity Plan for local installs is mostly up to the client and we provide a site export feature by which all data is converted to standard formats in a zip file to avoid vendor lock-in. We also have a HA option. and restoring from backups can be tested in a virtual machine.
Hosted instances have security measures in place and can be restored to any cloud or local environment. We maintain backup domains with multiple registries.
"Requests to the server have been blocked by an extension." can be causes by a Chrome mailto: bug. Use "open link in new tab" or Firefox to work around this issue.
Noodle supports the following JDBC drivers
Other drivers Noodle has supported in the past
Note that Noodle configuration files treat "\" as an escape character so use "\\" or "/".
08001 = wrong ip:port, fire-walled, or DB not listening.
#!/bin/bash
#
# noodle_datamanager_add.sh
#
set -e
U=$1
P=$2
F=$3
D=$4
SERVER="https://domain.tld"
COOKIE=noodle_cookie.tmp
if [ "$D" == "" ] ; then
echo NO >&2
exit 1
fi
if [ -f $COOKIE ] ; then
echo "already running"
exit 2;
fi
TMP=$(mktemp)
wget -q "$SERVER/HandleLogin.po" --post-data="user_name=$U&user_password=$P" --keep-session-cookies --save-cookies $COOKIE -O /dev/null
wget -q "$SERVER/datamanager/MainWindow.po" --load-cookies $COOKIE -O "$TMP"
CSRF=$(< "$TMP" perl -pe 's/(<)/\n$1/g' | grep CSRF | perl -pe 's/^.*value="//g;s/".*$//g')
rm "$TMP"
wget -q "$SERVER/datamanager/HandleMainWindow.po" --post-data="CSRF=$CSRF&folder=$F&val5440=$D" --load-cookies $COOKIE -O /dev/null