Re: Video viewer on Webarea on Windows 7

2018-11-01 Thread Keisuke Miyako via 4D_Tech
Hello, I don't have a direct answer to you question concerning Web Area and Windows 7, but I can share some information that may or may not be relevant; could it be a path issue? the URL representation of a local file path on Windows is a bit strange: something like

Re: Linefeed option not working for v16 emails

2018-11-01 Thread Janet Jonas via 4D_Tech
I exclusively use CR - Char(13), I never use Char(10) in combination, and never had this issue until v16. From the documentation for v16 and v15 SMTP_SetPrefs: Parameter = lineFeed, Type = longint, Description: 1 = [default] Add, 0 = Don't Add, -1 = No Change SMTP servers recognize the end of

Re: Structure Location--Best Practices...?

2018-11-01 Thread Kirk Brooks via 4D_Tech
Robert, I tend to go with: /database name/ structure.4db datafile/database name.4dd On Thu, Nov 1, 2018 at 6:29 PM Robert ListMail via 4D_Tech < 4d_tech@lists.4d.com> wrote: > Thanks guys, that covers Windows... what about macOS? > > R > > Sent from my iPhone > > > On Nov 1, 2018,

Re: Linefeed option not working for v16 emails

2018-11-01 Thread Keisuke Miyako via 4D_Tech
Hello, there was a recent fix in v16 nightly builds ACI0098578 Duplicate CRLF despite the use of the following command "SMTP_SetPrefs (0;2;0)" with 0 as value for parameter "lineFeed". https://bugs.4d.fr/fixedbugslist?branch=16 which on face reads like a different issue (duplicate CRLF, as

Re: Structure Location--Best Practices...?

2018-11-01 Thread Robert ListMail via 4D_Tech
Does using another folder within the 4D folder resolve any problem? My first thought was to have the database folder as a root folder and not in another folder and TS is telling me the same. I suppose this makes more sense if the server is serving > 1 DB. Thanks, R Sent from my iPhone

Re: Structure Location--Best Practices...?

2018-11-01 Thread Robert ListMail via 4D_Tech
Thanks guys, that covers Windows... what about macOS? R Sent from my iPhone > On Nov 1, 2018, at 5:25 PM, Jeffrey Kain via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > I'd stay away from Program Files and the root of C (but a C:\4D\ base folder > would be fine if you only have one drive).

Re: Structure Location--Best Practices...?

2018-11-01 Thread Chuck Miller via 4D_Tech
This is what I do as ell. Placing in program folder is problematic on windows and macs these days. I also place the built client on C drive in a new folder named appropriately Regards Chuck

Re: Linefeed option not working for v16 emails

2018-11-01 Thread John DeSoi via 4D_Tech
> On Nov 1, 2018, at 3:22 PM, Janet Jonas via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > We recently switched to v16 and found out today that our plain text emails > are no longer getting a linefeed added to the carriage returns in the body of > plain text we send out. After looking at the

RE: CREATE USER Programmatically?

2018-11-01 Thread Randy Engle via 4D_Tech
Kirk You da' man! Randy Engle, Director XC2 Software LLC – XC2LIVE! Internet – Hosted – In the Cloud: On-line Backflow Test Entry! XC2Live! - Backflow Program Management Operational Now! – Call for additional information: 800.761.4999 -Original Message- From: 4D_Tech

Re: CREATE USER Programmatically?

2018-11-01 Thread Kirk Brooks via 4D_Tech
Hey Randy, You're not a dope - it's a non-intuitive. I integrated my user system with the 4D system a couple of years ago. Allows me to keep the really fine-grained permissions they know and love while letting 4D sweat the login stuff. Plus gives me a *much* easier way to know who the user is

RE: CREATE USER Programmatically?

2018-11-01 Thread Timothy Penner via 4D_Tech
Take a look at: SET USER PROPERTIES http://doc.4d.com/4Dv16/4D/16.4/Set-user-properties.301-3979154.en.html -Tim ** 4D Internet Users Group (4D iNUG) Archive: http://lists.4d.com/archives.html Options:

CREATE USER Programmatically?

2018-11-01 Thread Randy Engle via 4D_Tech
I haven't used "4D Users" in a "long time" ( I roll my own user system...but 4D Users need it now) Maybe I'm being a dope (likely), but I'm not seeing a way to create users programmatically. A shove in the right direction would be most appreciated. Gracious Thanks Randy Engle, Director

Re: Structure Location--Best Practices...?

2018-11-01 Thread Jeffrey Kain via 4D_Tech
Separate drive from the OS in a folder named 4D - i.e. D:\4D\Data D:\4D\Structure D:\4D\Backup I'd stay away from Program Files and the root of C (but a C:\4D\ base folder would be fine if you only have one drive). Anything else should work - whatever is easy to manage for you. > On

Structure Location--Best Practices...?

2018-11-01 Thread Robert ListMail via 4D_Tech
When deploying a 4D (v17) structure (actually a built Server in this case) where is the optimal place to store these files? Over the years I’ve seen the structure stored in numerous places. However, as I’m configuring a new Windows 2016 server to be used exclusively to server 4D Server, I

Listbox Crashes 4D in v17

2018-11-01 Thread Sannyasin Siddhanathaswami via 4D_Tech
In v16, I added a spacer column with this code: LISTBOX INSERT COLUMN FORMULA(*;"CCTransactionsLB";3;"SpacerCol";" ";Is text;" ";$headerVar) LISTBOX SET COLUMN WIDTH(*;"SpacerCol";10) OBJECT SET ENTERABLE(*;"SpacerCol";False) //make column unenterable Unfortunately, this crashes 4D (quits to

Video viewer on Webarea on Windows 7

2018-11-01 Thread Jim Labos - infobase via 4D_Tech
I am just testing a way to display short intructional videos in a 4D Webarea via simple HTML. On Mac it looks something like this: Video type="video/mp4" width="980" autoplay="True"> ERROR: Cannot locate Help file.

Linefeed option not working for v16 emails

2018-11-01 Thread Janet Jonas via 4D_Tech
We recently switched to v16 and found out today that our plain text emails are no longer getting a linefeed added to the carriage returns in the body of plain text we send out. After looking at the commands, specifically SMTP_SetPrefs, adding a linefeed is the default setting still in this

RE: Using 4D with Git...

2018-11-01 Thread Epperlein, Lutz (agendo) via 4D_Tech
If bitbucket works like a usual git server (I don't have experiences with it), you have to *clone* your repository (the remote one at github or the local repo) to bitbucket. The repository contains the whole history of all commits. You don't lose anything. Subsequent sync operations such as

Re: Using 4D with Git...

2018-11-01 Thread Robert ListMail via 4D_Tech
If you start with your own local git data and then publish the project to GitHub and then move it to bitbucket do you get to see the granularity of the commits and have all of the other options offered via Git? Or, do you lose the history with each transition? Thanks, Robert Sent from my