Artifactory OSS 5.4.6.rev 50406900
Logged in as admin
Trying to follow instructions here...
https://www.jfrog.com/knowledge-base/how-to-create-simple-versioning-custom-layout-in-artifactory/
Step 1) First we will need to create a simple layout. In Artifactory, got to [Admin] --> [Repositories] --> [Layout], then click on "New"
I get to the Layout area but there is no "New" to click. Where is this supposed to be?
I read elsewhere that it's also possible to copy an existing layout and modify that to create a new one. How does one copy an existing layout?
Should admin be good enough to do this sort of thing?
Thanks in advance.
Unfortunately, custom layouts are an Artifactory PRO feature and are not available in the OSS version.
https://www.jfrog.com/confluence/display/RTF/Repository+Layouts
HTH,
Or
Related
I was given a Drupal project and asked to figure out how its code base structured and how the project is structured overall.
I successfully installed it using xampp.
Now I see nothing custom in the project:
For blocks I have only Bartik and Rubik. For content type only Basic page. For file types Audio, Document, Image and Video. For menus Main Menu, Management, Navigation and User menu.
So, does it mean that I was given a blank empty project? What else may I check that may have been customly changed in an empty project? What may I have missed while installing the project that may cause it to become empty, without any customisations? Maybe it is possible to check for something in the files of the project?
I am asking a few questions here, since I am not sure which one of them will convey the matter which concerns me. But basically all of them mean the same: I just want to see what someone else did in the project. And the more customisations I will find, the better it will be.
Thank you.
This does look like a virgin install typically does. If you were expecting to see more, perhaps you need to import a database...
Confirm you've imported the project database and that your settings file is pointing to it. It looks like you're using Drupal 8, so the file should be in sites/default/settings.php
Check under Content to see if any nodes have been created. If you have some sort of botched import, you can also try accessing a few nodes randomly at example.com/node/1, example.com/node/2 to check directly in case something is wrong with the index
Other than Nodes, Drupal content can be also in the form of Views. These are available at example.com/admin/structure/views. This is usually for heavily customised content. There are roughly 15 default Views that come with Drupal 8.
A default install will have no Modules installed in /modules. If you're seeing any directories there, it could be that the site was relying on these to display the content you're being asked to admin.
Trust this puts you on the right path. :)
I want few changes on my APP, support told -Our platform allows for incredible customization by a developer with common languages like HTML, CSS, and Javascript.
Developing on the platform is done with the new SDK that can be found here on github. You can see more about developing the customization you need here: http://buildfire.com/developers/
As always
Downloaded MCRSS on my PC and made few changes Like on home page i dont want to show date below title -
i just added css property in list-item-date {display none:}
and we dont want Title and author name get trimmed , i just removed trim code.
Now New Updated MCRSS plugin ready at my PC.
How can i upload that on my APP.
Please tell me steps
It sounds like you're trying to customize the Media Center RSS plugin. You have two options:
Create a pull request on the repo.
Create an account on the developer portal, and upload your own custom version of the plugin.
For option one, you'll have to make your changes generic so that your pull request will be accepted. It might include making some of the options configurable from the control side. The main benefit is that moving forward the plugin will include your changes and any future bug fixes or enhancements will automatically be included.
The second option is easier to do if you're not as familiar with Git, and/or don't want to spend the time to make the options configurable. You just create an developer account and upload your custom plugin. (It will require you to rename the plugin to something unique.)
Hope that helps.
I am trying to make a custom theme to a new project in Sylius. I have read de documentation and followed the steps to create one simple theme to start with.
I went to channel configuration and have assigned the created theme to one of my channels but the problem is that when I load the storefront the theme isn't loading. The profiler show I am using the correct theme but it keeps loading Sylius' default layout.
Has anyone who have achieved this give me an idea if what could be missing? I'm pretty sure all of my files are in place.
This doc pull request should help you - https://github.com/Sylius/Sylius/pull/7304
Did you remember to clear the cache? ;>
I am new to Sitecore and have questions. I have installed Sitecore version 7.1 several times just for the fun of it, sweet. Now, I am attempting to follow a tutorial of “Building A Very Simple Website”
http://sdn.sitecore.net/upload/sdn5/developer/training%20materials/basic%20site/selfstudyguide-buildingaverysimplewebsite_usletter.pdf
This tutorial is targeted for Sitecore CMS 6.2, so I want to confirm if it’s still accurate.
The instructions for creating a Generic sublayout display file says I should be able to access the Grid Designer and insert a control while in the Content Editor. I am not seeing any option for this. The only way for me to access the Grid Designer, is by selecting /Development Tools/Development Center. And when I do this I can insert a control but it’s not saving any of my changes.
As anybody had this problem?
Is that tutorial still valid?
I had this same question. I'm running sitecore 7.1 but am following an outdated self study guide for sitecore 6.2. I was able to resolve doing the following.
From the Desktop interface, open the start menu
Open Development Center (Listed under Development Tools)
Select 'Create New Sublayout'
Once created the options you seek will be available
This is the start page for the Developer Center
This will open automatically when you finish the Sublayout creation wizard
The grid designer is still there. It relates to Sublayouts, so if you go to /sitecore/layout/Sublayouts and select one of the sublayout items, you should then see the grid designer tab:
Towards the top right of the screen you should see some tabs for dislaying layout and format options:
To be honest, you'll rarely (if ever) use the grid designer again after this tutorial, so don't worry to much.
I had same problem with Sitecore 8 and solved it creating Sub Layout,going though development center as shown above by #Tyshun. Else
Go direct to development Center using url http://{{Your Site Name}}/sitecore/shell/default.aspx?xmlcontrol=IDE.
You will get option to create SubLayout and then you will get grid view design option.
I'm working on wordpress. And has this kind of requirement, where I need to have an ability in admin panel for administrator wherein he can upload an image. This image will be used at two places in the theme.
I've tried to figure out this, and found that image url can be store in options table and can be used in the theme to retrieve the image.
But not sure how to give an interface for that in admin panel. Any idea to achieve that will be great.
Is it not possible to use the built in Custom Header image system? I don't really know all of your requirements but there is no reason to build something if you can co-opt something instead. :) Granted, it is called a "header" but it really doesn't have to be. Where it shows up depends entirely on the theme. If that doesn't work for you, you've got a considerably more complicated project but you'd probably want a Theme Options page.
Go to your wordpress panel-> plugins:
install plugin named: Custom Upload
Or your can download it from :
http://wordpress.org/extend/plugins/custom-upload/
A simple plugin to upload any type of image in wordpress.
I think you can use it to manage your images of theme.
And that's it, good luck.