Quantcast
Channel: Adobe Community: Message List

Re: Geofences and in-app messaging

0
0

Actually, on discussion with another analyst, I've heard that the traits (geofence) do NOT need to be in the same call, however I am having difficulty associating the trigger for CTAs to geofence traits to get successful in-app messaging to fire.  I do ensure that all triggers are in the same call.


Re: How to configure default list of columns to display in a list in Adobe Campaign Classic

Re: Single Step Opt Out Option in Adobe Campaign Standard

0
0

Hi,

 

it can definitely be achieved by a single click. since you are asking in standard try to follow the below steps and see if it can be achieved.

 

1.once the user clicks on the unsubscription link, the REST API call must be made to ACS to update subscription schema using PUT call.

2.once API call is made, we can direct the user to a confirmation page which is opt-out landing pages.

 

this should definitely work.

 

Regards,

Raj

Re: Single Step Opt Out Option in Adobe Campaign Standard

0
0

One idea would be:

Assign a category to the link to uniquely identify it.

Implement a technical workflow which processes all clicks on this link and unsubscribe the user by the workflow

Re: Combining two different schemas output transition - Adobe Campaign Standard

0
0

You could try:

- use newuuid to add @uuid for each record on both sides.

- add an intersect on @uuid

- add a complement on the intersect

The complement shall contain both types of data

Re: Writing Data to a Custom Resource

0
0

Yes, shall not be any issue.

Just use a custom resource and update data activity

Re: How To Hide Move option in AEM Dam Assets Page

0
0

I agree with Leo. Here is an example for the ACL setting for the relevant node:

  • Principal  :  everyone 

  • Type  Deny 

  • Privileges  jcr:read 

 

then for the group you would like the same node to be visible:

  • Principal  :  YOUR_GROUP 

  • Type  :  Allow 

  • Privileges  jcr:read,jcr:write 

 

Re: Combining two different schemas output transition - Adobe Campaign Standard

0
0

Sure, will try that. But isn't Union Possible ?


Re: Enabling anchor tag feature for RTE

0
0

Thanks, JaideepBrar I have used your example but it still didn't work. I believe your shared example is helpful and the correct one, but I think there is an issue with my environment or the way it is setup. I had to implement the feature outside of AEM.

 

But thanks for the reply and I hope it helps others as well who have the same problem.

Re: Definition of eventDate and contactDate

Re: How to Write urn:nms:rtEvent in Javascript Activity

0
0

Hi,

 

Anyone achieved <urn:Write> in Javascript.

 

Regards,

Rajshekar.

Re: How To Hide Move option in AEM Dam Assets Page

0
0

Thanks Berliant, it worked.

Re: How To Hide Move option in AEM Dam Assets Page

Re: Can not search asset with SQL2 by metadata if its data type is Long or Integer.

0
0

Yes, we did add this custom property to /oak:index/damAssetLucene for index.

Re: Definition of eventDate and contactDate

0
0

I think it also depends on some scenarios, for instance,

 

  1. A delivery can be scheduled to start sending (contacting customers) at a specified date/time in the delivery template, this is your "Contact Date", however, by default this is not set, therefore, the "Contact Date" becomes the time the delivery started being processed.
  2. In the case of setting the scheduler to start sending messages at a specified time, you can still execute the campaign workflow which will prepare the messages etc, however, the delivery will be waiting until the "Contact Date" is met to then start the delivery.

3. EventDate is tied to broadlog entries, and by default is in the order that that particular entry/record was processed, also in the case of retris (soft bounces), the eventDate will be updated to the last retry datetime.

 

4. A broadlog entry for a campaign which was executed today (i.e 19th 12 2019) and then failed to get delivered by a temporary failure error type (soft bounce) it will trigger retries, by default x5 a day after the first error and then each one every day, until the validity period of the delivery is met. In this case, if the entry runs into the next day and is still retrying, the eventDate will no longer be the 19th, but rather the 20th.


Re: Sorting data from table in HTML

0
0

Would I need to use Java to sort the data in the table?  I've tried using the sort function of a split to try and get everything ordered, but no matter where I place it the data in the table is still not sorted.  The email pulls directly from the table, so my guess is that I would need to order the data in the table first before it gets pulled into the delivery.

