Get response error "This list already exists. You need to enter a different name." - getresponse

I am using GetResponse and trying to create a new list and seeing this error :
This list already exists. You need to enter a different name.
But I have not created any list with this name. So how is it possible?
Is GetResponse checking its entire database on lists created by the same name ?

Yes, GetResponse checks it's entire DataBase.
From the GetResponse Docs:
Please remember that the name must be unique – it can’t exist in any GetResponse account. The name must be between 3-64 characters (only lowercase a-z, numbers, minus (-), and underscore (_).

Related

importing CSV into FileMaker Pro 18 with CSV header line

Despite searching both Google and the documentation I can't figure this out:
I have a CSV file that has a header line, like this:
ID,Name,Street,City
1,John Doe,Main Street,Some City
2,Jane Done,Sideroad,Other City
Importing into FileMaker works well, except for two things:
It imports the header line as a data set, so I get one row that has an ID of "ID", a Name of "Name", etc.
It assigns the items to fields by order, including the default primary key, created date, etc. I have to manually re-assign them, which works but seems like work that could be avoided.
I would like it to understand that the header line is not a data set and that it could use the field names from the header line and match them to the field names in my FileMaker table.
How do I do that? Where is it explained?
When you import records, you have the option to select a record in the source file that contains field names (usually the first row). See #4 here.
Once you have done that, you will get the option to map the fields automatically by matching names.
If you're doing this periodically, it's best to script the action. A script will remember your choices, so you only need to do this once.

Infusionsoft populate custom field via API

I am trying to set the value of a custom field that belongs to a contact via the Infusionsoft API.
When I try to create or update the contact with the custom field value set I receive the following response:
[NoFieldFound]No field found: Contact.InitialSiteVisitTime
Which leads me to believe that the custom field value is stored in a different table. Can anyone please tell me the name of the table that holds Infusionsofts custom field values?
Infusionsoft automatically prefixes custom field names with an underscore. Adding the underscore to the name allows to populate this value via the API successfully.
Note, that custom fields API names (the way they stored in Infusionsoft database) not always equal to how you name a custom field on creation.
This article shows where your actual custom fields API names are listed.

How to store hidden fields inside message in web application?

I have web app (laravel 5.3, mysql) where users can comment any entity in project (almost every page contains something like chat)
I want to add possibility to mention other users inside message via '#' symbol ("Hello, #John, see here", for example).
When this message is posted to chat user named John must get notification about new message (via email, if he is offline).
Every message is connected to some page (/object/45, for example), so when email is sent user will know the page where he was mentioned.
The question is how to store this inside database?
message field has type text
In this example row would contain this data "Hello, #John, see here" (without quotes).
Problem is that there can be many users with name "John" so I can not not do simple:
select email from users where username = 'John' -- email is used as login
Also username can be something like #John Malkovich, so I have to parse string to find out, if "John" or "John Malkovich" was mentioned.
What is unique - user id.
So how to store this inside database?
Possible solution:
Hello, [user=34], see here - field in database
Parse string before displaying to web browser and replace this string with
Hello, #John, see here
but, obviously, no one can paste literal text '[user=123]' inside message, because it would be interpreted as userid.
P.S. Inside one message many users can be mentioned.
Maybe you could create something like <span value="user34">John Malkovich</span> and parse the value?
Or <span data-user-id="user34">John Malkovich</span> is probably better semantically.
Have absolutely no experience in this kind of stuff though, so don't take me too seriously ;)

Copy data from one field to another field in a same Table(MS ACCESS 2013)

I'm learning MS access. So, pls tell me step by step.
Imagine a form where it asks user to input TWO information. One is Present Address and another one is Permanent Address.
I want to know how can I copy PRESENT ADDRESS data to PERMANENT ADDRESS data. But I don't want it to copy immediately. If I click a certain Button and PERMANENT ADRESS is empty(null) then it copy the data.
I found a video on youtube but it showed how to copy one form to another… Want to do it in same form…
Pls reply… Thanks is advance…
Using the OnClick event of the button, that will be:
If IsNull(Me![Permanent Address].Value) Then
Me![Permanent Address].Value = Me![Present Address].Value
End If
I assume that the only reason for "present address" to be different from "permanent address" is if it is actually a "temporary address".
I would approach this differently. Instead of calling the non-permanent address the "present" address, call it the "temporary" address. Also, add a boolean (yes/no) field named UseTemporaryAddress. Then you can use a query to get the present address, instead of pulling the data directly out of the table:
PresentAddress: IIf([UseTemporaryAddress], [TemporaryAddressField], [PermanentAddressField])

enter multiple mail ids and separated by ';' and validation in flex

I was creating a form. Certian fields of the form store all of those IDs to a single field separated by a comma or semicolon. how to send the mail id's for email validation which is providing by flex by default.
You can split the values in the field (using a standard string split) on comma (or whatever separator you decide to use), and then use the email validator for each of the splitted string (email Ids).
This is in addition to the answer marked as correct above:
https://wimdeblauwe.wordpress.com/2011/02/07/validation-of-multiple-email-addresses-in-flex/
For our flex application, I had a ‘cc’ field that could handle
multiple email addresses. When adding validation, I first used the
standard EmailValidator class. However, this would not work as soon as
you want to add multiple email addresss, like:
foo#company.com;bar#company.com