Search found 233 matches

by joben
Tue Mar 07, 2023 8:02 am
Forum: General discussion and questions about Aware IM
Topic: Regular Hosting or Cloud
Replies: 6
Views: 2438

Re: Regular Hosting or Cloud

For transfer my application on the web, I currently have a website with web hosting for $4/month. I could install my app through this web hosting using a subdomain. However, I was wondering what you think would be best. Web hosting at $4/month or pay for a Cloud server at $34/month. Is it worth goi...
by joben
Mon Mar 06, 2023 5:45 pm
Forum: General discussion and questions about Aware IM
Topic: Regular Hosting or Cloud
Replies: 6
Views: 2438

Re: Regular Hosting or Cloud

I don't see how a web hosting service for $4/month would work. I doubt they would let you install the AwareIM application on a shared web hosting service. You will probably only have access to the web root folder via FTP and a MySQL database which is the standard when it comes to web hosting. Tomcat...
by joben
Mon Mar 06, 2023 4:05 pm
Forum: General discussion and questions about Aware IM
Topic: Config tool version vs server version
Replies: 5
Views: 2320

Config tool version vs server version

Is it risky to run, for example, Config Tool version 8.8 (Build 3127) and connect to a server running version 8.8 (Build 3123) ?

If this is not recommended, I wonder if it is possible to download a specific Config Tool version somewhere?
by joben
Thu Mar 02, 2023 7:50 am
Forum: Wish List
Topic: Make Wiki user contributions possible
Replies: 0
Views: 40382

Make Wiki user contributions possible

Most (if not all) of the documentation is available on the Wiki site: https://www.awareim.com/dokuwiki/doku.php/0000_start Good job! This is a vast improvement. Now imagine if the AwareIM community could easily edit or add code examples. Wiki sites really benefit from crowdsourcing. I bet there are ...
by joben
Thu Mar 02, 2023 7:30 am
Forum: General discussion and questions about Aware IM
Topic: Changelog has moved!
Replies: 5
Views: 16820

Re: Changelog has moved!

Great!
by joben
Thu Feb 16, 2023 8:22 am
Forum: Wish List
Topic: Image where sections can be circled
Replies: 7
Views: 22066

Re: Image where sections can be circled

Great to see you found it useful. I have personally never written a single line of FabricJS code, but I think the way we solved it was saving the result image in an AwareIM plain text attribute as Base64. Another option, If you still want the layers and editing capabilities when loading the image, y...
by joben
Mon Feb 13, 2023 7:19 am
Forum: Wish List
Topic: Image where sections can be circled
Replies: 7
Views: 22066

Re: Image where sections can be circled

You can download the latest fabric file here: https://unpkg.com/fabric@5.3.0/dist/fabric.min.js Save it as fabric.min.js Put it in this folder in you AwareIM installation folder on the server (this assumes that your application name is "acme": Tomcat/webapps/AwareIM/Custom/JS/acme/ The "acme" folder...
by joben
Fri Feb 10, 2023 7:24 am
Forum: Wish List
Topic: Image where sections can be circled
Replies: 7
Views: 22066

Re: Image where sections can be circled

We used Fabric.js to accomplish this sort of stuff.
http://fabricjs.com/

I am pretty sure it is impossible to draw circles on images in AwareIM.
by joben
Fri Feb 03, 2023 7:40 am
Forum: General discussion and questions about Aware IM
Topic: [SOLVED] French Locale and Acute Accents
Replies: 3
Views: 1339

Re: French Locale and Acute Accents

How is the source file encoded? If it is a CSV file, you can open it in excel and try to save it as a CSV UTF-8 and see if it makes any difference. Also, the charset/collation of the database and the individual tables within is not necessarily the same. For instance, we have a database with utf8mb4 ...
by joben
Wed Feb 01, 2023 3:54 pm
Forum: Tips and Tricks
Topic: MySQL backup of all databases on Windows Server
Replies: 0
Views: 39651

MySQL backup of all databases on Windows Server

This script will dump each database to its own .sql file: mysql.exe -u user -p password -s -N -e "SHOW DATABASES" | for /F "usebackq" %%D in (`findstr /V "information_schema performance_schema"`) do mysqldump %%D -u user -p password > C:\MysqlBackup\%%D.sql Save it as a .bat file. Schedule it via Ta...
by joben
Tue Jan 31, 2023 10:43 am
Forum: General discussion and questions about Aware IM
Topic: Phonegap alternative?
Replies: 18
Views: 29201

Re: Phonegap alternative?

One of the most important things missing right now in iOS PWA is, in my opinion, push notifications.
Last time I checked, it just wasn't possible.

I don't see why Apple would fix this anytime soon. It would remove a huge part of their income from App sales.
by joben
Fri Jan 27, 2023 10:18 pm
Forum: General discussion and questions about Aware IM
Topic: Time Math -- Easy in SQL what about in Aware?
Replies: 5
Views: 4110

Re: Time Math -- Easy in SQL what about in Aware?

Here is one idea that I tested, and it works: First create a duration attribute called duration. Activate this update rule: If BO.Pickup WAS CHANGED AND NOT(BO IS NEW) Then BO.duration=BO.Pickup-OLD_VALUE(BO.Pickup) BO.Arrival=BO.Arrival+BO.duration Set it to: Dynamic Do not run on server Form initi...
by joben
Wed Dec 21, 2022 4:02 pm
Forum: General discussion and questions about Aware IM
Topic: Error Trying to access Google Maps
Replies: 3
Views: 1315

Re: Error Trying to access Google Maps

Can't find the google maps test business space unfortunately, but maybe this thread is relevant:
https://www.awareim.com/forum/viewtopic.php?t=10521
by joben
Wed Dec 21, 2022 3:16 pm
Forum: General discussion and questions about Aware IM
Topic: Error Trying to access Google Maps
Replies: 3
Views: 1315

Re: Error Trying to access Google Maps

Google started requiring an API key for Google Maps a few years ago. Maybe that has something to do with it? If I remember correctly, my intern had a similar issue and had to modify some javascript to insert the API key to make it work with AwareIM. I havn't used it myself so please take this with a...
by joben
Wed Dec 21, 2022 8:06 am
Forum: General discussion and questions about Aware IM
Topic: ConfigTool connecting to different servers
Replies: 6
Views: 1911

Re: ConfigTool connecting to different servers

Thanks for the advice guys!

We just got some good news from Vlad:
By the way, in the new version that will be released in late January, the Config. Tool will be able to connect to any remote server via the Internet.