Quantcast
Channel: Adobe Community : Discussion List - All Communities
Viewing all 238792 articles
Browse latest View live

Random freeze ups when using Media Browser window in PP2018

$
0
0

Running latest version on iMac Pro (High Sierra 10.13.2). Browsing through my stock footage archives in Media Browser is causing freeze ups in Premiere. Initially got an error message about QT32 bit files being obsolete and that I should convert these. At this point I've converted everything in folder to ProRes but still getting random freeze ups. Seems to only happen in Thumbnail view, not list view. Also doesn't seem to be an issue importing clips in through Finder. Wondering if anyone else has encountered this issue or has some other suggestions for trouble shooting.


Please help me figure out what is non-compliant about my photography

$
0
0

What's wrong with this picture?

A_KatSniderImages-0158.jpg

 

I recently submitted my first images to Adobe stock, but they got rejected as "Non-compliant". I read through Adobe's guidelines and still have no idea why my pictures of birds were not accepted.  There are no identifiable people, places or things that would require a model release.  They are just close-ups of an animal. I'm open to any critiques anyone can offer.

Thanks!

Kat

KatsBirds.com

Not Backed Up, Corrupt original

$
0
0

I try to sync my raw files with the cloud, but every time I get a message that says "Not Backed Up, Corrupt original". I can open every every file that seems to be corrupt without any problems via Mac Finder and also work with them in Lightroom CC, but it won't sync with the cloud.

 

Bildschirmfoto 2018-02-14 um 21.44.30.png

 

I already updated Lightroom cc to version 1.2 and I tried to solve it with the known issues https://helpx.adobe.com/lightroom-cc/kb/known-issues.html#SyncingLightroomphotos

I also have done a lot of work on my picture and I don't want to waste that time. Is there any way to fix these issue? The Raw files are on a external disk, connected to the Macbook.

 

Best regards,

 

Florian

Suite à une erreur grave, Adobe Premiere Pro va s'arrêter (Mac)

$
0
0

Bonjour à tous,

 

Abonné depuis un an et demi à la suite Adobe CC, j'ai rencontré un gros problème sur Premiere Pro.

Jusque là, je n'avais aucun problème pour monter des vidéos, la plupart en Apple ProRes (je suis sur Mac).

 

J'ai attaqué récemment le montage d'un vidéo tournée en format RAW - 2K, au ralenti. Les rushes sont en suite d'images, en fichiers .dng, que Premiere Pro intègre. J'ai importé les 800 Go de rushes sur un disque dur interne et j'ai commencé à monter en natif.

 