Re: How To Hide Move option in AEM Dam Assets Page

0
0

Hello All ,

 

1. I have verified by using ACL permission's in apps but seems like it is not working for selected users.

 

2. First i thought it's working due to ACL permission's but it is working due to which i have overlay move node to apps (which don't have properties to it so it was picking from apps first).berliant @hamidk92094312Overlay_but_no_node_properties.pngHidden_for_all.png

Acl Permission -

Acl_Permission.png

 

 

few path's related to it.

/libs/dam/gui/content/assetdetails/jcr:content/actions/moveasset

/libs/dam/gui/content/assets/jcr:content/actions/selection/moveasset

/libs/dam/components/assetshare/actions/move

 

Thanks in advance.

Re: Sorting data from table in HTML

0
0

Hi Emily,

 

this may be helpful for you (query and table template) as example.

Just change fields in the incoming transition according to your workflow  and field which will be used for sorting.

 

var query = NLWS.xtkQueryDef.create({queryDef: {

  schema: vars.targetSchema, operation: "select",

  select: { node: [

    {expr: "@internalName"},

    {expr: "@label"},

    {expr: "@folderLabel"},

    {expr: "@lastStart"},

    {expr: "@name"},

  ]},

  orderBy: { node: [{expr:"@label", sortDesc:"true"}] }

}});

var records = query.ExecuteQuery();

 

 

vars.htmlEmail = '';

vars.htmlEmail += '<table border="1"><thead>';

vars.htmlEmail += '<tr><th>internalName</th><th>Label</th><th>Last Start</th><th>Folder</th><th>Name</th></tr>';

vars.htmlEmail += '</thead><tbody>';

for each(var record in records.getElements()){

  vars.htmlEmail += '<tr>';

  vars.htmlEmail += '<td>'+record.$internalName+'</td>';

  vars.htmlEmail += '<td>'+record.$label+'</td>';

  vars.htmlEmail += '<td>'+record.$lastStart+'</td>';

  vars.htmlEmail += '<td>'+record.$folderLabel+'</td>';

  vars.htmlEmail += '<td>'+record.$name+'</td>';

  vars.htmlEmail += '</tr>';

}

vars.htmlEmail += '</tbody></table>';

 

Regards,

Milan

Re: How to define new placeholder for replication Agent?

0
0

Can someone please help on this?

Re: How to configure default list of columns to display in a list in Adobe Campaign Classic

0
0

Dear Amit,

 

You can achieve this by building a string via the compute string.The Compute string is defined via the <compute-string> element under the mail element of data schema.

 

Example: Suppose we have recipeint table

 

<srcSchema name="recipient" namespace="nms"> 

  <element name="recipient">

  <compute-string expr="@lastName + ' ' + @firstName +' (' + @email + ')' "/>

  ...

  </element>

</srcSchema>

 

Result: Krishna Gupta (krishna.gupta@xyz.com)

 

By using Compute string we can show necessary fields out of all for all records in a interface view.

 

Regards,

Krishna Gupta

How to use the 'externalId' field for ID reconciliation in Trigger in ACS environment?

0
0

Hi Team,

 

Could you please help on ID reconciliation in Trigger in ACS instance. I want use the "externalID" field to reconcile the data coming from Analytics side(after trigger execution) from which my profile will get mapped with tracked profile from analytics data.

 

Below are the screenshots of event content and enrichment section in Trigger in ACS for the reference. You can see in the 2nd image I have to use extended profile field/external ID filed in "Field of linked resource". Can anyone help me with this query?

 

 

Thanks,

 

ID reconciliation 1 ACS.jpg

 

ID reconciliation.jpg

 

 

Sachin C

Dynamic Form - New table instance loses script functionality.

0
0

I have script functions withing two text fields within a table. Whenever the user clicks the add button, a new instance of the table appears. BUT. The text fields lose their scripts?

 

How can I make a new instance of a table that will inherent the original table's scripts? I want it to repeat the row and all of the programming within the row.

 

Here is what I am trying to do.

 

I have "ghost text" in two text fields within a table. It gives the user instructions, but when they click in the text field, the instructions disappear so they can type. But when the user clicks the add button, the 2nd instance of the table does not have the "ghost text" tool tip instructions. It is just blank.

 

Example of my code for one of the text fields. Works like a charm, but it seems this scripting does not make it to the newly added table, only the initial table gets the ghost text instructions.

 

MandatoryForm.page1.B12_rows.B12_row.TableB12.Row1.Table2.Row5.txtOffice::initialize - (JavaScript, client)

 

if (this.isNull)

{

this.fontColor = "153,153,153";

this.font.posture = "italic";

}

 

MandatoryForm.page1.B12_rows.B12_row.TableB12.Row1.Table2.Row5.txtOffice::enter - (JavaScript, client)

 

this.fontColor = "0,0,0";

this.font.posture = "normal";

 

MandatoryForm.page1.B12_rows.B12_row.TableB12.Row1.Table2.Row5.txtOffice::exit - (JavaScript, client)

 

if (this.isNull)

{

this.fontColor = "153,153,153";

this.font.posture = "italic";

MandatoryForm.page1.B12_rows.B12_row.TableB12.Row1.Table2.Row5.txtOffice::prePrint - (JavaScript, client)

 

this.format.picture.value = "";

 

MandatoryForm.page1.B12_rows.B12_row.TableB12.Row1.Table2.Row5.txtOffice::postPrint - (JavaScript, client)

 

this.format.picture.value = "null{'" + this.assist.toolTip.value + "'}";

 

 

MandatoryForm.page1.B12_rows.B12_row.TableB12.Row1.Table2.Row5.txtOffice::ready:form - (JavaScript, client)

 

this.execEvent("exit");

this.format.picture.value = "null{'" + this.assist.toolTip.value + "'}";

 

 

 

 

HERE IS MY ADD BUTTON SCRIPT

 

MandatoryForm.page1.B12_heading.btn_Add_B12::click - (JavaScript, client)

 

this.resolveNode('B12_rows.B12_row._TableB12').addInstance(1);

if (xfa.host.version < 8) {

xfa.form.recalculate(1);

}


Re: AEM Archetype 22 - Build error: ArchiverException: Unable to read manifest file (invalid manifest format)

0
0

Spot on. I did face the same issue and the reason was formatting. Glad i found this post.

Company leaver - can we access (what were) their Workspace projects?

0
0

Hi all,  we had a colleague leave on Friday and we now cannot see any of the projects she had set up in Workspace.  Does anyone know if these can be captured in any way and then shared with those of us left as she had not done so prior to leaving?

 

Many thanks in advance.

 

Kind regards

Kirsten

Re: Can we export audiences created in target to adobe analytics ?

0
0

Hi sabithar6283303

 

Adobe Target is an optimisation tool and thus it does not collect any user information. Target audiences would just identify the visitors in real time and display the respective activity. SInce it does not have any user data, it does not share the information to any other solution. Hope that helps to clarify.

Re: How to Write urn:nms:rtEvent in Javascript Activity

0
0

Hi All,

 

Am getting below error :

Unspecified function library ('library' attribute) for JavaScript SOAP call 'Write' in schema 'xtk:session'.

 

Regards,

Rajshekar.

Re: How To Hide Move option in AEM Dam Assets Page

0
0

Can you once more clarify what is the end expectation of this ? Do you want to hide "move" option in dam asset console for users ? I would like to ensure we are all on the same page.

Re: How to configure default list of columns to display in a list in Adobe Campaign Classic

0
0

Hi @ckumari12

 

You have to use a navigation Tree to achieve this.

Example for cus:customResource and three fields use this.

 

<navtree entitySchema="xtk:navtree" img="nl:folders.png" label="custom" name="custom"  namespace="cus" xtkschema="xtk:navtree">  <model label="Custom Resource Mapping" name="customMapping">    <nodeModel img="xtk:package.png" label="customResource" name="customResource">      <view label="customResource" name="listdet" schema="cus:customResource" type="listdet">        <columns>          <node xpath="@field_name_1"/>          <node xpath="@field_name_2"/>         <node xpath="@field_name_3"/>        </columns>        <orderBy>          <node expr="@field_name_3" sortDesc="true"/>        </orderBy>      </view>    </nodeModel>  </model></navtree>

 

Regards,

Amit

Re: How To Hide Move option in AEM Dam Assets Page

0
0

Hi Hamid @hamidk92094312 ,

 

The expected result is for users it should be hidden and for admin it should be visible.

 

actual result :  after overlaying these nodes

 

/libs/dam/gui/content/assetdetails/jcr:content/actions/moveasset

/libs/dam/gui/content/assets/jcr:content/actions/selection/moveasset

 

tried ACL permission by adding user and selected deny jcr:read property which did not worked and instead user is able to see move which is coming from libs and admin is able to see move button which is coming from apps. which is not expected, only admin should view move button.

 

Thanks in advance.


SAP Adobe PDF generated with Huge size

0
0

Hello Everyone,

 

We have a Adobe PDF form, which is designed in SAP LiveCycle Designer and when PDF is generated then the SIze of file is in MB's.

 

But if I set the Control Parameter NOPRINT = 'x' in SAP for particular form. Then the size comes out in KB.

 

I analysed the BIG Size PDF using Audit Space Usage option, and 99 percent of size is acquired by Structure Info.

 

All other forms are not having this issue. Only one particular form is having this issue.

 

Any hint to proceed will be very helpfull.

 

Kind Regards,

Monis

"You are not allowed to create or update this content"

0
0

Why should I not be able to edit my own entry?

I can't save a post I have created.

When I try, I get this message: "You are not allowed to create or update this content"

Implementing HTTP SSL with Dispatcher - 502 miss

0
0

Hi All,

 

I am trying to implement SSL with AEM dispatcher in Linux machaine.

I was able to install apche and dispatcher ssl latest versions in my local and followed all the necessary dispatcher configurations.

 

I am able to request HTTPS to dispatcher and not getting response from dispatcher.I need some help in resolving this issue.

PLease find the logs of dispatcher.

 

[Sat Feb 01 13:53:59 2020] [W] [pid 817:tid 140175980029696] ignoring unexpected character 

[Sat Feb 01 13:53:59 2020] [W] [pid 817:tid 140175980029696] ignoring unexpected character P

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175980029696] Unable to parse response: no more bytes available (remote peer closed connection) (no more bytes available (remote peer closed connection)), state = 1

[Sat Feb 01 13:53:59 2020] [W] [pid 817:tid 140175980029696] Failed parsing response: no more bytes available (remote peer closed connection) (no more bytes available (remote peer closed connection)).

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175980029696] No socket reuse: response body not fully consumed

