Quantcast
Channel: Adobe Community: Message List
Viewing all 140765 articles
Browse latest View live

Re: AEM 6.5 SPA React component with datasource in dialog


Re: Asset name with spaces

$
0
0

You can have assets with spaces in their names.

As far as %2520 is concerned,

The common space character is encoded as %20 . The % character is encoded as %25.

The way you get %2520 is when your url already has a %20 in it, and gets urlencoded again, which transforms the %20 to %2520.

https://stackoverflow.com/questions/16084935/a-html-space-is-showing-as-2520-instead-of-20

 

As Vish.dhaliwal recommended, you should install latest SP to avoid running into known issues. You can find it here:

AEM 6.4 Service Pack Release Notes

Re: Adding "Change Thumbnail" button to an asset

$
0
0

The file type for both folders & files/assets are different.

You can create some custom code(maybe using JS) that reads the number of assets on a page/in crx and adds button to them using JS with DOM.

You can get all the assets on the page and append the button to them using a loop or something like that.

On a page, the assets are basically enclosed in anchor tags which when clicked direct us to the clicked asset.

Ex:

let btn = document.createElement("button");

btn.className = "<bla bla bla>";

btn.appendChild(document.createTextNode("<bla bla bla>"));

EachAsset.appendChild(btn);

Re: AEM 6.5 - Not able to start AEM after SP2 installation.

$
0
0

You are getting the below error:

 

com.adobe.granite.installer.Updater Could not get ConfigurationAdmin to register whitelistentry for BundleUpdater

 

Looking at how this is thrown basically there is a logic statement that is not getting satisfied for your environment, so the bundles from the Service Pack 2 might not be getting written to the repository to be picked up by the installer. Due to this, the installation might be failing.

 

if (active.get() && data.state == State.WRITE_BUNDLES_TO_REPOSITORY) {

// State.WRITE_BUNDLES_TO_REPOSITORY

// write all bundles to the JCR for the JCR installer to pick them up

}

else {

logger.error("Could not get ConfigurationAdmin to register whitelistentry for BundleUpdater. ");

}

 

The logic IF statement fails to be true. so the ELSE is run and logs that error.

There is a chance that the BundleUpdater that is currently installed was never removed from the instance after new service pack installation.

 

What errors do you see in upgrade.log file?

org.apache.sling.distribution.DistributionRequest is not resolved in aem 6.5.2

$
0
0

Hello Everyone,

 

We were using sling distribution API in AEM 6.3. Now when we try upgrading to AEM 6.5.2 below imports are not resolving. Did someone face this issue? if yes could you please share your findings and inputs to come out from this situation. Is there any alternative solution for this ?

 

import org.apache.sling.distribution.DistributionRequest;

import org.apache.sling.distribution.DistributionRequestType;

import org.apache.sling.distribution.DistributionResponse;

import org.apache.sling.distribution.Distributor;

import org.apache.sling.distribution.SimpleDistributionRequest;

Re: AEM 6.4 Quickstart Jar file Not Working

$
0
0

I am having the same problem with AEM 6.4 on Win 10 with Java 8. Can you let me know how long it took for you?

 

Also my log keeps showing this.

07.12.2019 01:14:07.527 *INFO* [PayloadMap Cache Updater Thread] com.adobe.granite.workflow.core.PayloadMapCache No index available yet for workflowDataLucene. Attempt: 183

07.12.2019 01:14:22.528 *INFO* [PayloadMap Cache Updater Thread] com.adobe.granite.workflow.core.PayloadMapCache No index available yet for workflowDataLucene. Attempt: 184

07.12.2019 01:14:37.529 *INFO* [PayloadMap Cache Updater Thread] com.adobe.granite.workflow.core.PayloadMapCache No index available yet for workflowDataLucene. Attempt: 185

07.12.2019 01:14:52.529 *INFO* [PayloadMap Cache Updater Thread] com.adobe.granite.workflow.core.PayloadMapCache No index available yet for workflowDataLucene. Attempt: 186

07.12.2019 01:15:07.535 *INFO* [PayloadMap Cache Updater Thread] com.adobe.granite.workflow.core.PayloadMapCache No index available yet for workflowDataLucene. Attempt: 187

07.12.2019 01:15:22.536 *INFO* [PayloadMap Cache Updater Thread] com.adobe.granite.workflow.core.PayloadMapCache No index available yet for workflowDataLucene. Attempt: 188

