After following this youtube tutorial, my page was generated with the segment "autogenerated-3". In the tutorial, they had no such problem.
This is a clean installation version 10.4.17.
How do I get rid of this route segment?
In the left pane, go to Site Management > Sites and then once on that page, remove the auto-generated slug from the entry point URL (depicted in red):
Related
I have followed every step given in the following repo GitHub - Adobe-Marketing-Cloud/aem-scf-sample-components-extension: Sample package for AEM Social Communities - Social
I have added the subtitle property to "com.adobe.cq.social.journal.client.endpoints.impl.JournalOperationsService" and created a page using the given template and tried to add the extended journal component and clicked on New Article and tried to enter some content and clicked on publish immediately. But after I click on Publish it's taking me to the same page and no content is being published. And I checked if the UGC is stored under /content/usergenerated/asi/jcr/content but no content is stored for the ectended Journal component.
Where as the other extended community components that are given in the above repo are are working fine. I have added the required client libraries. Can anyone help me what am I missing?
After a lot of research, I understood that when you are publishing a new blog article JS is not getting loaded.
Steps to resolve the issue:
1) Navigate to /etc/designs/acme/clientlibs/site
2) Delete the JS folder and js.txt
That's it you are good to go.
I'm trying to follow the steps described on https://airbrake.io/docs/installing-airbrake/installing-airbrake-in-a-python-app/#configuration to configure Airbrake for a Django project. In particular,
To configure pybrake you will need your Airbrake project’s id and api_key, these are available from your project’s settings page.
I'm browsing around on the project's page on airbrake.io, but for the life of me, I can't find any "settings page". How do I find these keys?
According to Airbrake's tech support, the "Settings" tab is not visible to non-admin users. However, the project ID is simply the number in the URL.
If someone uses it.
On your project's dashboard look for the top tab called Settings and then top to the right you'll see the info
Hi I tried using bulk editor to get the list of Pages from a particular path
But it returned both activated and deactivated page. I need only the Activated pages
I gave Custom Properties / Columns as cq:lastReplicationAction . This gave a column with values Activated & deactivated is there a way to get only activated pages alone in bulk editor
Try this:
http://localhost:4502/etc/importers/bulkeditor.html?rootPath=/content/geometrixx-outdoors/en&queryParams=%22jcr:content/cq:lastReplicationAction%22:Activate%20type:Page&initialSearch=true
Refer to this doc:
https://docs.adobe.com/docs/en/cq/5-6-1/administering/bulk_editor.html
Or read the source code in CRX/De for more details:
See source code here:
/libs/wcm/core/components/bulkeditor/bulkeditor.jsp
Tested in AEM 5.6.1. Should work in 6.X as well.
Cheers!
I am learning TYPO3 and extensions, for now, I've created a test extension about image uploading, handling and showing.
I have done the Backend for upload a new image, show a list, and edit image properties (once selected). This part is already implemented and working.
Now I am missing the "include" part, I mean, to insert an image in page via Insert Plugin on BackEnd.
My problem: When I select insert plugin, and I manually select my registered plugin, I want to render there a fluid template with options, image list, and so.
These options are for the user to select an image, a size, and so, for it to be shown in selected page.
I don't know which method have typo3 for showing templates in that part, so I am requesting a hint from where to config a template to be used there by TYPO3.
Note: This is not about asking implementations, just a hint to start and implement it myself.
You should not code that on your own.
I guess you are looking for TCA. In special for your Plugin you are looking for "flexforms". I guess this wiki page can help you get started with some examples.
I'm pretty new to TYPO3 and currently stuck with the following issue:
I copied the templates from another webpage that is currently in business.
When I'm on the startpage of my homepage (www.domain.com) and click on one of the links it contains I always get an error 404. The link that is generated looks like this.
http://www.domain.com/testpage.440.0.html
So I guess something like RealUrl was in use on the webpage that I copied from? Do I understand this right? I don't see that RealUrl is installed though.
However If i manually change this link to
http://www.domain.com/?id=440.0.html
the site is being created.
How does Typo3 know to generate a page when it receives the first version of these two links?
Does not really look like a standard out-of-the-box REAL URL url. That would rather have been /testpage-404.html . So maybe the problem is somewhere else, could be:
simulate static (check if that extension is running). A common mistake is to run real url an simulate static at the same time. If you do not need speaking urls for the moment, just uninstall simulate static.
make sure you add a domain to your shortcut. Use the the list modul and select the root shortcut. Then click create new record, select domain. and enter your domain there. Flush all the caches and try again.
If you'd post your TS Code (of the root shortcut page) here, I could probably tell what's going wrong.
real url configuration typically use .htaccess files.. maybe that file still contains information from the original destination.
check if the root ts contains some baseUrl statement
Which version of TYPO3 are you using?
HTH, but feel free to post more infos.
If your typoscript template is expecting to find realurl and its not installed as a plugin, that could be the cause. You'll need to either install it, or find the settings in the TS template and remove them.
Try the template object browser to look for it (use the template tool, click to the site root, then use the drop down menu in the r/h pane to choose the Template Obect Browser.)
How does Typo3 know to generate a page when
it receives the first version of these two links?
Any page request that it doesn't understand will give a 404 error.