Re: PDF Documentation

2020-07-10 Thread Paul Dennis via 4D_Tech
It looks like 4D are phasing out PDF documentation which is a shame because
the HTML docs are a mess. Way too much scrolling.



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
New Forum: https://discuss.4D.com
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: gitignore for projects

2020-05-25 Thread Paul Dennis via 4D_Tech
For those getting started with Git. Atlassian offer bitbucket for 10 USD a
year and their GUI sourcetree is free of charge.  Integrates with Jira and
for small development teams is amazing value for money.
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
New Forum: https://discuss.4D.com
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: iNUG Messages ― Is it time for it to be more than just 'plain text' ???

2020-05-07 Thread Paul Dennis via 4D_Tech
Makes sense to me. It would be really useful if 4D were able to archive this
list plus the old 4D forum. I use nabble to search this list which works ok.
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
New Forum: https://discuss.4D.com
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Distinct Collection

2020-05-04 Thread Paul Dennis via 4D_Tech
Thanks Jim, Using OrderBy and push is exactly what I ended up doing. Its
faster and the orda code is simpler than managing a lot of arrays.
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Distinct Collection

2020-04-29 Thread Paul Dennis via 4D_Tech
I have a collection created from arrays via mysql. This contains duplicated
elements. I'm trying to do the equivalent of distinct values but the
collection.distinct command does not do the distinction on a single
attribute. 

This is really slow and doesn't seem to work.

ARRAY TO
COLLECTION($companycol;$CompanyUUID;"UUID";$alContactMySqlID;"MySQLUserID";$asName;"Name";$asAddress;"AddressLine1";$asCity;"Town";$asPostcode;"PostCode")


$col:=$companycol.distinct("MySQLItemID")

For each ($element;$col)

$col2:=$companycol.query("MySQLItemID = :1";$element)
$col3.combine($col2)

End for each 

$col.clear()
$col2.clear()
$companycol:=$col3
$col3.clear()

I've been looking through the documentation and the examples.finding it hard
going.

Thanks
Paul





--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: WAN vs LAN Cache

2020-04-29 Thread Paul Dennis via 4D_Tech
Hello Randy,

You can no longer use the client local folder.  It was deprecated with V17
R5

https://forums.4d.com/Post/EN/30742975/1/30761022#30761022

Regards
Paul





--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: WAN vs LAN Cache

2020-04-29 Thread Paul Dennis via 4D_Tech
There is a thread about this problem on the old 4D forum. 

https://forums.4d.com/Post/EN/34156307/1/34663615#34663615

With version 18 you can no longer define the location of the client folder
it is automatically created. 4D uses a combination of the IP address and the
hash to create the path to the folder. 

As mentioned above if you use a different on your machine it creates a new
folder. If you make any changes to the network settings same applies. It may
be worth checking if you have legacy networks selected incompatibility I had
that problem.

It is frustrating that we cannot define the path for the client folder. My
4d folder in user profile/Appdata/4D Is already over a gigabyte. Furthermore
if you use built application and the user wants to uninstall this will not
be removed.

Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Multiple instances of 4D Client

2020-04-03 Thread Paul Dennis via 4D_Tech
Unfortunately the client local folder option no longer works with version
17R6 onwards there are some posts from me on the 4D forums about this.  

4D client now automatically creates a folder within the users profile
utilising the IP address and then ID.  

Is a real nuisance if you're doing web development on the client as very
easy to get mixed up.

Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: [OFF-ish] VirtualBox resize

2020-04-02 Thread Paul Dennis via 4D_Tech
Hello Pat,

I haven't used Virtual box for a while but VBoxManage  is the way you do it.
Is the disc fixed size or dynamic. If it's a dynamic disk the file won't get
larger until you fill it up. If it's a fixed disk it should resize.

Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Looking for 3rd party SQL query tool

2020-04-01 Thread Paul Dennis via 4D_Tech
I use heidi very easy and reliable.

https://www.heidisql.com/


Paul




--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Remote working with 4D networks - what are people using ?

2020-03-20 Thread Paul Dennis via 4D_Tech
Install the server as administrator then install the client on the server
machine but login as user using the user profile of each user. Make sure you
have enabled remote desktop server And have setup access file in the
firewall. Start the 4D client and connect to the server whilst logged in as
that user. This is all on the same server instance in the cloud.

The user then connects via RDP logs in and a session is started on the
server and he can start his local version of 4D client and use as normal.

This is the process on Windows It's very straightforward. 