07.12.2019 01:15:37.538 *INFO* [PayloadMap Cache Updater Thread] com.adobe.granite.workflow.core.PayloadMapCache No index available yet for workflowDataLucene. Attempt: 189

07.12.2019 01:15:52.538 *INFO* [PayloadMap Cache Updater Thread] com.adobe.granite.workflow.core.PayloadMapCache No index available yet for workflowDataLucene. Attempt: 190

07.12.2019 01:16:07.545 *INFO* [PayloadMap Cache Updater Thread] com.adobe.granite.workflow.core.PayloadMapCache No index available yet for workflowDataLucene. Attempt: 191

07.12.2019 01:16:22.545 *INFO* [PayloadMap Cache Updater Thread] com.adobe.granite.workflow.core.PayloadMapCache No index available yet for workflowDataLucene. Attempt: 192

07.12.2019 01:16:37.546 *INFO* [PayloadMap Cache Updater Thread] com.adobe.granite.workflow.core.PayloadMapCache No index available yet for workflowDataLucene. Attempt: 193

07.12.2019 01:16:52.546 *INFO* [PayloadMap Cache Updater Thread] com.adobe.granite.workflow.core.PayloadMapCache No index available yet for workflowDataLucene. Attempt: 194

07.12.2019 01:17:07.547 *INFO* [PayloadMap Cache Updater Thread] com.adobe.granite.workflow.core.PayloadMapCache No index available yet for workflowDataLucene. Attempt: 195

07.12.2019 01:17:22.548 *INFO* [PayloadMap Cache Updater Thread] com.adobe.granite.workflow.core.PayloadMapCache No index available yet for workflowDataLucene. Attempt: 196

 

 

Any idea whats happening?

Re: Adding a simple sum field

$
0
0

Hi there,

 

By the look of it it seems like you are somehow calling calculate... I am not sure if it needs more investigation with the Hierarchy, but it looks like you have an extra line of code which would be the event itself

 

Look within the event and make sure that you do not have a line event duplicate like the following:

form1.Page1.table.Row1.total::calculate - (FormCalc, client)

form1.Page1.table.Row1.total::calculate - (FormCalc, client)

$.rawValue = parking+(miles*rate)

I hope this will help, otherwise please provide with an image with the full content of the event, plus and image of the hierarchy.

Re: AEM process spiking after running version comparison

$
0
0

We're on AEM 6.4. And correct, they all seem to be INFO or unrelated WARN level messages. Noticed a traversal warning on line 20 here (this is the log at the very start of the error happening). Does that help with any clues? Here's that line separated out so you don't have to hunt:

 

 