[Sat Feb 01 13:53:59 2020] [I] [pid 817:tid 140175980029696] "GET /content/we-retail/us/en/men.html" 502 miss [secure/rend01] 30ms

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] Found farm secure for localhost

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] checking [/favicon.ico]

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] cachefile does not exist: /var/www/html/sitea/favicon.ico

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] try to create new cachefile: /var/www/html/sitea/favicon.ico

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] cache-action for [/favicon.ico]: CREATE

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] Creating new connection: 127.0.0.1:8443

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] Connected to backend rend01 (127.0.0.1:8443)

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] Adding request header: Host

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] Adding request header: User-Agent

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] Adding request header: Accept

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] Adding request header: Sec-Fetch-Site

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] Adding request header: Sec-Fetch-Mode

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] Adding request header: Referer

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] Adding request header: Accept-Encoding

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] Adding request header: Accept-Language

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] Adding request header: Cookie

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] Adding request header: Via

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] Adding request header: X-Forwarded-For

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] Adding request header: X-Forwarded-SSL

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] Adding request header: X-Forwarded-SSL-Cipher

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] Adding request header: Server-Agent

[Sat Feb 01 13:53:59 2020] [W] [pid 817:tid 140175971636992] ignoring unexpected character 

[Sat Feb 01 13:53:59 2020] [W] [pid 817:tid 140175971636992] ignoring unexpected character 