I have also set up direct access from remote users to the server. Since
version 15 using 4D client over WAN works fine providing the network latency
is not too bad. The new network layer improves this quite a lot but you can
still use the legacy one.


Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: 4D Write Pro User Documentation

2020-02-06 Thread Paul Dennis via 4D_Tech
There is a V17 write pro pdf , I agree can't find it. 4D documentation is a
mess at the moment. I spent hours yesterday wading through the new dev.docs
site the old knowledge base, tech cases, blog etc trying to establish if
anything changed with components and the new project database. Very
inconsistent.
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: SDI or MDI

2020-01-31 Thread Paul Dennis via 4D_Tech
Thanks for replies. Never considered the multiple monitor issue. My customers
have always been in the KISS group.
Cheers
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

SDI or MDI

2020-01-30 Thread Paul Dennis via 4D_Tech
Seeing an earlier post by Tim. I'm struggling to understand the benefit of
SDI on Windows. I understand on a Mac with the way the menu switches with
the window SDI makes sense. However the windows implementation where the
menu remains with the window does not work for me so I am surprised why
people are adopting this unless it's for cross platform compatibility.

Considering that browsers with their tabbed interface are by default MDI
adopting SDI seemed like a retrograde step at least on Windows.

Any thoughts ?

Regards
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

RE: 4D Application as a 3-tier System

2020-01-29 Thread Paul Dennis via 4D_Tech
I use nginx running on windows from this source 
http://nginx-win.ecsds.eu/

Combine this with nssm.exe and you can have nginx sitting behind the
firewall acting as a proxy or load balancer for 4D server and or 4D clients.
I use 4d Clients to serve different websites but using the same 4D server.

The 4D server connects to Joomla websites via mysql running in hyperv
machine on same win server so you can secure the connection between 4D and
Mysql via the virtual switch.

Been working fine for a few years. The only snag now with V18 is that 4D
client create its own folder in users/profile so not as easy to manage where
the website root is located.

Regards
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: 4D Application as a 3-tier System

2020-01-28 Thread Paul Dennis via 4D_Tech
Simple solution would be to decide which data needed protection. Move that
into Mysql or Postgres and use Pluggers Mysql plugin to access the data. 
Regards
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: For those using Javascript - here is a grid component...

2020-01-16 Thread Paul Dennis via 4D_Tech
That looks fantastic. 



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: peer to peer app in 4D

2019-12-19 Thread Paul Dennis via 4D_Tech
I think I am right in saying that 4D only runs on IOS not android and
requires a client server licence ? 
Not aware that 4d can run stand alone on IOS ?



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: 4D Web Server Security

2019-11-29 Thread Paul Dennis via 4D_Tech
I assumed this was internet facing hence my Nginx comments. As well as
serving the static content Nginx or Apache as a proxy supports Lets Encrypt
so you dont have to worry about ssl. If you proxy nginx does the ssl bit and
as long as its on localhost you can connect to 4D on port 80 which is a lot
faster. 



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: 4D Web Server Security

2019-11-23 Thread Paul Dennis via 4D_Tech
I always run 4d webserver behind an niginx web proxy. Nginx can server static
content then forward valid requests. You can use the rewrite rules to
validate requests. 4D then does the rest via on web Connection
authentication. Nginx is open source, I run the Windows version as a
service.

http://nginx-win.ecsds.eu/

Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: MySQL connection from 4D

2019-10-29 Thread Paul Dennis via 4D_Tech
Ive been using pluggers MyConnect for years it just works. No need to mess
around with odbc.
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Web aficionados - Not allow user to access file directly

2019-10-04 Thread Paul Dennis via 4D_Tech
Hello Tom,

The advantage of the nginx proxy approach is speed and serving multiple
domains or sites. For example we have our main site running under the Joomla
CMS (no point reinventing the wheel). Nginx proxies requests between joomla
and 4D for our 4D Quote system and it is transparent to the user.  See
https://www.youdopet.com/  With Nginx on the public IP address gives a lot
of flexibility if developing as you can redirect easily to different
servers.

Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Web aficionados - Not allow user to access file directly

2019-10-02 Thread Paul Dennis via 4D_Tech
I place nginx as a proxy in front of 4d. Its very straightforward and can run
on linux and windows. Nginx runs the public port and can serve all static
resources images css etc.  You can use lets encrypt for free ssl. This way
the proxy to 4D can run on http to say port 8080 which is faster and 4D
server is not exposed to internet. There sould be some toer posts on Nug
about this.
Cheers
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: [ANN] AJUI_Button 1.0