06.12.2019 14:41:00.258 *WARN* [Thread-108] org.apache.jackrabbit.oak.plugins.index.Cursors$TraversingCursor Traversed 1000 nodes with filter Filter(query=select e.[jcr:path] as [jcr:path], e.[jcr:score] as [jcr:score], e.* from [nt:base] as a inner join [nt:base] as b on ischildnode(b, a) inner join [nt:base] as c on ischildnode(c, b) inner join [nt:base] as d on ischildnode(d, c) inner join [nt:base] as e on ischildnode(e, d) where name(a) = 'wcm' and isdescendantnode(a, '/home') and name(b) = 'notification' and name(c) = 'config' and name(d) = 'subscriptions' and e.[type] = 'page' option(traversal OK) /* xpath: /jcr:root/home//wcm/notification/config/subscriptions/* [@type='page'] option(traversal ok) */, path=/home//*, property=[:localname=[wcm]]); consider creating an index or changing the query

 

And the rest of the logs as the issue starts:

 

06.12.2019 14:40:02.058 *INFO* [10.107.139.127 [1575643202034] GET /siteadmin HTTP/1.1] org.apache.sling.xss.impl.HtmlToHtmlContentContext AntiSamy warning: The link tag contained an attribute that we could not process. The href attribute had a value of "&#47;libs&#47;wcm&#47;core&#47;content&#47;siteadmin&#46;ico". This value could not be accepted for security reasons. We have chosen to remove the entire link tag in order to continue processing the input.

06.12.2019 14:40:02.058 *INFO* [10.107.139.127 [1575643202034] GET /siteadmin HTTP/1.1] org.apache.sling.xss.impl.HtmlToHtmlContentContext AntiSamy warning: The link tag contained an attribute that we could not process. The type attribute had a value of "image&#47;vnd&#46;microsoft&#46;icon". This value could not be accepted for security reasons. We have chosen to remove the entire link tag in order to continue processing the input.

06.12.2019 14:40:02.058 *INFO* [10.107.139.127 [1575643202034] GET /siteadmin HTTP/1.1] org.apache.sling.xss.impl.HtmlToHtmlContentContext AntiSamy warning: The link tag contained an attribute that we could not process. The rel attribute had a value of "icon". This value could not be accepted for security reasons. We have chosen to remove this attribute from the tag and leave everything else in place so that we could process the input.

06.12.2019 14:40:02.058 *INFO* [10.107.139.127 [1575643202034] GET /siteadmin HTTP/1.1] org.apache.sling.xss.impl.HtmlToHtmlContentContext AntiSamy warning: The link tag contained an attribute that we could not process. The href attribute had a value of "&#47;libs&#47;wcm&#47;core&#47;content&#47;siteadmin&#46;ico". This value could not be accepted for security reasons. We have chosen to remove the entire link tag in order to continue processing the input.

06.12.2019 14:40:02.058 *INFO* [10.107.139.127 [1575643202034] GET /siteadmin HTTP/1.1] org.apache.sling.xss.impl.HtmlToHtmlContentContext AntiSamy warning: The link tag contained an attribute that we could not process. The type attribute had a value of "image&#47;vnd&#46;microsoft&#46;icon". This value could not be accepted for security reasons. We have chosen to remove the entire link tag in order to continue processing the input.

06.12.2019 14:40:02.773 *INFO* [ReplicateOnModification Processor] com.day.cq.wcm.core.impl.event.ReplicateOnModification Auto-Replicated ACTIVATE of /content/en/skill-iq/it-risk-management

06.12.2019 14:40:06.924 *INFO* [10.107.139.127 [1575643206917] GET /content/cq:tags/marketing.infinity.json HTTP/1.1] org.apache.sling.engine.impl.SlingRequestProcessorImpl service: Resource /content/cq:tags/marketing.infinity.json not found

06.12.2019 14:40:07.137 *WARN* [10.107.139.127 [1575643207051] GET /content.pages.json HTTP/1.1] com.day.cq.wcm.core.impl.PageImpl Repository error while checking lock status of /content/versionhistory

06.12.2019 14:40:24.775 *INFO* [oak-repository-executor-1] com.adobe.granite.repository Service [552463, [org.apache.jackrabbit.oak.api.jmx.SessionMBean]] ServiceEvent REGISTERED

06.12.2019 14:40:24.777 *INFO* [oak-repository-executor-1] com.adobe.granite.repository Service [552464, [org.apache.jackrabbit.oak.api.jmx.SessionMBean]] ServiceEvent REGISTERED

06.12.2019 14:40:24.778 *INFO* [oak-repository-executor-1] com.adobe.granite.repository Service [552465, [org.apache.jackrabbit.oak.api.jmx.SessionMBean]] ServiceEvent REGISTERED

06.12.2019 14:40:24.800 *INFO* [oak-repository-executor-1] com.adobe.granite.repository Service [552466, [org.apache.jackrabbit.oak.api.jmx.SessionMBean]] ServiceEvent REGISTERED

06.12.2019 14:40:42.134 *WARN* [10.107.139.127 [1575643242124] GET /libs/granite/core/content/login.html HTTP/1.1] libs.granite.core.components.login.login$jsp j_reason param value 'unknown' cannot be mapped to a valid reason message: ignoring

06.12.2019 14:40:56.701 *INFO* [qtp198891862-1731303] org.apache.sling.auth.core.impl.SlingAuthenticator getAnonymousResolver: Anonymous access not allowed by configuration - requesting credentials

06.12.2019 14:40:56.755 *INFO* [HealthCheck Synchronized Clocks] org.apache.sling.discovery.oak.SynchronizedClocksHealthCheck execute: no topology connectors connected to local instance.

06.12.2019 14:40:56.770 *INFO* [HealthCheck Default Login Accounts] com.adobe.granite.repository.hc.impl.DefaultLoginsHealthCheck Activated, accountLogins=[admin:admin, author:author], consoleLogins=[admin:admin]

06.12.2019 14:40:56.779 *INFO* [HealthCheck SSL Configuration] com.adobe.granite.security.user.ui.internal.servlets.SSLConfigurationServlet The key store for user ssl-service is not initialized (may not exist):

06.12.2019 14:40:56.826 *INFO* [oak-repository-executor-1] com.adobe.granite.repository Service [552467, [org.apache.jackrabbit.oak.api.jmx.SessionMBean]] ServiceEvent REGISTERED

06.12.2019 14:40:56.832 *WARN* [10.107.139.127 [1575643256821] HEAD /libs/granite/core/content/login.html HTTP/1.1] libs.granite.core.components.login.login$jsp j_reason param value 'unknown' cannot be mapped to a valid reason message: ignoring

06.12.2019 14:41:00.258 *WARN* [Thread-108] org.apache.jackrabbit.oak.plugins.index.Cursors$TraversingCursor Traversed 1000 nodes with filter Filter(query=select e.[jcr:path] as [jcr:path], e.[jcr:score] as [jcr:score], e.* from [nt:base] as a inner join [nt:base] as b on ischildnode(b, a) inner join [nt:base] as c on ischildnode(c, b) inner join [nt:base] as d on ischildnode(d, c) inner join [nt:base] as e on ischildnode(e, d) where name(a) = 'wcm' and isdescendantnode(a, '/home') and name(b) = 'notification' and name(c) = 'config' and name(d) = 'subscriptions' and e.[type] = 'page' option(traversal OK) /* xpath: /jcr:root/home//wcm/notification/config/subscriptions/* [@type='page'] option(traversal ok) */, path=/home//*, property=[:localname=[wcm]]); consider creating an index or changing the query

06.12.2019 14:41:01.192 *INFO* [oak-repository-executor-1] com.adobe.granite.repository Service [552468, [org.apache.jackrabbit.oak.api.jmx.SessionMBean]] ServiceEvent REGISTERED

06.12.2019 14:41:02.069 *INFO* [oak-repository-executor-1] com.adobe.granite.repository Service [552469, [org.apache.jackrabbit.oak.api.jmx.SessionMBean]] ServiceEvent REGISTERED

06.12.2019 14:41:02.825 *INFO* [oak-repository-executor-1] com.adobe.granite.repository Service [552470, [org.apache.jackrabbit.oak.api.jmx.SessionMBean]] ServiceEvent REGISTERED

06.12.2019 14:41:28.237 *INFO* [qtp198891862-1725581] org.apache.sling.auth.core.impl.SlingAuthenticator getAnonymousResolver: Anonymous access not allowed by configuration - requesting credentials

06.12.2019 14:41:28.662 *WARN* [10.107.111.251 [1575643288653] HEAD /libs/granite/core/content/login.html HTTP/1.1] libs.granite.core.components.login.login$jsp j_reason param value 'unknown' cannot be mapped to a valid reason message: ignoring

06.12.2019 14:41:42.377 *WARN* [10.107.139.127 [1575643302369] GET /libs/granite/core/content/login.html HTTP/1.1] libs.granite.core.components.login.login$jsp j_reason param value 'unknown' cannot be mapped to a valid reason message: ignoring

06.12.2019 14:41:56.754 *INFO* [HealthCheck Synchronized Clocks] org.apache.sling.discovery.oak.SynchronizedClocksHealthCheck execute: no topology connectors connected to local instance.

06.12.2019 14:41:56.770 *INFO* [HealthCheck Default Login Accounts] com.adobe.granite.repository.hc.impl.DefaultLoginsHealthCheck Activated, accountLogins=[admin:admin, author:author], consoleLogins=[admin:admin]

06.12.2019 14:41:56.781 *INFO* [HealthCheck SSL Configuration] com.adobe.granite.security.user.ui.internal.servlets.SSLConfigurationServlet The key store for user ssl-service is not initialized (may not exist):

06.12.2019 14:41:57.134 *INFO* [oak-repository-executor-1] com.adobe.granite.repository Service [552471, [org.apache.jackrabbit.oak.api.jmx.SessionMBean]] ServiceEvent REGISTERED

06.12.2019 14:42:03.513 *INFO* [10.107.139.127 [1575643323504] GET /content/en/sandbox/hoodoo-authoring/social-tables/jcr:content/main/generic_block_2105624 874/parsys/columns/column-parsys-1/column_control/column-parsys-1/spacer.html HTTP/1.1] org.apache.sling.engine.impl.SlingRequestProcessorImpl service: Resource /content/en/sandbox/hoodoo-authoring/social-tables/jcr:content/main/generic_block_2105624 874/parsys/columns/column-parsys-1/column_control/column-parsys-1/spacer.html not found

06.12.2019 14:42:33.529 *INFO* [qtp198891862-1731303] org.apache.sling.auth.core.impl.SlingAuthenticator getAnonymousResolver: Anonymous access not allowed by configuration - requesting credentials

06.12.2019 14:42:33.851 *WARN* [10.107.139.127 [1575643353840] HEAD /libs/granite/core/content/login.html HTTP/1.1] libs.granite.core.components.login.login$jsp j_reason param value 'unknown' cannot be mapped to a valid reason message: ignoring

06.12.2019 14:42:42.332 *WARN* [10.107.139.127 [1575643362317] GET /libs/granite/core/content/login.html HTTP/1.1] libs.granite.core.components.login.login$jsp j_reason param value 'unknown' cannot be mapped to a valid reason message: ignoring

06.12.2019 14:42:56.367 *WARN* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] org.apache.jackrabbit.oak.jcr.observation.ChangeProcessor Revision queue is full. Further revisions will be compacted. Suppressing further such cases for 30 minutes.

06.12.2019 14:42:56.827 *INFO* [HealthCheck Synchronized Clocks] org.apache.sling.discovery.oak.SynchronizedClocksHealthCheck execute: no topology connectors connected to local instance.

06.12.2019 14:42:56.849 *INFO* [HealthCheck Default Login Accounts] com.adobe.granite.repository.hc.impl.DefaultLoginsHealthCheck Activated, accountLogins=[admin:admin, author:author], consoleLogins=[admin:admin]

06.12.2019 14:42:56.854 *INFO* [HealthCheck SSL Configuration] com.adobe.granite.security.user.ui.internal.servlets.SSLConfigurationServlet The key store for user ssl-service is not initialized (may not exist):

06.12.2019 14:42:57.122 *INFO* [oak-repository-executor-1] com.adobe.granite.repository Service [552472, [org.apache.jackrabbit.oak.api.jmx.SessionMBean]] ServiceEvent REGISTERED

06.12.2019 14:43:41.737 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.adobe.granite.repository Service [552466, [org.apache.jackrabbit.oak.api.jmx.SessionMBean]] ServiceEvent UNREGISTERING

06.12.2019 14:43:41.739 *WARN* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] org.apache.jackrabbit.oak.jcr.session.RefreshStrategy This session has been idle for 3 minutes and might be out of date. Consider using a fresh session or explicitly refresh the session.