[Sat Feb 01 13:53:59 2020] [W] [pid 817:tid 140175971636992] ignoring unexpected character 

[Sat Feb 01 13:53:59 2020] [W] [pid 817:tid 140175971636992] ignoring unexpected character [Sat Feb 01 13:53:59 2020] [W] [pid 817:tid 140175971636992] ignoring unexpected character 

[Sat Feb 01 13:53:59 2020] [W] [pid 817:tid 140175971636992] ignoring unexpected character 

[Sat Feb 01 13:53:59 2020] [W] [pid 817:tid 140175971636992] ignoring unexpected character P

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] Unable to parse response: no more bytes available (remote peer closed connection), state = 1

[Sat Feb 01 13:53:59 2020] [W] [pid 817:tid 140175971636992] Failed parsing response: no more bytes available (remote peer closed connection).

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] initializing retry, closing connection

[Sat Feb 01 13:53:59 2020] [W] [pid 817:tid 140175971636992] ignoring unexpected character 

[Sat Feb 01 13:53:59 2020] [W] [pid 817:tid 140175971636992] ignoring unexpected character 

[Sat Feb 01 13:53:59 2020] [W] [pid 817:tid 140175971636992] ignoring unexpected character 

[Sat Feb 01 13:53:59 2020] [W] [pid 817:tid 140175971636992] ignoring unexpected character [Sat Feb 01 13:53:59 2020] [W] [pid 817:tid 140175971636992] ignoring unexpected character 

