@shikhasoni1 every time the user logs-in , you can add a custom property in the user's profile node. This property can store current login timestamp. Lets call it last-logon-date . Every time the user logs in, the following should happen and in that order (at the time of user login) :
read the exi...
@touseefk2181136 You need to add the below after setting the node properties.
replicator.replicate(session, ReplicationActionType.ACTIVATE, "/content/data/stores");
Ofcourse, make sure that you add the Replicator service in your service by using :
@Reference
private Replicator replicator;
...
@touseefk2181136 You can find the query builder equivalent of this SQL2 query and that should do the trick :
SELECT * FROM [nt:unstructured] AS s WHERE ISDESCENDANTNODE([/content/data]) AND NOT ISCHILDNODE([/content/data])
path.flat property might come in handy in that.
Otherwise, if you are o...
@vjleo94 i haven't tested it but can you try something like this
create user test with password {UTF-8} {password}
If there is any other encoding format that you want to add , you can replace the above with that.
@sangrampatil111 Can you check if there is any other process simultaneously trying to update the jcr:content node of this asset. That may be causing the asset processing to fail.
@Vishnu9 You will have to allow assets with these extensions in your filters.any file.
That rule will look something like this - { /type "allow" /extension '(css|gif|ico|js|png|swf|jpe?g)' }
add these additional extensions and it should work.