2019-08-21 Thread Paul Dennis via 4D_Tech
Thanks Maurice, FYI the thumbnail images at the bottom of the web page do not
enlarge on click so cant read them.
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: 4D eMail Editor - full HTML support

2019-07-24 Thread Paul Dennis via 4D_Tech
Chuck, 
We have a template system for email replies so need to view in 4d and auto
generate email contents. We import emails via exchange/imap parse the mime
results all works ok HTMl is valid but write pro does not open or format
correctly at the moment. Thomas Maul confirmed the format needs to xhmtl. 
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: 4D eMail Editor - full HTML support

2019-07-23 Thread Paul Dennis via 4D_Tech
Hello Kirk,

We have had an email client for number of years. And we switch to using
write pro as the email editor with version 16. We were able to generate the
html to open with write pro by using the old 4D write plug-in as the HTML
generated Was compatible with write pro. This is now broken in version 17.
See this thread.

https://forums.4d.com/Post/EN/30613359/1/30727749#30727749

We have just implemented using tiny MCE as follows.

1. Parse the incoming email try and open the body with write pro if WP New
gives an error then they html is not compatible (tries various converters
they don't work). 

2. If you get an error open the HTML in a web area and edit with tinyMCE. If
no error open in write pro but you may have format problems. It's quite
straightforward.

3. it's okay to use write pro as an email editor for new emails because you
can save as HTML before sending. So we use this for our templates. Replies
to our emails can sometimes but not always be open by write pro.

We didn't have any luck trying to get right pro to open incoming without
either an error or formatting problems unless the original email was
generated by write pro. From the thread you can see that 4D are working on
this so perhaps we may get HTML import in the future.
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Windows Server 2012 & 4D Server v17.2

2019-07-22 Thread Paul Dennis via 4D_Tech
Did you change the install path on the server ? If so then its the firewall.
In the Windows firewall you define either the ports to be open or for the
application itself to accept connections. If you have changed the path then
it will be treated as a new application and unable to accept connections. 

Is it not possible for them to give you temp RDP access to the control panel
?



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: $success_f:=PHP Execute($file_path_t;"";$result_t) intermittent failure

2019-07-12 Thread Paul Dennis via 4D_Tech
Hello David,

We had a similar problem and there are a number of posts on the form about
it. The most common cause is you have another application using the same
port defined in the database settings PHP. If you got two copies afford the
running there will be conflict using the same php port at the same time
which is why it is intermittent. I think you can only have one PHP call 
running simultaneously.

Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: DocuSign and 4D

2019-07-11 Thread Paul Dennis via 4D_Tech
I agree we use qpdf with pdf templates to insert the filed data. Very fast
and better than a print driver.



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

RE: word press on WS2008 [off]

2019-06-29 Thread Paul Dennis via 4D_Tech
Another thing worth considering is to use the plesk control panel on the
hyper V wordpress, its cheap for 10 domains guest and install the wp site on
that. Plesk inc the nginx proxy so very easy to redirect from wp site to 4d
securely on internal nic. This way wp runs as https and nginx proxy is to
http so 4d webserver is a lot faster as nginx handles the certs.
Cheers
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: word press on WS2008 [off]

2019-06-28 Thread Paul Dennis via 4D_Tech
Been down that road. I have tried running php  based sites ie Joomla! and
WordPress on Windows using IIS. They are very slow compared to a Linux.
WS2008 supports Hyper V so I would run a linux virtual machine on the server
hyper V with WordPress and run the 4D server on the host. You can create a
virtual NIC to allow the 2 to communicate. 

Rather than us an iframe I proxy the requests to redirect between the two
servers. It is transparent to the user and I use the myconnect plugin to
connect to the mysql database from 4D. Allow single logon and so on. 

see https://www.youdohome.com/ the main site is joomla and the quote page is
served by 4D. Setup is as above where joomla is running under hyperv on a
windows 2012 host.

Regards
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Which extension does Google Blink engine use when showing PDF

2019-06-27 Thread Paul Dennis via 4D_Tech
The default zoom is part of the pdf not the viewer. Try opening in acrobat
(not reader) and set the default default magnification to 200% in file-
properties. Open in 4d it should be zoomed in. I just checked and did this
opening in chrome ignores the file setting, opening in acrobat is ok. So its
a chrome problem.  



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: 4D World Tour ... Way more than your moneysworth

2019-05-15 Thread Paul Dennis via 4D_Tech
I agree with Pat. Orda is a massive change and JPR really does make it quite
clear where the future is. Plus the resources included are great value for
money.
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: AlwaysUp Utility to Run 4D Client as a Windows Service

2019-05-08 Thread Paul Dennis via 4D_Tech
I use nssm works without a problem and its open source. 
https://nssm.cc/
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

RE: Error connecting to 4D Server - SOLVED

2019-04-04 Thread Paul Dennis via 4D_Tech
Its easy to turn off. Control Panel - Windows Update - Change Settings -
Select "Download but choose to install"  Then when you check you can see
which ones to install. If Win server is only running 4D then no need to auto
install updates. Fire wall should block any issues.
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Can'r run as a service on Windows 2016

2019-03-25 Thread Paul Dennis via 4D_Tech
I dont have access to server 2016 so cant be sure but my guess is its a
permission issue. Please see 

https://www.advancedinstaller.com/user-guide/qa-custom-user-service.html

Do you have the local policy set for the use under which the service is
running and does the user have read and write permission for the install
folder ?.  
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: 4D World Tour 2019 - Cool new stuff are coming your way

2019-03-22 Thread Paul Dennis via 4D_Tech
It sounds very good and I just try to sign up for the two day event in
London. Your shopping cart experience leaves something to be desired. After
the registration form you get a button to pay for day 2. Which then takes
you to the 4D store page which is completely useless. Firstly you have to
select your country even though you have already selected the location of
the event, there is no product selected, no shopping cart. I gave up.

Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Socket Communication

2019-03-19 Thread Paul Dennis via 4D_Tech
Just watched the 4D Method presentation from Matt. Very interesting.
Thanks to Matt and 4D Method.
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

RE: Can'r run as a service on Windows 2016

2019-02-28 Thread Paul Dennis via 4D_Tech
What is the file path to the location where you have the exe and data
installed. You can only use c:\\program files for the exe not the data. For
that use c:\\program data or as mentioned install under a user account. In
which case it runs from c:\users\username etc.
Paul 



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: AWS Experts - Need a little help

2019-01-15 Thread Paul Dennis via 4D_Tech
Have you setup the firewall inbound rule to allow the application access via
the program and services tab and also the ports range eg 19812-19814 on the
protocols tab. 
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Publishing a DB on the WWW. Howto.

2018-12-04 Thread Paul Dennis via 4D_Tech
As already mentioned. Have a look at lightning. It is now version 4 supports
bootstrap 3 which is very important for mobile and you will be able to
leverage a lot of your 4d existing code.
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Format of MySql data file

2018-11-16 Thread Paul Dennis via 4D_Tech
I would do as follows. Install a copy of mysql. Download and use heidi an
open source sql client and import the dump file file. Then you will be able
to view the "structure" and the tables/data. Heidi can export the data from
the tables you need. It's quite straightforward.  Alternatively you could
use the plug-in from Pluggers to connect and replicate into 4D. It comes
with a demo method to replicate the table straight into 4D.
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Using 4D with Git...

2018-10-31 Thread Paul Dennis via 4D_Tech
Hello Milan,

Ill give the client a try. There is defiantly a gap in market for a client
simple easy to use client. 

Re Bitbucket, Jira and Confluence you can host your own versions in VM's you
just need plenty of RAM. All three are great for collaboration and you get
10 users for $10 per year. The catch is when you need more than 10 uses.
Ouch.  

Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Built Server—Best Practices...

2018-10-17 Thread Paul Dennis via 4D_Tech
I only rebuild the entire client and server if there has been a 4D version
change ie moving from 16.3 to 16.4 etc. Otherwise I build the server and
just copy across the new .DC file from the Server Database folder.   You
need to make sure compiling on same version as deploying. Never had a
problem and you dont lose the settings.  



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: what to do when I don't want back button funtionality in a browser of pages from 4d

2018-10-10 Thread Paul Dennis via 4D_Tech
This is a significant problem and not easily solved hence the use of a "back"
button on webpages. I use a combination of a tab object and buttons for form
filling in the browser. On each page the user can only proceed to the next
page or tab if they have filled in the mandatory information and the form is
validated. At this point I save the record to 4D. and so on through the form
filling process saving to update the record at each point. Despite this it
is still problematic if the user presses the back button.   

I would be interested to hear if anyone has a better solution.
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Defining and documenting Objects

2018-10-09 Thread Paul Dennis via 4D_Tech
Kirk,

Good point, well made.
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: WritePro letter emailed to MS Outlook

2018-10-05 Thread Paul Dennis via 4D_Tech
Allan,  See the example in 4d forums by Thomas Maul. It works we use it 

http://forums.4d.com/Post/EN/19099114/1/19168533#19168533





--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Defining and documenting Objects

2018-10-05 Thread Paul Dennis via 4D_Tech
I've been thinking about it more from the point of practicalities than the
coding. I understand how we can create documentation of the objects. My
problem is three years down the line when you revisit some old code written
by third-party. With tables and records and the structure it's relatively
straightforward to track through the code and work out what's going on. I
can see this being a real problem with objects. There just doesn't seem to
be any visibility. The data could be buried many layers down in an object
let alone all the quotes, dots and semi colons involved. I think my first
step is to have another eye test.
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Defining and documenting Objects

2018-10-04 Thread Paul Dennis via 4D_Tech
Thanks Kirk, I was afraid you were going to say that. Ive got multiple
developers on our app all with different habits plus me and I am the worst.
I have to give this some thought.



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Defining and documenting Objects

2018-10-03 Thread Paul Dennis via 4D_Tech
We have not started using objects in our application but I can see how they
could be useful. However where I am struggling is how we are supposed to
keep documentation as to the object definition. With database structure you
can clearly see the definition of the table and fields and these are
available in the method editor for lookup.

Am I missing something as it seems to me that it would be very easy to get
in a mess as to definition and contents of an object.  Would appreciate
feedback as to have everyone is managing this. We are using V16 R6.
Thanks
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: 4Dv15 applications as a Service in Windows Server 2012

2018-09-07 Thread Paul Dennis via 4D_Tech
I have v15 running as service on remote Virtual machine and I can connect
with 4D remote without problem. In the service properties under the general
tab what do you have as the path to the executable. For example mine is.

C:\Program Files (x86)\4D\4D v15.4\4D Server\4D Server.exe -s
"C:\Compare_Server\Compare\Compare\Compare.4DC"

My guess is that when you run the application as a service it is unable to
find the compiled application to launch so although for the server runs it
doesn't know which application to open.
Paul




--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: 4Dv15 applications as a Service in Windows Server 2012

2018-09-04 Thread Paul Dennis via 4D_Tech
I am running 15.5 on 2012 without a problem. Is this a built application? If
not how are you selecting the database to launch ? 
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: v17 PDF-Manuals

2018-07-30 Thread Paul Dennis via 4D_Tech
Thanks for the offer Jorg, I have been working with acrobat since v1 so know
it well. Even managed to get product as a case study on the adobe V4 install
cd ! Its so easy to do thats why I cant understand why 4D havent resolved
this. 

I also agree about the blog. Its useful but it has fragmented our
information sources when we need consolidation.



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: v17 PDF-Manuals

2018-07-28 Thread Paul Dennis via 4D_Tech
My bias towards pdf is possibly because I'm not the primary coder of our
product. Therefore quite often if I am writing code I need to check the
documentation and read the information to make sure understood it correctly.
For example if I was looking to use the command  distinct values.  In the V
11 documentation PDF you could go to the table of contents and look up the
command and the page number. In the new version you cannot do this there is
no list of commands in the current pdf docs. 

The new versions of the documentation be HTML or PDF are simply not as good
as the old ones. The fonts are poor particularly if you are longsighted like
me. 

Navigating the HTML versions is not as good as PDF. The main reason is as
you navigate through the hierarchical list you lose the ability to expand
and collapse the bookmarks. Therefore you are continually having to go back
through the hierarchy to read another command. With the PDF version the
bookmarks are way better than anything in HTML. This improves the
readability.

It is such a simple issue to generate the PDF documentation with decent
fonts I am perplexed as to why this is not been done. 

Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: v17 PDF-Manuals

2018-07-27 Thread Paul Dennis via 4D_Tech
I couldn't agree more the html files are rubbish, poor navigation page
refresh etc etc. A return to the V11 style formatting and fonts would also
help. I wish designers would understand it its all about ease of use and
readability. 
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

RE: Who’s the Gestapo?

2018-07-19 Thread Paul Dennis via 4D_Tech
I use the nabble web interface to read and post.
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Clients cannot see v16 R6 on windows server

2018-04-13 Thread Paul Dennis via 4D_Tech
Resolved I was missing the 4D extensions folder in the built client



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Clients cannot see v16 R6 on windows server

2018-04-13 Thread Paul Dennis via 4D_Tech
I am getting something similar since I update to R6 this week. The
EnginedServer.4Dlink file is not being recognised on windows 7 but it ok on
win8. My 2 win7 clients always display the connect dialog but no servers are
present. They connect okay if I manually enter the details in custom. And
when I do this the EnginedServer.4Dlink is updated however restarting the
client and it does not connect automatically as was previously the case. I'm
going to post this to 4d Forum
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: 4D data on the web - what do you use?

2018-03-15 Thread Paul Dennis via 4D_Tech
I use Grahams lightning and the Oxygen xml editor with bootstrap. V4 is now
ready for production and not a lot it cant do. Need 4d experience though but
design is separate from data.

Jody, We have never met but the Uk Gov at the EU behest did the same to me
for my buildings energy performance software. After many years in a open
competitive market with 5 suppliers the gov introduce "acreditation"
Suppliers muse be members of a scheme ie "gov quango" and architects must be
accredited cost £2k plus annual fees. The user base fell from 20K to 1k in 3
years. All the money went to the quangos. I also relocated overseas.

 Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Creating/Modifying 4DWrite/Pro Documents via Web Page

2017-12-21 Thread Paul Dennis via 4D_Tech
I assumed when they announced write pro and it was based upon HTML that we
would be able to do this but progress has been slow and nothing's been
announced.  As Pat mentioned you should be able to use one of the JavaScript
editors such as Tinymce but I believe that write pro uses custom tags so
don't know if you can preserve the formatting. If the file format is html
but you cannot do this then I dont understand why this format was chosen. As
of today write pro offers no advantage over the old 4d write.
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

RE: 4D Write Pro Sample DB on YouTube

2017-12-13 Thread Paul Dennis via 4D_Tech
I appreciate that 4d has got round to providing us with a tool bar. Can
somebody please tell the designers who seem to rule the roost that we dont
need great big icons and clunky fonts. What is the obsession ? Please can we
have something like the original 4d write style.
Thanks
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Anyone using 4D Write Pro with a semblance of success?

2017-10-16 Thread Paul Dennis via 4D_Tech
We use it but only for creating templates not as a real wp. It works but its
a mess. The html is only usable with write pro so what is the point ? Would
have been much better off integrating libreoffice open document format.
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: NGINX Config

2017-10-03 Thread Paul Dennis via 4D_Tech
RE: Note if you enable 443 and ssl for any server you must have a cert for
all servers listening on 443 you cant mix them up. 

To Clarify I use nginx on windows and linux in a hyper v vm to proxy to our
different internal servers for web, testing etc. Each ssl is tied to a
domain however if you enable ssl and 443 on the nginx instance then you 
must have an ssl for each domain listening on port 443. 

It is much faster to have nginx ssl sitting in front of 4d and have proxy to
4d on normal http.
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: NGINX Config

2017-10-02 Thread Paul Dennis via 4D_Tech
Hello Jason,

I ve been doing this for years my config is simpler. Dont understand why you
need to define the upstream and rewrite for a simple proxy. I just have a
server block (nginx jargon) as follows.

server {
listen   443 ssl;

server_name  dashboard.xxx.com;
client_header_buffer_size 2k;
large_client_header_buffers 8 12k;
client_max_body_size 20m;
ssl_certificate
/etc/letsencrypt/live/dashboard.xxx.com/fullchain.pem;
ssl_certificate_key
/etc/letsencrypt/live/dashboard.xxx.com/privkey.pem;

location / {
proxy_pass   http://192.168.1.20:8086/;
}


Note if you enable 443 and ssl for any server you must have a cert for all
servers listening on 443 you cant mix them up.






--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Configure SSL Web Server on 4Dv15

2017-09-21 Thread Paul Dennis via 4D_Tech
Andrea, you would be better off running nginx on same windows proxy and proxy
nginx https to 4D http. Faster and certs are easy with lets encrypt. 



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Web License issue

2017-09-06 Thread Paul Dennis via 4D_Tech
4D have 2 separate licences for web one for the server and one for the
client. I can understand this if you ran both but not if you need to use one
or the other. Really dumb so I bought NTK.
Paul



--
Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: 4D Client/Remote as Web Server

2017-08-14 Thread Paul Dennis via 4D_Tech
I run client webserver on windows and use nssm to  run client as a service.
Works great. Dont run any methods to keep activity up stays connected all
weekend. 
Paul 



--
View this message in context: 
http://4d.1045681.n5.nabble.com/4D-Client-Remote-as-Web-Server-tp5753659p5753671.html
Sent from the 4D Tech mailing list archive at Nabble.com.
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Re(2): 4D db -> SAAS

2017-08-01 Thread Paul Dennis via 4D_Tech
I had this dilemma about 3 years ago with my energy calculation software for
architects which was standalone. I tried a few combo's such as using cloud
mysql with 4D standalone etc which works ok. In the end I went with browser
and lightning and 4D. It depends how dependent you are on 4D UI features. 
The great thing about web is no install required and easy support. The
downside is its a pain to code all those single quotes in javascript drive
me mad. Dont even mention css what joker thought that one up.
Paul



--
View this message in context: 
http://4d.1045681.n5.nabble.com/D3-js-Wow-Some-notes-on-SVG-D3-and-data-visualizations-tp5741826p5753461.html
Sent from the 4D Tech mailing list archive at Nabble.com.
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Question about building an installer

2017-07-26 Thread Paul Dennis via 4D_Tech
Program Files is read only cant install there. I use advanced installer for
this or innosetp which is free



--
View this message in context: 
http://4d.1045681.n5.nabble.com/Question-about-building-an-installer-tp5753344p5753349.html
Sent from the 4D Tech mailing list archive at Nabble.com.
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Collections in v16R4

2017-07-19 Thread Paul Dennis via 4D_Tech
I may sound like a Luddite but I like MDI much neater to be able to minimise
a whole app in one click or is that possible with SDI ?



--
View this message in context: 
http://4d.1045681.n5.nabble.com/Collections-in-v16R4-tp5753225p5753229.html
Sent from the 4D Tech mailing list archive at Nabble.com.
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: PHP Execute

2017-07-14 Thread Paul Dennis via 4D_Tech
It works uncompiled what makes you think it wont ? I will check.
Paul



--
View this message in context: 
http://4d.1045681.n5.nabble.com/PHP-Execute-tp5753151p5753153.html
Sent from the 4D Tech mailing list archive at Nabble.com.
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Wiki software: Confluence

2017-07-13 Thread Paul Dennis via 4D_Tech
I second that confluence and Jira are brilliant. They do a 10 user version
for 10 USD trouble is its additive and 25 users is expensive. Download a
postgres appliance from turnkey linux. Set up a virtual machine in hyper v.
Install.



--
View this message in context: 
http://4d.1045681.n5.nabble.com/Wiki-software-Confluence-tp5753085p5753088.html
Sent from the 4D Tech mailing list archive at Nabble.com.
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: revelation! - Choose

2017-07-10 Thread Paul Dennis via 4D_Tech
Never used choose as the pdf version of the docs have not included the
command index at the back since v11. Searching for choose doesnt work. Come
4d can we have the pdf docs formatted as per V11 it was far better.
Paul



--
View this message in context: 
http://4d.1045681.n5.nabble.com/revelation-Choose-tp5752961p5753011.html
Sent from the 4D Tech mailing list archive at Nabble.com.
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

RE: 4D and Exchange Server with IMAP

2017-06-20 Thread Paul Dennis via 4D_Tech
I am just using username not domain\username but I think this is something to
do with exchange setup. What error are you getting ? 10061 is the imap proxy
whereas 10064 is auth. Can you telnet to port 993 ? 



--
View this message in context: 
http://4d.1045681.n5.nabble.com/4D-and-Exchange-Server-with-IMAP-tp5752675p5752689.html
Sent from the 4D Tech mailing list archive at Nabble.com.
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

RE: 4D and Exchange Server with IMAP

2017-06-20 Thread Paul Dennis via 4D_Tech
For reference if anyone else is getting 10061 errors the issuse is exchnage.
Follow this blog

http://danblee.com/exchange-2013-test-imap-connectivity/

make sure imap.proxy is healthy then connect on port 993 with ssl



--
View this message in context: 
http://4d.1045681.n5.nabble.com/4D-and-Exchange-Server-with-IMAP-tp5752675p5752686.html
Sent from the 4D Tech mailing list archive at Nabble.com.
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

RE: 4D and Exchange Server with IMAP

2017-06-20 Thread Paul Dennis via 4D_Tech
Tim,

I cant get this to work either error 10061 or 10064. SMTP works fine. Can
you confirm if you are using domain\username or email address to login  as
per http://kb.4d.com/assetid=76712  On the exchange (2013) side imap
settings are you able to confirm the login options have selected ? I get a
connection but then its closed.
Thanks
Paul



--
View this message in context: 
http://4d.1045681.n5.nabble.com/4D-and-Exchange-Server-with-IMAP-tp5752675p5752684.html
Sent from the 4D Tech mailing list archive at Nabble.com.
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Connecting to Exchange Server with IMAP

2017-06-15 Thread Paul Dennis via 4D_Tech
Hello Jason,

DID you get this resolved I am alos getting error 10061 tryint to connect to
exchnage via imap. SMTP is ok. Bit confused about tls vs ssl and the last
param. Which combination of 0 or 1, Tls or SSL and port 143 or 993 ?

Thanks
Paul



--
View this message in context: 
http://4d.1045681.n5.nabble.com/Connecting-to-Exchange-Server-with-IMAP-tp5745081p5752610.html
Sent from the 4D Tech mailing list archive at Nabble.com.
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: 4D and Sage

2017-06-14 Thread Paul Dennis via 4D_Tech
I had sage line 50 working ok with odbc. I was able to export data from sage
into our 4D app. However this was for a one of conversion rather than
ongoing integration.
Paul



--
View this message in context: 
http://4d.1045681.n5.nabble.com/4D-and-Sage-tp5752571p5752592.html
Sent from the 4D Tech mailing list archive at Nabble.com.
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: 4D Web Store Approach...

2017-06-12 Thread Paul Dennis via 4D_Tech
I have been doing this for years with large library of pdf's. I  do as
follows.

Create site in cloud with plesk control panel - this inc apache and nginx
reverse proxy.
Optionlal Install joomla for front pages
Store the tiffs in cloud
Proxy the 4d requests via nginx to 4d on local server
Use 4d with active 4d or lightning component to serve pages for search 
Return path to a pdf to browser where the path to pdf is in proxy list so
file gets served by nginx
4D never gets exposed to public.

Paul




--
View this message in context: 
http://4d.1045681.n5.nabble.com/4D-Web-Store-Approach-tp5752518p5752552.html
Sent from the 4D Tech mailing list archive at Nabble.com.
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Server Mirroring

2017-03-22 Thread Paul Dennis via 4D_Tech
I was thinking of doing using aws and S3 storage. I currently do this with 
my backups and it would work just as well  for the log files. AWS has a sync
client you can call this to synchronise the directory from 4D ie upload the
log. The on mirror server in reverse sync back to local then integrate the
log file.
Paul  



--
View this message in context: 
http://4d.1045681.n5.nabble.com/Re-Server-Mirroring-tp5750849p5750870.html
Sent from the 4D Tech mailing list archive at Nabble.com.
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Re:Server Mirroring

2017-03-21 Thread Paul Dennis via 4D_Tech
I am interested in this. Are both servers on local network ? I am thinking of
live server in cloud and backup mirror on premises. 
Paul



--
View this message in context: 
http://4d.1045681.n5.nabble.com/Re-Server-Mirroring-tp5750849p5750852.html
Sent from the 4D Tech mailing list archive at Nabble.com.
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: PHP random errors

2017-03-14 Thread Paul Dennis via 4D_Tech
I have not managed to solve this problem of running 2 copies of 4D on same
machine both calling php. I have them running on reports 8002 and 8010 with
5 processes and also I tried this

auto_prepend_file = "E:/V15 R5 Compare
Client/Resources/php/Windows/_4D_Execute_PHP.php"
session.save_path = "E:/V15 R5 Compare Client/clientlocal/WebFolder"

I'm not sure which php.ini I'm supposed to be editing the one local to the
database of one local to the 4D application. It works fine  with a single
copy running.

Has anyone managed to solve this. Windows V15 r5.
Thanks
Paul



--
View this message in context: 
http://4d.1045681.n5.nabble.com/PHP-random-errors-tp5747969p5750765.html
Sent from the 4D Tech mailing list archive at Nabble.com.
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: [off] DreamWeaver replacement for maintaining 4D based website?

2017-02-17 Thread Paul Dennis via 4D_Tech
FWIW I use the lightning component on 4d and oxygen for editing and checking
syntax. However since Lightning uses templates I have found Stylizer
http://www.skybound.ca/ for edting css is the best thing since sliced bread
(if you hate css as much as I do).



--
View this message in context: 
http://4d.1045681.n5.nabble.com/off-DreamWeaver-replacement-for-maintaining-4D-based-website-tp5733085p5750322.html
Sent from the 4D Tech mailing list archive at Nabble.com.
**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**