06.12.2019 14:43:42.307 *WARN* [10.107.111.251 [1575643422300] GET /libs/granite/core/content/login.html HTTP/1.1] libs.granite.core.components.login.login$jsp j_reason param value 'unknown' cannot be mapped to a valid reason message: ignoring

06.12.2019 14:43:42.423 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en

06.12.2019 14:43:44.273 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/about

06.12.2019 14:43:44.699 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/about/offices

06.12.2019 14:43:45.233 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/about/offices/dublin

06.12.2019 14:43:45.672 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/about/offices/utah

06.12.2019 14:43:46.037 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/about/offices/boston

06.12.2019 14:43:46.340 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/about/offices/boston/GTM

06.12.2019 14:43:46.695 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/about/visit

06.12.2019 14:43:47.341 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/about/board

06.12.2019 14:43:47.629 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/about/ipo

06.12.2019 14:43:47.957 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/about/acquisitions

06.12.2019 14:43:48.250 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/affiliate

06.12.2019 14:43:48.604 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors

06.12.2019 14:43:48.680 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors/aar

06.12.2019 14:43:48.741 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors/aar/aaron-frost

06.12.2019 14:43:48.806 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors/aar/aaron-patterson

06.12.2019 14:43:48.864 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors/aar/aaron-powell