[Sat Feb 01 13:53:59 2020] [W] [pid 817:tid 140175971636992] ignoring unexpected character 

[Sat Feb 01 13:53:59 2020] [W] [pid 817:tid 140175971636992] ignoring unexpected character P

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] Unable to parse response: no more bytes available (remote peer closed connection) (no more bytes available (remote peer closed connection)), state = 1

[Sat Feb 01 13:53:59 2020] [W] [pid 817:tid 140175971636992] Failed parsing response: no more bytes available (remote peer closed connection) (no more bytes available (remote peer closed connection)).

[Sat Feb 01 13:53:59 2020] [D] [pid 817:tid 140175971636992] No socket reuse: response body not fully consumed

[Sat Feb 01 13:53:59 2020] [I] [pid 817:tid 140175971636992] "GET /favicon.ico" 502 miss [secure/rend01] 12ms

 

When I try to access page i am getting bad gateway.

 

 

ACS Mirror Page URL extraction using Adobe Campaign Standard

0
0

Hi Team,

 

We are using ACS connector feature to connect the Adobe Classic to Adobe standard. So using this feature, we are replicating ACS delivery details(broad logs and tracking logs) from Standard instance to the Classic instance. But the issue is that we are not able to get the mirror page details in classic.

 

So, can anyone has an idea about - Which data schema and configuration need to replicate using ACS connector so that we can access and use the ACS deliveries mirror page in CRM marketing history page in classic environment.??"

 

Thank you in advance!!

 

Sachin C

Reports being Displayed in an IFrame

0
0

Hi All,

 

My campaign server is running on an IIS windows box, and when I try to view reports from the IFrame I get an access denied error. Fairly confident this has nothing to do with adobe permissions. Has anyone had this issue before? Open to any solutions server side or adobe console side.

 

 

Thanks,

Connor

 

Re: Reports being Displayed in an IFrame

0
0

Additional Details,

 

If I click "Open this content in a new window" my web version of Adobe is opened and after I log in, I can view the report with no problems

Incremental Query

0
0

Hello,

 

Quick question about incremental queries. How exactly does this query know who has already received an email? I have a business requirement where the remainder of the emails that did not get sent out, will need to be sent the following day during business hours.. Can anyone answer this?

 

Thanks,

Connor

@wodnicki maybe?


Bulk update page nodes using CURL

0
0

Hai ,

How to upload the properties of all the pages using the CURL.

Example: If I want to update all the titles component's title field in all the pages under the content.

Thanks in advamce.

Best possible ways to import the data in Adobe Campaign Standard from a remote location?

0
0

Hi Team,

 

We have a requirement to import the data (large amount of data) on a daily basis from the remote server location.

So, could please suggest or guide here, the best possible way (like SFTP, FDA) to import the data in Adobe Campaign Standard?

 

Thank you in advance!!

 

Sachin C

Re: Best possible ways to import the data in Adobe Campaign Standard from a remote location?

0
0

Hi Sachin,

