https://discord.umbraco.com
Join Discord
Error restoring Umbraco
t

TigerMan

over 1 year ago
Hi I create a new Umbraco and do many things on it. I'm using uSync.13.24 with Umbraco 13 which is the only package installed. I saved everything to our repository and create a new database, change the connection string to use the new database. When it loads after a short while I see the error Error 08cd142a 0x80131904 Invalid object name UmbracoCacheInstruction And it stops there. I know I've said I've done a lot in it but without having to list everything does anyone know why the above error is occurring or ways to narrow it down? I can provide more information if anyone needs it but couldn't find anything in relation to this.
t
c
+2
  • 4
  • 7
  • 153
Block Clipboard - When do we get it back?
k

Kaspar Boel Kjeldsen

over 1 year ago
I'm sitting on version 14.2-rc and am wondering - when do I get the ability to copy blocks to the clipboard back? The button is there - but to my knowledge there is still no way of copying anything? First I'd love to know if anyone knows when this feature is slated to come back, because we've paraded it around town in v13 to all our customers. Secondly, I would love that when Umbraco ships without features that experienced users expect - at least remove the button until it's ready? https://cdn.discordapp.com/attachments/1272451228621602847/1272451228818997279/image.png?ex=66bb060d&is=66b9b48d&hm=c96cda592515615a06a25f3ff57a6b17d0daa8cd614ae163344b0bd04b697b48&
k
r
h
  • 3
  • 5
  • 153
Is it possible to move a field to another tab?
t

TigerMan

over 1 year ago
Hi I have a field under tab 1. I now want to move that field to tab 2 but retaining all the existing data. Is this possible as I don't see any option? Thanks
t
k
m
  • 3
  • 2
  • 153
Umbraco v13 IRecurringBackgroundJob not following Period
c

Carlos Casalicchio

over 1 year ago
Hello everyone! I have implemented the IRecurringBackgroundJob, but something seems wrong. I've scheduled it to repeat after 3 days, and after 7 days, but it's repeating every day. This is happening in Umbraco Cloud and I am suspicious it has to do with a restarting IIS process, but I cannot be certain. Does anyone have any suggestions or fixes to revolve this? please see attachment
public TimeSpan Period => TimeSpan.FromDays(7);
        public TimeSpan Delay => TimeSpan.FromHours(24);
https://cdn.discordapp.com/attachments/1248047040538214520/1248047040680824862/message.txt?ex=66623de2&is=6660ec62&hm=8dab93f684980f82323256dc03db5582bad7cf434b0184dc11eb8b8e4d4189fd&
c
s
  • 2
  • 4
  • 153
Umbraco 13.0.3 Models builder not generating models
s

Sian Evans

almost 2 years ago
I created a new site yesterday and noticed that I was getting the "CS0234 The type or namespace name 'ErrorPage' does not exist in the namespace 'Umbraco.Cms.Web.Common.PublishedModels' (are you missing an assembly reference?)" message. I identified that template models were no longer generated, yet this morning, the site generated models for compositions I had created. Has anyone experienced this and can point me in the direction of what I need to look at in logs to identify the problem? https://cdn.discordapp.com/attachments/1205511997861527572/1205511998058668062/Screenshot_2024-02-09_134348.png?ex=65d8a389&is=65c62e89&hm=1fabd84ca77ba172a94fdc5c4f97e1839c815d449000c4b7df1ebac9f8a828dd& https://cdn.discordapp.com/attachments/1205511997861527572/1205511998305996880/Screenshot_2024-02-09_134509.png?ex=65d8a389&is=65c62e89&hm=48609da3743e59e405836ccfd4a3803ce224affce522ad6d9201286c0eeca2ba&
s
s
  • 2
  • 15
  • 153
Hide Block Element Property in specific Block List
d

Danine Noble

over 1 year ago
I'm experimenting with the Editior Model Notifications and trying to hide a specific property from a specific element in a particular block list property without affecting everywhere else the element is used. Goal: Swap availability of a treenode selector depending on the area of the page the author is adding it to. For example: the main property is a treenode selector that has no restriction on item type selectable, but then property2 is a treenode with a more limited selection. Only 1 is available at any given time depending on the blocklist property the element is sitting in. The closest I've gotten is hiding the property's value... But can't seem to get at hiding the property itself. I've probably been staring at it too long, lol Snippet:
var rootProperty = notification.Content.Variants.FirstOrDefault()?
    .Tabs.SelectMany(f => f.Properties ?? [])
    .FirstOrDefault(f => f.Alias.InvariantEquals("region"));

if (rootProperty?.Value is not BlockValue blockList) { return; }

foreach (var block in blockList.ContentData.Where(block => block.ContentTypeKey == Constants.RCGuid))
{
    // using block.PropertyValues seems to affect nothing
    // this removes the selected value of the property...
    block.RawPropertyValues.Remove("reuseContent2");

}
d
d
+2
  • 4
  • 9
  • 151
Umbraco 13 in Azure Function
a

attila_08563

almost 2 years ago
Hello, I would like to use Umbraco 13 Services with Db integrated into Azure Function. I've found this article https://24days.in/umbraco-cms/2022/umbraco-anywhere/ which shows how we can setup Umbraco in Azure function but it references Umbraco.Cms.Infrastructure and Umbraco.Cms.Persistence.SqlServer version 10.3.2. When I tried this solution I got couple of exceptions of missing service registration, which I tried to collect in the attached picture. I also needed to remove Install Steps because it's registered in the AddCoreInitialServices but with missing dependencies and I don't want to use it from Azure function. Could You please help how can I use Umbraco 13 from Azure Function? Thanks, Attila https://cdn.discordapp.com/attachments/1193915012117450862/1193915012423618661/image.png?ex=65ae7300&is=659bfe00&hm=ed492f3ab1304bd33040b777a6c0859a415036e7985b29a6378142c8d86f5b03&
a
j
  • 2
  • 4
  • 151
NuCache + Redis Cache for automatic scale out
o

Owain Jones

about 2 years ago
Hi all, has anyone tried using Redis Cache (or another distributed cache) to store the Memory Cahce/NuCache when auto scaling out? One of the issues with scaling out an Umbraco Azure web app instance is that each new instance will slam the database as it builds it's Memory/NuCache, so moving the memory cache into a distributed cache would hopefully alleviate this issue. (at least in theory lol) Has anyone tried this or something similar? Also posted on Our: https://our.umbraco.com/forum/using-umbraco-and-getting-started//112967-nucache-plus-redis-cache-for-automatic-scale-out
o
s
+2
  • 4
  • 4
  • 150
Why doesn't mini profiler work?
t

TigerMan

over 1 year ago
Hi I installed a brand new Umbraco 13 and enabled profiling under the profiling tab. Created a basic document type and ran the site. The page displayed and I entered ?umbdebug=true at the end of the URL but nothing is being displayed. I'm expecting some pop up on the right but nothing is shown. I have not installed anything else but was expecting to see a pop up. I also have Hosting, debug= true in my app settings. Have I missed off anything?
t
u
+3
  • 5
  • 6
  • 149
How to open media picker from custom property editor (v15.1)
r

rstei

11 months ago
As part of custom property editor, I would like to integrate Umbraco's media picker - to be able to select media items. Is there a context or similar I can use to access this picker?
r
u
  • 2
  • 2
  • 147
Previous181920Next

Umbraco

A hub and casual space for you to interact with fellow community members and learn more about Umbraco!

Powered by