Premiere ramait un peu de temps mais rien de méchant, le montage se déroulait bien, j'ai même fait l'étalonnage dessus. Puis, suite à je ne sais quelle manip (ou pas d'aileurs), Premiere plante en m'affichant le message suivant :

"Suite à une erreur grave, Adobe Premiere Pro va s'arrêter. Le programme va tenter d'enregistrer votre projet actuel". Dès lors, impossible de rouvrir le projet. Et en créant un nouveau projet, Premiere plantait dès que j'importais un élément et que j'essayais de l'ouvrir.

 

J'ai déjà essayé plusieurs trucs :

- J'ai effacé le paramètres de préférences. Rien.

- J'ai vidé le cache disque. Rien.

- Comme je soupçonne les fichiers de previews (vignette et oscilloscope audio) de foutre le bordel, je les ai effacés. Toujours rien.

- J'ai réinstallé tout l'OS (Yosemite) et fait la mise à jour vers Adobe CC 2014. Rien, ça plante toujours, même un projet vierge.

 

- J'ai ouvert la console de l'OS au moment du plantage et il me dit ça :

 

"Assertion failed : ![_xpcClients containsObject:client]"

et

"NSAlert is being used from a background thread, which is not safe.  This is probably going to crash sometimes. Break on void_NSAlertWarnUnsafeBackgroundThreadUsage() to debug.  This will be logged only once.  This may break in the future."

Ce qui est du chinois pour moi.

 

Ma config :

- Mac Pro mi 2010

- Processeur : 2,8 GHz Quad-Core Intel Xeon

- Mémoire : 8 Go 1066 MHz DDR3 ECC

- Disque de démarrage : SSD 512 Go

- 2 disque dur de 1To où je stocke tous les médias.

- Carte Graphique : 2 x ATI Radeon HD 5770 - Processeur Graphique GPU. (non reliés en crossfire)

 

Bref, en parcourant les forums, je n'ai pas trouvé de problème résolu, ou pas sur Mac en tout cas.

 

Si quelqu'un peut m'aider... Merci !!

How to get ResourceResolver in a background thread?

$
0
0

I'm working on a solution that receives an HTTP request containing a URL to a file, which I want to download and store in the JCR.

 

So, I have a servlet that receives the request. It spawns a thread so that I can do the download in the background, and then redirects to a confirmation page. This allows me to send the user on their way without waiting while I try to download the file.

 

I can download the file just fine, but I'm having trouble getting a usable ResourceResolver to store the file in the JCR from my thread.

 

At first, I simply referenced the request's ResourceResolver in the background thread:

 

Servlet:

    pubic void doGet(SlingHttpServletRequest request, SlingHttpServletResponse response)

    throws ServletException, IOException {

    ...

    signingProvider.getDocFromService(params, request.getResourceResolver());

    response.sendRedirect(confirmationPage);

}

 

And in the provider class:

    public void getDocFromService(Map<String, String> params, ResourceResolver resolver) {

        new Thread( new Runnable() {

            public void run() {

                Session session = null;

                if (resolver != null) {

                    session = resolver.adaptTo(Session.class);

                    Node root = session.getRootNode();

                    ...

                }

            }

but that didn't work. After reading up on resolvers vs threads, I thought I'd be better off creating a new Resolver instance, so I tried to inject a ResourceResolverFactory:

 

Servlet:

    signingProvider.getDocFromService(params);

 

Provider:

    public void getDocFromService(Map<String, String> params) {

        new Thread( new Runnable() {

            @Reference

            private ResourceResolverFactory resolverFactory;

           

            // security hole, fix later

            ResourceResolver resolver = resolverFactory.getAdministrativeResourceResolver(null);

            Session session = null;

            if (resolver != null) {

                session = resolver.adaptTo(Session.class);

                Node root = session.getRootNode();

                ...

            }

        }

 

but the ResourceResolverFactory is null, so I crash when asking it for a resolver. Apparently, no factory is getting injected into the @Reference

 

I'd really rather not do the work on the main thread; after I download the file I'm going to turn around and read it from the JCR and copy it elsewhere. Both of these operations could be slow or fail. I have a copy of the file at the original URL, so the end-user needn't care if my download/uploads had trouble. I just want to send them a confirmation so they can get on with business.

 

Any advice on how to get a ResourceResolver in a separate thread? (cross-posted to java - How to get ResourceResolver in a background thread? - Stack Overflow )

Photoshop CC 2018 Requires Windows 10 Anniversary Edition

$
0
0

This seems to be a common problem with no viable solution.  Adobe Photoshop CC 2018 is no longer functioning after latest Windows update.  Adobe's response to me was to use the previous version.  I don't pay a monthly subscription to "use the previous version".    They also checked my Visual C++ Runtime

 

I've tried to uninstall/reinstall (so has Adobe), and we tried deleting preferences.

 

They need to fix this or refund a portion of my subscription until it is.

 

Any ideas?  I've exhausted my searches.

 

Thanks.

What does "Makes the color broadcast safe" mean specifically

$
0
0

When making a Color Matte, I've noticed that if you try to pick certain colors, Premiere Pro will throw up a little warning exclamation mark with a suggestion to use a different color. When you hover your mouse over it you get the info "Makes the color broadcast safe". Below is a picture of that.

Screen Shot 2018-02-16 at 11.36.43 AM.png

 

As a bit of an explanation of how I got here, the organization I work for has specific brand guidelines for which colors to use and my department has noticed that when we use their suggested colors for graphics/ text, some of those colors shift after exporting. I looked further into those colors and in the vectorscope some of those color appear outside of the rec709 color space hexagon thing. And of course with those colors Premiere Pro throws up that warning about changing the colors to be "broadcast safe".

 

So, on to my question. When Premiere Pro is suggesting "broadcast safe" colors, how is it coming to the conclusion that the color it's suggesting is the closest broadcast safe color? Like, is it picking a value that the closest color within rec709 and with luminance values between 0 and 255, or perhaps it's suggesting a color that is the closest color within rec709 and also clamps luminance values between 20 and 235?

 

Also, for the orange color with hex code #FC8900, which is one of our branding colors and is outside of the rec709 color space according to the lumetri vector scope (image below)

Screen Shot 2018-02-16 at 1.05.10 PM.png

Premiere Pro recommends the hex code E58601 instead (both of which have the same RGB values of 252, 137, 0 oddly enough). But when you look at the vectorscope for this orange color that Premiere Pro says is "broadcast safe" you can see that the color is outside of the rec709 hexagon pictured below).

Screen Shot 2018-02-16 at 1.05.19 PM.png

So is this orange actually broadcast safe? Is that hexagon merely a suggestion to keep your colors close to it instead of being a rule to not pass it?

 

Thanks for reading this!

How to change your forum screen name

$
0
0

After checking some of our most-searched terms here, I thought I'd make a thread that walks you through how you can change your forum screen name.

 

  1. Click here: accounts.adobe.com - Manage your profile
  2. Under 'Name for Adobe Community forums', change your screen name to what you'd like to be seen as
  3. Click 'Save' in the lower right

 

And you're done! I know it's weird that you don't change your forum screen name on the forums itself, but once you have the link, it's a piece of cake. Let me know if you run into any issues or if following the above steps don't work for you!


Setting Responsive Background Rotation on any Page Element

$
0
0

While this can be accomplished by writing one or more jQuery stubs, it cannot be done with Bootstrap. Actually, it's pretty much an unprecedented approach, which is something we tend to do well ,

 

In any event, We'd like to introduce you to Background Animator Magic. You can see it on the projectseven.com home page, or you can start with the preview demo:

PVII BAM! Example

 

It is for sale now, or you could simply study it

The render speed is really slow on my Laptop. If anybody can help that would be great.

$
0
0

Hi,

 

I have a Dell inspiron 7577 with 32 GB ram, GTX 1060 with Max Q design and i7-7700HQ CPU.

Recently i tried to record a 5 min video on Canon EOS Rebel SL2 DSLR Camera and edit that video in premiere pro but when i went to render the video the estimate time it showed me was 24 hours. I have tried everything I can but it wont show less 24 hours no matter what i do in the settings. Also in previews it takes 30 minutes.

I have changed memory in preferences, cleared disk cache and anything else i could i find related to that watched all kinds of video to resolve the issue and even read blogs and forums but i can't bring the time down. i even gave it a go left it overnight to complete it but it only 40% done. Moreover i uninstalled all my games and programs which i was not using only photoshop and premiere pro are left with media encoder cc. I am not in a hurry but this has been really making me infuriating over last two days. I also bought a SSD as somebody suggested but there has been no success at all. And the estimated size of file is 1058 MB that's the most ridiculous  part of the problem is. I try to render in h.264 and youtube 720 hd.

All Suggestions are welcomed.

 

Thank you.

Problem with spectrum waveform!

$
0
0

Hi guys,

 

I'm currently working on a YouTube channel template for my beats where there's a waveform spectrum

is reacting to music, thing is, after the render is done, at the final .mov file there are here and there

some frames where the spectrum is disappearing or jumps for just a half second or so and

basically reacting wrong to the music like if the music is quiet and there's a second where the spectrum

jumps like there was a big hit in the music or things like that and it happens like 4-5 times in almost

every beat I render..What can cause the problem?

 

Thanks, Alex.

Load html inside Animate cc

$
0
0

Is it possible to load an html (created with Animate CC) into another ".fla" (Animate CC - html5canvas)?

 

Test:

 

 

var gigs = new createjs.Bitmap("GIGS.html");

 

this.contenedor_mc.addChild(gigs);

//contenedor = empty movieclip on stage

 

Is not correct.

 

It is to make a charge only what is visited as previously was done with the ".swf"

 

From already thank you very much

How can we stop Adobe CC Rip-off?

$
0
0

I am outraged at Adobe virtually forcing us faithful Adobe users to pay an exorbitant monthly fee.

For many, many years I have upgraded to each new iteration of Adobe software. I bought CS6 a few months ago before CC was launched. This software is expensive and as a sole user I just CANNOT afford a monthly fee of A$50. That on top of what I’ve already paid for CS6. And if I wait they are just putting the fees up.

Who can afford $600 a YEAR? That’s way more expensive than the packaged software and the cost just goes on and on and presumably up and up. The current 'reduced' offer of A$30 pm finishes in December, then shoots up to A$50 pm.

Adobe has done what Quark did – disrespect and rip off the users, many of whom are sole designers and don’t get a monthly pay cheque. Shame on you Adobe, shame.

It seems impossible to contact Adobe directly and speak to a human being. Any suggestions on how those of us who are feeling totally ripped-off can let Adobe know that we want to buy software upgrades, not be forced to pay a very high monthly fee we just can't afford? If enough of us complain we may get them to back down. Ha!

Can’t tether the camera to see the photos live

$
0
0

Hello there!

 

I have just install the new Lightroom CC, but I dont have many options on the file menu.

I have tried to connect my camera, but I as I mentioned, I don’t have the thether capture menu.

Could someone please help me

 

Many thaaaaank

Organizer freeze during shift of people to groups

$
0
0

So, I have one of the latest iMacs (less tha two years old), sufficient memory (16GB) and latest operating system (10.13.3). Had Element 14 before and faced same issues. Bought new version 2018 in hope that software was improved, but this is not the case...

Moving a person (4 pics) from the person area to one person folder at the right (e.g. friends), the popup shows 100% but nothing happen, frozen. Cancel does not work, menu to exit is not available, etc.

 

This issues I knew from Organizer 14, but now, after new new version still the same issue??

 

Similar for locations: chosing a location at the map leads to minute of frozen state of organizer...

 

I have medium sized cataloge, 25.000 pics in it...

 

So I spend today enough money for new product and it sucks.

 

Not appreciated

 

Cheers

HarryAdobeElement_Error.jpeg


Photoshop CC 2018 Crashing after pen tool use

$
0
0

I've been working on a project all day that requires heavy use of the pen tool and shapes made from the pen tool.  After I make a few shapes with the pen tool my program crashes.. I'm talking about alllllllll day long.  I've uninstalled and reinstalled but the problem still persists.  I have a copy of the crash log, but it is quiet long.. here is the beginning, if more of the report is needed please let me know.

 

<?xml version="1.0"?>

<!DOCTYPE AdobeCrashReport SYSTEM "AdobeCrashReporter.dtd">

<crashreport serviceVersion="1.6.3" clientVersion="1.6.3" applicationName="Adobe Photoshop CC" applicationVersion="19.1.0" build="20180116.r.238">

<time year="2018" month="1" day="24" hour="15" minute="10" second="18"/>

<user guid="0b555226-db0f-42e9-8c95-388a07e34d6a"/>

<system platform="Windows 7 Professional" osversion="6.1" osbuild="7601" applicationlanguage="en-us" userlanguage="en-US" oslanguage="en-US" ram="16056" machine="Intel(R) Core(TM) i5-6200U CPU @ 2.30GHz" model="Intel64 Family 6 Model 78 Stepping 3" cpuCount="4" cpuType="8664" cpuFreq="2400 MHz"/>

<crash exception="EXCEPTION_ACCESS_VIOLATION" instruction="0x000007FEBF3E65A0">

<backtrace crashedThread="0">

<thread index="0">

 

Thanks for any suggestions or help you can offer!

Photos overlapping in 3d flashes black

$
0
0

I have a project in 3D space. Everything comes out OK after rendering, except for two overlapping photos. The one on top flashes black twice in rapid succesion at one point.

 

The two photos are seperated a little bit in height and the one on top is on top both on the artboard and in the timeline hierarchy, so that can´t be the problem.

 

 

 

SCREEN SHOT 1: The ID photo in the middle bottom looks as it should.

 

SCREEN SHOT 2: The ID photo turns black for 1-2 frames

 

 

 

 

Is there anything else I can do to get rid of this irritating problem once and for all?
Any help appreciated!

Blue-Green content migration from 6.1 to 6.3

$
0
0

Hi,

I'm trying to migrate content from on AEM 6.1 repository to a fresh new installed 6.3 repository. using crx2oak.

Here is the command line I used to execute the migration:

 

/opt/java1.8/jdk1.8.0_131/bin/java -Xmx10G -jar crx2oak-1.6.8-all-in-one.jar /opt/cq5.track1/current/crx-quickstart/repository /opt/aem/publish/crx-quickstart/repository --include-paths=/content/corpo,/content/dam/corpo --merge-paths=/ --copy-versions=true --copy-orphaned-versions=false

 

/content/corpo is only one of our websites, with a limited content. The script executes in 5 sec and does not report any error. However, when looking at the target repository after the script's execution, nothing has been migrated.

I tryed with several parameters combinations, without any success. I also tryed 1.6.4 and 1.6.10 versions of the tool.

And yes, both 6.1 and 6.3 instances are stopped during the migration.

 

Here are the traces of the script's execution:

 

12.02.2018 17:08:11.058 INFO   c.a.g.c.CRX2Oak: started with args: [/opt/cq5.track1/current/crx-quickstart/repository, /opt/aem/publish/crx-quickstart/repository, --copy-versions=false, --copy-orphaned-versions=false, --fail-on-error, --skip-init, --merge-paths=/content, --include-paths=/content/corpo,/content/dam/corpo]

12.02.2018 17:08:11.206 INFO   c.a.g.c.c.VersionPrinter: CRX2Oak version: 1.6.4 (STANDALONE mode)

12.02.2018 17:08:11.515 INFO   c.a.g.c.c.VersionPrinter: crx2oak.jar (version: 1.6, checksum: d20f84d79c29e0e571ca6fa4f4bec44915e5e936)

12.02.2018 17:08:11.540 INFO   c.a.g.c.p.ProfileHandler: Applying partly the command line (before loading a profile): [/opt/cq5.track1/current/crx-quickstart/repository, /opt/aem/publish/crx-quickstart/repository, --copy-versions=false, --copy-orphaned-versions=false, --fail-on-error, --skip-init, --merge-paths=/content, --include-paths=/content/corpo,/content/dam/corpo]

12.02.2018 17:08:11.542 INFO   c.a.g.c.p.ProfileHandler: The following template tags has been defined: {}

12.02.2018 17:08:11.544 INFO   c.a.g.c.p.ProfileHandler: The command line (after loading a profile): [--copy-versions, false, --copy-orphaned-versions, false, --fail-on-error, --skip-init, --merge-paths, /content, --include-paths, /content/corpo,/content/dam/corpo, /opt/cq5.track1/current/crx-quickstart/repository, /opt/aem/publish/crx-quickstart/repository]

12.02.2018 17:08:11.546 INFO   c.a.g.c.c.MigrationSpecGenerator: The effective command line for migration: [--copy-versions, false, --copy-orphaned-versions, false, --fail-on-error, --skip-init, --merge-paths, /content, --include-paths, /content/corpo,/content/dam/corpo, /opt/cq5.track1/current/crx-quickstart/repository, /opt/aem/publish/crx-quickstart/repository]

12.02.2018 17:08:11.574 INFO   o.a.j.o.u.c.p.DatastoreArguments: Only blob references will be copied

12.02.2018 17:08:11.574 INFO   o.a.j.o.u.c.p.MigrationOptions: copyVersions parameter set to false

12.02.2018 17:08:11.574 INFO   o.a.j.o.u.c.p.MigrationOptions: copyOrphanedVersions parameter set to false

12.02.2018 17:08:11.574 INFO   o.a.j.o.u.c.p.MigrationOptions: paths to include: [/content/corpo, /content/dam/corpo]

12.02.2018 17:08:11.574 INFO   o.a.j.o.u.c.p.MigrationOptions: Unreadable nodes will cause failure of the entire transaction

12.02.2018 17:08:11.575 INFO   o.a.j.o.u.c.p.MigrationOptions: The repository initialization will be skipped

12.02.2018 17:08:11.575 INFO   o.a.j.o.u.c.p.MigrationOptions: Cache size: 256 MB

12.02.2018 17:08:11.575 INFO   o.a.j.o.u.c.p.StoreArguments: Source: JCR2_DIR_XML[/opt/cq5.track1/current/crx-quickstart/repository, /opt/cq5.track1/current/crx-quickstart/repository/repository.xml]

12.02.2018 17:08:11.575 INFO   o.a.j.o.u.c.p.StoreArguments: Destination: SEGMENT_TAR[/opt/aem/publish/crx-quickstart/repository]

12.02.2018 17:08:11.579 INFO   c.a.g.c.e.MigrationRunner: Starting migration phase with: 1 prepare tasks and 1 finalize tasks.

12.02.2018 17:08:11.883 INFO   c.a.g.c.e.MigrationEngine: Running migration now

12.02.2018 17:08:12.185 WARN   o.a.j.c.u.RepositoryLock: Existing lock file /opt/cq5.track1/v6.1.0/crx-quickstart/repository/.lock detected. Repository was not shut down properly.

12.02.2018 17:08:12.209 INFO   o.a.j.c.RepositoryImpl: Starting repository...

12.02.2018 17:08:12.213 INFO   o.a.j.c.f.l.LocalFileSystem: LocalFileSystem initialized at path /opt/cq5.track1/current/crx-quickstart/repository/repository

12.02.2018 17:08:13.417 INFO   c.d.c.c.c.ClusterController: Node 0291c1e2-84a9-474c-8b06-8fbd30e60d9e started the master listener, on address: brpdev5pub/127.0.0.1:8088 force: false

12.02.2018 17:08:13.430 INFO   c.d.c.c.c.ClusterController: Node 0291c1e2-84a9-474c-8b06-8fbd30e60d9e started as: master

12.02.2018 17:08:13.480 INFO   c.d.c.p.t.ClusterTarSet: activate /opt/cq5.track1/v6.1.0/crx-quickstart/repository tarJournal

12.02.2018 17:08:13.551 INFO   o.a.j.c.f.l.LocalFileSystem: LocalFileSystem initialized at path /opt/cq5.track1/current/crx-quickstart/repository/version

12.02.2018 17:08:13.557 INFO   c.d.c.p.t.ClusterTarSet: activate /opt/cq5.track1/v6.1.0/crx-quickstart/repository version

12.02.2018 17:08:13.595 INFO   o.a.j.c.RepositoryImpl: initializing workspace 'crx.default'...

12.02.2018 17:08:13.596 INFO   o.a.j.c.f.l.LocalFileSystem: LocalFileSystem initialized at path /opt/cq5.track1/current/crx-quickstart/repository/workspaces/crx.default

12.02.2018 17:08:13.598 INFO   c.d.c.p.t.ClusterTarSet: activate /opt/cq5.track1/v6.1.0/crx-quickstart/repository crx.default

12.02.2018 17:08:13.781 WARN   o.a.j.c.q.l.SearchIndex: Invalid value for spellCheckerClass, class com.day.crx.core.query.spell.CRXSpellChecker not found.

12.02.2018 17:08:14.902 INFO   o.a.j.c.q.l.SearchIndex: Index initialized: /opt/cq5.track1/current/crx-quickstart/repository/repository/index Version: 3

12.02.2018 17:08:14.910 WARN   o.a.j.c.q.l.SearchIndex: Invalid value for spellCheckerClass, class com.day.crx.core.query.spell.CRXSpellChecker not found.

12.02.2018 17:08:14.948 INFO   o.a.j.c.q.l.SearchIndex: Index initialized: /opt/cq5.track1/current/crx-quickstart/repository/workspaces/crx.default/index Version: 3

12.02.2018 17:08:14.948 INFO   o.a.j.c.RepositoryImpl: workspace 'crx.default' initialized

12.02.2018 17:08:14.952 INFO   o.a.j.c.RepositoryImpl: SecurityManager = class com.day.crx.core.CRXSecurityManager

12.02.2018 17:08:14.976 INFO   o.a.j.c.DefaultSecurityManager: init: use Repository Login-Configuration for com.day.crx

12.02.2018 17:08:15.017 INFO   o.a.j.c.RepositoryImpl: Repository started (2808ms)

12.02.2018 17:08:15.034 INFO   o.a.j.o.u.c.p.DatastoreArguments: Destination blob store: org.apache.jackrabbit.oak.upgrade.cli.blob.ConstantBlobStoreFactory@6ed3f258

12.02.2018 17:08:15.051 INFO   o.a.j.o.s.f.FileStore: Creating file store FileStoreBuilder{directory=/opt/aem/publish/crx-quickstart/repository/segmentstore, blobStore=DataStore backed BlobStore [com.day.crx.core.data.ClusterDataStore], maxFileSize=256, segmentCacheSize=256, stringCacheSize=256, templateCacheSize=64, stringDeduplicationCacheSize=15000, templateDeduplicationCacheSize=3000, nodeDeduplicationCacheSize=1048576, memoryMapping=true, gcOptions=SegmentGCOptions{paused=false, estimationDisabled=false, gcSizeDeltaEstimation=1073741824, retryCount=5, forceTimeout=60, retainedGenerations=2, gcSizeDeltaEstimation=1073741824}}

12.02.2018 17:08:15.162 INFO   o.a.j.o.s.f.FileStore: TarMK opened: /opt/aem/publish/crx-quickstart/repository/segmentstore (mmap=true)

12.02.2018 17:08:15.172 INFO   o.a.j.o.s.SegmentNodeStore$SegmentNodeStoreBuilder: Creating segment node store SegmentNodeStoreBuilder{blobStore=DataStore backed BlobStore [com.day.crx.core.data.ClusterDataStore]}

12.02.2018 17:08:15.172 INFO   o.a.j.o.s.SegmentNodeStore: Initializing SegmentNodeStore with the commitFairLock option enabled.

12.02.2018 17:08:15.204 INFO   o.a.j.o.u.RepositoryUpgrade: Copying repository content from /opt/cq5.track1/current/crx-quickstart/repository to Oak

12.02.2018 17:08:15.329 INFO   o.a.j.o.u.RepositoryUpgrade: Skipping the repository initialization

12.02.2018 17:08:15.331 INFO   o.a.j.o.u.RepositoryUpgrade: Copying registered namespaces

12.02.2018 17:08:15.379 INFO   o.a.j.o.u.RepositoryUpgrade: Skipping registering node types and privileges

12.02.2018 17:08:15.459 INFO   o.a.j.o.u.RepositoryUpgrade: Copying workspace content

12.02.2018 17:08:15.462 INFO   o.a.j.o.u.RepositoryUpgrade: Copying workspace crx.default [i: [/content/corpo, /content/dam/corpo], e: [/jcr:system/jcr:versionStorage], m: [/content, /jcr:system]]

12.02.2018 17:08:15.467 INFO   o.a.j.o.u.RepositoryUpgrade: Upgrading workspace content completed in 0s (8.120 ms)

12.02.2018 17:08:15.472 INFO   o.a.j.o.u.RepositoryUpgrade: Skipping the version storage as the copyOrphanedVersions is set to false

12.02.2018 17:08:15.472 INFO   o.a.j.o.u.RepositoryUpgrade: Applying default commit hooks

12.02.2018 17:08:15.484 INFO   o.a.j.o.u.RepositoryUpgrade: Marking counter to be reindexed

12.02.2018 17:08:15.489 INFO   o.a.j.o.u.RepositoryUpgrade: Marking uuid to be reindexed

12.02.2018 17:08:15.495 INFO   o.a.j.o.u.RepositoryUpgrade: Processing commit via EditorHook : (CompositeEditorProvider : ([RestrictionEditorProvider, GroupEditorProvider : groupsPath = /home/groups, org.apache.jackrabbit.oak.upgrade.version.VersionableEditor$Provider@37b70343, org.apache.jackrabbit.oak.upgrade.SameNameSiblingsEditor$Provider@306851c7, org.apache.jackrabbit.oak.upgrade.security.AuthorizableFolderEditor$1@12bcd0c0]))

12.02.2018 17:08:15.538 INFO   o.a.j.o.u.RepositoryUpgrade: Commit hook EditorHook : (CompositeEditorProvider : ([RestrictionEditorProvider, GroupEditorProvider : groupsPath = /home/groups, org.apache.jackrabbit.oak.upgrade.version.VersionableEditor$Provider@37b70343, org.apache.jackrabbit.oak.upgrade.SameNameSiblingsEditor$Provider@306851c7, org.apache.jackrabbit.oak.upgrade.security.AuthorizableFolderEditor$1@12bcd0c0])) processed commit in 42.92 ms

12.02.2018 17:08:15.538 INFO   o.a.j.o.u.RepositoryUpgrade: Processing commit via EditorHook : (VersionablePropertiesEditor)

12.02.2018 17:08:15.542 INFO   o.a.j.o.u.RepositoryUpgrade: Commit hook EditorHook : (VersionablePropertiesEditor) processed commit in 3.762 ms

12.02.2018 17:08:15.542 INFO   o.a.j.o.u.RepositoryUpgrade: Processing commit via JcrAllCommitHook

12.02.2018 17:08:15.544 INFO   o.a.j.o.u.RepositoryUpgrade: Commit hook JcrAllCommitHook processed commit in 2.091 ms

12.02.2018 17:08:15.544 INFO   o.a.j.o.u.RepositoryUpgrade: Processing commit via VersionablePathHook : workspaceName = crx.default

12.02.2018 17:08:15.549 INFO   o.a.j.o.u.RepositoryUpgrade: Commit hook VersionablePathHook : workspaceName = crx.default processed commit in 4.421 ms

12.02.2018 17:08:15.549 INFO   o.a.j.o.u.RepositoryUpgrade: Processing commit via PermissionHook

12.02.2018 17:08:15.555 INFO   o.a.j.o.u.RepositoryUpgrade: Commit hook PermissionHook processed commit in 5.877 ms

12.02.2018 17:08:15.555 INFO   o.a.j.o.u.RepositoryUpgrade: Processing commit via EditorHook : (SlingFolderEditorProvider)

12.02.2018 17:08:15.569 INFO   o.a.j.o.u.RepositoryUpgrade: Commit hook EditorHook : (SlingFolderEditorProvider) processed commit in 13.75 ms

12.02.2018 17:08:15.569 INFO   o.a.j.o.u.RepositoryUpgrade: Processing commit via EditorHook : (UniquePrincipalNameEditorProvider)

12.02.2018 17:08:15.570 INFO   o.a.j.o.u.RepositoryUpgrade: Commit hook EditorHook : (UniquePrincipalNameEditorProvider) processed commit in 867.7 μs

12.02.2018 17:08:15.570 INFO   o.a.j.o.u.RepositoryUpgrade: Processing commit via EditorHook : (CompositeEditorProvider : ([TypeEditorProvider, IndexEditorProvider]))

12.02.2018 17:08:15.585 WARN   o.a.j.o.p.i.IndexUpdate: Missing index provider of type [lucene], requesting reindex on [/oak:index/workflowDataLucene]

12.02.2018 17:08:15.587 WARN   o.a.j.o.p.i.IndexUpdate: Missing index provider of type [lucene], requesting reindex on [/oak:index/slingeventJob]

12.02.2018 17:08:15.588 WARN   o.a.j.o.p.i.IndexUpdate: Missing index provider of type [lucene], requesting reindex on [/oak:index/versionStoreIndex]

12.02.2018 17:08:15.589 WARN   o.a.j.o.p.i.IndexUpdate: Missing index provider of type [lucene], requesting reindex on [/oak:index/commerceLucene]

12.02.2018 17:08:15.589 WARN   o.a.j.o.p.i.IndexUpdate: Missing index provider of type [lucene], requesting reindex on [/oak:index/authorizables]

12.02.2018 17:08:15.590 WARN   o.a.j.o.p.i.IndexUpdate: Missing index provider of type [lucene], requesting reindex on [/oak:index/cqProjectLucene]

12.02.2018 17:08:15.593 WARN   o.a.j.o.p.i.IndexUpdate: Missing index provider of type [lucene], requesting reindex on [/oak:index/ntBaseLucene]

12.02.2018 17:08:15.594 WARN   o.a.j.o.p.i.IndexUpdate: Missing index provider of type [lucene], requesting reindex on [/oak:index/cqTagLucene]

12.02.2018 17:08:15.595 WARN   o.a.j.o.p.i.IndexUpdate: Missing index provider of type [lucene], requesting reindex on [/oak:index/cqPageLucene]

12.02.2018 17:08:15.596 INFO   o.a.j.o.p.i.IndexUpdate: Reindexing will be performed for following indexes: [/oak:index/uuid]

12.02.2018 17:08:15.601 INFO   o.a.j.o.u.RepositoryUpgrade: Updating indexes   __        __

12.02.2018 17:08:15.798 INFO   o.a.j.o.p.i.IndexUpdate: Reindexing Traversed #10000 /jcr:system/jcr:versionStorage/48/7b

12.02.2018 17:08:15.945 INFO   o.a.j.o.p.i.IndexUpdate: Reindexing Traversed #20000 /jcr:system/jcr:versionStorage/ac

12.02.2018 17:08:16.024 INFO   c.d.i.d.DiskSpaceUtil: Usable disk space: 42888 MB (using "File.getUsableSpace")

12.02.2018 17:08:16.037 INFO   o.a.j.o.p.i.IndexUpdate: Reindexing Traversed #30000 /jcr:system/jcr:versionStorage/da/55

12.02.2018 17:08:16.127 INFO   o.a.j.o.p.i.IndexUpdate: Reindexing Traversed #40000 /jcr:system/jcr:versionStorage/ce/23

12.02.2018 17:08:16.225 INFO   o.a.j.o.p.i.IndexUpdate: Reindexing Traversed #50000 /jcr:system/jcr:versionStorage/a3/71

12.02.2018 17:08:16.317 INFO   o.a.j.o.p.i.IndexUpdate: Reindexing Traversed #60000 /jcr:system/jcr:versionStorage/66/db

12.02.2018 17:08:16.558 INFO   o.a.j.o.p.i.IndexUpdate: Reindexing Traversed #70000 /jcr:system/jcr:nodeTypes/rep:User/rep:namedPropertyDefinitions

12.02.2018 17:08:17.356 INFO   o.a.j.o.p.i.IndexUpdate: Reindexing Traversed #80000 /etc/clientlibs/fd/af/guidetheme/simpleEnrollment/images/arrow-blue.png

12.02.2018 17:08:17.602 INFO   o.a.j.o.u.RepositoryUpgrade: Updating indexes   \ \      / /

12.02.2018 17:08:19.713 INFO   o.a.j.o.u.RepositoryUpgrade: Updating indexes    \ \ /\ / /

12.02.2018 17:08:19.907 INFO   o.a.j.o.p.i.IndexUpdate: Reindexing Traversed #90000 /etc/packages/adobe/cq610/social/scf/.snapshot/cq-social-scf-pkg-2.0.20.zip/jcr:content

12.02.2018 17:08:20.357 INFO   o.a.j.o.p.i.IndexUpdate: Reindexing Traversed #100000 /libs/foundation/components/form/radio/dialog/items/fourth/items/required

12.02.2018 17:08:20.690 INFO   o.a.j.o.p.i.IndexUpdate: /oak:index/uuid => Indexed 10000 nodes in 5.099 s ...

12.02.2018 17:08:20.755 INFO   o.a.j.o.p.i.IndexUpdate: Reindexing Traversed #110000 /libs/cq/core/content/projects/showtasks/reviewtd/jcr:content/content/items/content/items /taskInfo/items/content/items/right/items/priority

12.02.2018 17:08:21.586 INFO   o.a.j.o.p.i.IndexUpdate: Reindexing Traversed #120000 /libs/cq/gui/components/siteadmin/admin/components/component/title

12.02.2018 17:08:21.715 INFO   o.a.j.o.u.RepositoryUpgrade: Updating indexes     \ V  V /

12.02.2018 17:08:21.985 INFO   o.a.j.o.p.i.IndexUpdate: Reindexing Traversed #130000 /libs/fd/fm/base/components/clientlibs/services/js/ServiceDelegate.js

12.02.2018 17:08:22.979 INFO   o.a.j.o.p.i.IndexUpdate: Reindexing Traversed #140000 /libs/social/enablement/components/hbs/admin/createlearningpath/clientlibs/createlearning path.js/jcr:content

12.02.2018 17:08:23.062 INFO   o.a.j.o.p.i.IndexUpdate: Reindexing Traversed #150000 /libs/mcm/campaign/components/textimage/dialog/items/tab1/items/text/rtePlugins/personali zationplugin

12.02.2018 17:08:23.463 INFO   o.a.j.o.p.i.IndexUpdate: Reindexing Traversed #160000 /libs/dam/gui/components/s7dam/videopresetgroupeditor/clientlibs/videopresetgroupeditor/v ideopresetgroupeditor.css

12.02.2018 17:08:23.750 INFO   o.a.j.o.u.RepositoryUpgrade: Updating indexes      \_/\_/

12.02.2018 17:08:23.886 INFO   o.a.j.o.p.i.IndexUpdate: Reindexing Traversed #170000 /libs/dam/gui/coral/components/admin/schemaforms/formbuilder/formfields/referencefield/re ferencefield.jsp

12.02.2018 17:08:24.045 INFO   o.a.j.o.p.i.IndexUpdate: /oak:index/uuid => Indexed 20000 nodes in 3.354 s ...

12.02.2018 17:08:24.908 INFO   o.a.j.o.p.i.IndexUpdate: Reindexing Traversed #180000 /libs/granite/security/content/sslConfig/jcr:content/body/items/form/items/wizard/items/s tep2/items/columns/items/container/items/certificatewell/items/certificatefiletextcontaine r

12.02.2018 17:08:25.050 INFO   o.a.j.o.p.i.IndexUpdate: Indexing report

    - /oak:index/uuid*(22164)

 

 

12.02.2018 17:08:25.086 INFO   o.a.j.o.u.RepositoryUpgrade: Commit hook EditorHook : (CompositeEditorProvider : ([TypeEditorProvider, IndexEditorProvider])) processed commit in 9.515 s

12.02.2018 17:08:25.087 INFO   o.a.j.o.u.RepositoryUpgrade: Processing commit hooks completed in 9s (9.614 s)

12.02.2018 17:08:25.239 INFO   o.a.j.o.s.f.FileStore: TarMK closed: /opt/aem/publish/crx-quickstart/repository/segmentstore

12.02.2018 17:08:25.239 INFO   o.a.j.c.RepositoryImpl: Shutting down repository...

12.02.2018 17:08:25.241 INFO   o.a.j.c.q.l.SearchIndex: Index closed: /opt/cq5.track1/current/crx-quickstart/repository/repository/index

12.02.2018 17:08:25.242 INFO   o.a.j.c.RepositoryImpl: shutting down workspace 'crx.default'...

12.02.2018 17:08:25.242 INFO   o.a.j.c.o.ObservationDispatcher: Notification of EventListeners stopped.

12.02.2018 17:08:25.242 INFO   o.a.j.c.q.l.SearchIndex: Index closed: /opt/cq5.track1/current/crx-quickstart/repository/workspaces/crx.default/index

12.02.2018 17:08:25.247 INFO   c.d.c.p.t.ClusterTarSet: close /opt/cq5.track1/v6.1.0/crx-quickstart/repository crx.default

12.02.2018 17:08:25.248 INFO   c.d.c.p.t.ClusterTarSet: deactivate while master /opt/cq5.track1/v6.1.0/crx-quickstart/repository crx.default

12.02.2018 17:08:25.273 INFO   o.a.j.c.RepositoryImpl: workspace 'crx.default' has been shutdown

12.02.2018 17:08:25.273 INFO   c.d.c.p.t.ClusterTarSet: close /opt/cq5.track1/v6.1.0/crx-quickstart/repository version

12.02.2018 17:08:25.273 INFO   c.d.c.p.t.ClusterTarSet: deactivate while master /opt/cq5.track1/v6.1.0/crx-quickstart/repository version

12.02.2018 17:08:25.276 INFO   c.d.c.p.t.ClusterTarSet: close /opt/cq5.track1/v6.1.0/crx-quickstart/repository tarJournal

12.02.2018 17:08:25.280 INFO   c.d.c.p.t.ClusterTarSet: deactivate while master /opt/cq5.track1/v6.1.0/crx-quickstart/repository tarJournal

12.02.2018 17:08:25.294 INFO   o.a.j.c.RepositoryImpl: Repository has been shutdown

12.02.2018 17:08:25.557 INFO   c.a.g.c.e.MigrationEngine: Finished migration in 13 seconds.

12.02.2018 17:08:25.558 INFO   c.a.g.c.e.MigrationRunner: migration completed

__   __         __        ___ ___  ___  __

/  ` /  \  |\/| |__) |    |__   |  |__  |  \

\__, \__/  |  | |    |___ |___  |  |___ |__/

 

I looked at many posts in this forum and differents blogs, but didn't found any help to resolve my problem.

Any help would be appreciated.

 

Regards,

Eric

Adding keywords to the index

$
0
0

Our RoboHelp project contains a makeshift index which our developer created. It lists all the topic titles. I'd like to add additional keywords. I just added the keyword "inquiry". How do I know which topics to associate with this keyword at the bottom of the index pod? Do I need to run a search to generate all instances of this keyword or ask our SMEs, or can I simply add the keyword as I have done below without adding any topics?

 

Are there any instructional videos you could recommend that show how to add a keyword to the index?

 

How to stop crashes & other Issues editing People in Photoshop Elements 2018

$
0
0

I upgraded from Elements 2015 a few days ago when that program seemingly stalled at 55% complete on a My Catalog containing over 34,000 media images, mostly photos and rare videos.  After converting, the Elements 2018 started at the 55% & completed the facial analysis after about 2 days.  I have now named about 200 people, about 300 un-named with more than 4 frames of each identified, and over 9400 un-named people in all (displaying small stacks).  Of these small stacks a large number are not people or even anything close; such a text, windows in the sides of buildings, airplane parts, grass, tree branches etc.  As I try to select & edit the faces I experience numerous crashes of the software; often closing unexpectedly.  This appears to be a memory management(?) issue.  First, especially when editing faces within a photo graph, the memory in use, as shown in the task manage, starts climbing, going from a few hundred MB to 2-5GB as editing continues; the higher the memory count the higher the crash expectancy.  However, you can almost always induce a crash when selecting facial stacks by doing so out of order; that is if you are going Left to Right, then down; or Right to Left then up things work best; but if you jump around, say go back up a line or more in the listing it nearly always crashes.  Another thing I have noticed in selecting the 'short stacks' when you mouse over a stack it typically shows several of the images in that stack, but often if there is only (1) one image, when you mouse over that image the display changes to the image previous to it (aka the unnamed image immediately to the left in the display)  what is going on here; this makes me very nervous to mark that image for don't display again, when the one to the left is a valid face.  It also immediately crashes with somewhere around 88 image stacks, usually (1) type, selected.  I am operating on a Windows 10 OS, with an older Intel Core 2 Quad CPU & 8GB RAM.

Viewing all 238792 articles
Browse latest View live


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