You can use the SFTP to store all the files and create data import workflows which can be triggered on daily basis. This workflow will import data from SFTP to your campaign standard database.

 

Thanks

Re: Incremental Query

0
0

Hi,

 

Incremental query creates a temp table in the database and checks against those records. it is kind of never deleted. We can give email id as the key to reconcile in the incremental query and when the activity runs again, it will make sure it does not pick the same email id's from the incoming data.

 

Regards,

Raj

Standard Packages Uninstall

0
0

Hello all,

 

I have some standard packages that I would like to remove from my environment. After some research it seems there is no uninstall option, but if I create a new instance of my database will those packages be removed? Its a clean environment for the record

 

Thanks,

Connor

"Unique Purchases" Metric

0
0

Hi everyone,

 

I'm trying to create a metric equivalent to "Unique Purchases" in Google Analytics. Would anyone be able to help me find the right calculation for this?

 

Unique Purchases is defined in Google as "total number of times a product was part of a transaction."

 

For example, if there's 1 order, for 2 products, with a total of 6 units; I'd be looking for 2 as "unique purchases".

 

So far, I've been trying to count the SKUs per order - but it isn't returning the right results. Any advice would be much appreciated!

 

COUNT (Product SKU exists (Orders))

 

 

Thanks for your help.

AEM 6.5 Assets - Asset Report: Custom field with sub-nodes

0
0

Hi,

 

The asset report is very useful, but is there a way to output the predictedTags?

Unlike other properties, the predicted tags node has many sub nodes with different names depending on the tags that were applied e.g.

 

jcr:content/metadata/predictedTags/man

 

Is there are way to add jcr:content/metadata/predictedTags/* in order to report on the predicted tags added and the "confidence" attribute.

I suspect this is not possible and will need custom development but would like to confirm.

Also if there is another mechanism other than the asset report to perform this task (that can be extracted to CSV) that would be useful too

 

 

Thanks,

Jim


Re: Standard Packages Uninstall

0
0

Hi Connor,

 

Yes , if you create a new instance the packages would be removed.

 

There is no sure way of uninstalling a package in ACC as of now.

 

Regards,
Adhiyan

Agents on author : Reverse Replication Agent (publish_reverse) is enable

0
0

Hello Everyone,

 

I was going through the document at Replication and somewhere on Note section it was mention

Effectively disabled by default (as of AEM 6.1) :

  • Agents on author : Reverse Replication Agent (publish_reverse)

 

But, when I checked in my AEM instance 6.5, mentioned agent was enable. Do we need correction on Page content or it is enable and fine ?

 

Thanks

 

Re: Reports being Displayed in an IFrame

0
0

Hi Connor,

 

Please check if the IIS CORS module has been installed and allow origin of your AC web site added.

For more detailed explanation please do a search on the web for CORS/Cross origin security guidelines.

 

Regards
J-Serge

Re: Reports being Displayed in an IFrame

0
0

Hi Connor,

 

Please notice also a recent ACC update, regarding build version 20.1 (Feb 2020) (and so more recent builds): there is now an additional setting about Reports, please read the paragraph "X-Frame-options header  behavior" in the documentation below:

 

Properties of the report

 

Regards

J-Serge

JS minification is not working for some clientLibs

0
0

Hi All,

 

I'm using this below property to minify the JS. But, it is working for some clientLibs and it not working for some ClientLibs. Can someone have any idea in this issue?

 

jsProcessor: ["default:none", "min:gcc;compilationLevel=advanced"]

 

Also, I tried with advanced, simple, whitespace. still no luck.

 

 

Thanks,

Vijay

Re: JS minification is not working for some clientLibs

Texts are highlighted pink in Adobe Illustrator?

0
0

Screen Shot 2020-03-16 at 10.22.41 AM.png

 

I used a new pc so the files are copied from my old pc to the new one. But I put it in the same location.

 

But now, I'm experiencing these highlighted texts when I open some of my files.
After downloading the font that was missing, It's not updating.
Is there anyway I can update all missing font ALL at the same time so I wont have to change font one by one?

 


I'm using

Screen Shot 2020-03-16 at 10.25.18 AM.png

 

 

and Adobe Illustrator 2020 (Latest Version).






Latest Images