06.12.2019 14:43:48.931 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors/aar/aaron-paxson

06.12.2019 14:43:48.989 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors/aar/aaron-rosenmund

06.12.2019 14:43:49.058 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors/aar/aaron-medacco

06.12.2019 14:43:49.132 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors/aar/aaron-stewart

06.12.2019 14:43:49.200 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors/aar/aaron-sampson

06.12.2019 14:43:49.259 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors/aar/aaron-willis

06.12.2019 14:43:49.310 *INFO* [qtp198891862-1727519] org.apache.sling.auth.core.impl.SlingAuthenticator getAnonymousResolver: Anonymous access not allowed by configuration - requesting credentials

06.12.2019 14:43:49.318 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors/aar/aaron-skonnard

06.12.2019 14:43:49.383 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors/aar/aaron-staines-9

06.12.2019 14:43:49.453 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors/abh

06.12.2019 14:43:49.520 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors/abh/abhimanyu-tanwar

06.12.2019 14:43:49.600 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors/abh/abhishek-kant

06.12.2019 14:43:49.712 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors/abh/abhishek-kumar

06.12.2019 14:43:49.794 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors/abh/abhaya-chauhan

06.12.2019 14:43:49.863 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors/ada

06.12.2019 14:43:49.923 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors/ada/adam-bertram

06.12.2019 14:43:49.999 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors/ada/adam-chase

06.12.2019 14:43:50.024 *WARN* [10.107.119.6 [1575643430011] HEAD /libs/granite/core/content/login.html HTTP/1.1] libs.granite.core.components.login.login$jsp j_reason param value 'unknown' cannot be mapped to a valid reason message: ignoring

06.12.2019 14:43:50.070 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors/ada/adam-churvis

06.12.2019 14:43:50.147 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors/ada/adam-fairless

06.12.2019 14:43:50.226 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors/ada/adam-grocholski

06.12.2019 14:43:50.303 *INFO* [10.107.139.127 [1575643164773] GET /mnt/overlay/wcm/core/content/sites/versionhistory.html HTTP/1.1] com.day.cq.wcm.core.impl.PageManagerImpl Created new version 1.0 for /content/versionhistory/nfielding/en/authors/ada/adam-kuczek


Re: org.apache.sling.distribution.DistributionRequest is not resolved in aem 6.5.2

$
0
0

I believe there were some changes done internally to hide the distribution core bundle(Internal ticket - GRANITE-20094).  Can you try the following:

  • Navigate to /system/console/configMgr and open the FilterResolverHookFactory configuration
  • Search for org.apache.sling.distribution.api
  • At the end of the line, add ",com.<YOUR_PACKAGE_NAME>.*" and save

 

Here the package name should be the one that will be using the "org.apache.sling.distribution" API.

Re: Adding a simple sum field

$
0
0

Thanks Magus069.  that was exactly the problem.  I could not see the duplicate code, but once I cleared extra fields, things worked great.

Did not see how to mark correct so putting this up.  Feel free to mark correct.

Re: aem-project-archetype and ReactJS

Re: AEM looking for a valid user on content pages

Re: aem-project-archetype and ReactJS

$
0
0

yes, thank you, maybe in the future the SPA project (react-app) could be integrated into the archetype 20, I hope so.

Re: AEM looking for a valid user on content pages

$
0
0

Hello Martin,

 

btw, I see there has been a new backport request opened NPR-30977 for 6.5. So, the chances are this might get fixed in upcoming services packs.

 

Regards,

Vishu

Re: AEM looking for a valid user on content pages

$
0
0

Please follow these steps tosuppressthe  messages:

 

- Go to /system/console/slinglog

- Log level - ERROR

- Logger: com.adobe.granite.security.user.util.AuthorizableUtil

- Log file: error.log

 

Regards,

Vishu


Re: aem-project-archetype and ReactJS

AEM 6.5.2 - issue with cache invalidation of an alias

$
0
0

Hello,

 

Recently since upgrading to 6.5, i've been having issues with cache invalidation not happening on aliased locations during deactivation events.

 

eg. -  I have /content/test/en_US/testpage.html that would have an alias to /content/test/en/testpage.html

 

On activation of this page, I see the flush agent behaving properly for both the aliased and non aliased location.

 

However, if I then go to deactivate this page -

 

The page is deactivated and invalidated on the non aliased location, but remains in cache at the aliased location.

 

I do have the alias update checkbox selected on my flush agent on the publisher.

 

Any ideas what might cause this?

Re: Is there any Limit to Number of Work Space in Adobe Analytics

$
0
0

To the best of my knowledge there are no per user or per account limits for Workspace projects.  Regardless its best practice to remove anything that is no longer needed to help maintain some standards around what is valid.

Re: Workspace - Freeform Table - More than 5 columns - In Bulk

$
0
0

What is your end goal?
If for example you are looking to trend the values you might try putting dates within the columns, DMA's in the rows, and adding a column filter for USA?

 

 

If the goal is instead to extract the data (which seems more likely than trying to viz 200+ values in AW), it might be advantageous to use the API or even Data Warehouse.

 

As an FYI, if you select an individual value, scroll down, press shift, and then select a subsequent value you'll be able to access the entire range.  After that you can press ctrl to deselect values within the range.

Re: Google.com shows as referring domains

$
0
0

Have you validated that your paid search detection rules are properly defined?  Are your marketing campaigns properly tagged in accordance with those rules?

 

Aside from that, google domains do not only serve as search engines and its not uncommon to have some traffic bucketed there.  One frequent example is display ads.

Viewing all 140765 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>