Hi,
After Upgrade XWIKI to 17.5 on Debian I’m unable to load attachments list. It continuously showing “Loading” icon.
In Developers Tools i can see information:
“Uncaught TypeError: Failed to resolve module specifier “vue”. Relative references must start with either “/”, “./”, or “…/”.”
I assume that this is related with upgrade of vue from 2 to 3. But how can i solve this? What steps should i take to resolve it. Any tips?
Thanks in advance for your help.
Hi, I just tried with a clean 17.5.0, and I don’t have this problem. Maybe you have a caching issue. Have you tried to force reload the page or clear the browser cache?
Hello , i have the same problem
I updated from 13.9 version. First i had the problem with ckeditor (after hours of trying to update / fix things , i disabled the realtime from ckeditor).
Then i found this , when you press the attachment buttons , there is the loading wheel (doesnt stop) and pressing F12 i get the above error.
Hello! I got this error after upgrading from version 17.2.0 to 17.4.0
The solution was found by accident. It may not work for everyone.
Go to the path: Administer wiki - Lock & Feel - Presentation
Check the HTTP Meta Info field
I had the code here:
<meta name="revisit-after" content="7 days" />
<meta name="description" content="$escapetool.xml($!tdoc.plainTitle)" />
#set($keywords = "wiki,$!doc.getTags()")
<meta name="keywords" content="$escapetool.xml($keywords.replaceAll('[|,]', ' ').trim())" />
<meta name="distribution" content="GLOBAL" />
<meta name="rating" content="General" />
<meta name="author" content="$escapetool.xml($!xwiki.getUserName($doc.getAuthor(), false))" />
<meta http-equiv="reply-to" content="" />
<meta name="language" content="$!xcontext.language" />
## We verify that we don't display RSS feeds on the login page since it causes problems if these feeds are
## protected. In addition it makes the login redirect to the feeds page in some cases.
#if($doc.fullName != "XWiki.XWikiLogin")
<link rel="alternate" type="application/rss+xml" title="Wiki Feed RSS" href="$xwiki.getURL('Main.WebRss', 'view', 'xpage=rdf')" />
<link rel="alternate" type="application/rss+xml" title="Blog RSS Feed" href="$xwiki.getURL('Blog.GlobalBlogRss', 'view', 'xpage=plain')" />
#end
<div id="btHomeTop"><a class="btHome" tooltiptext="Home" tooltipposition="top" style="display: none;" href="$xwiki.getURL('Main.WebHome', 'view')"></a><a class="btTop" tooltiptext="Back to Top" tooltipposition="top" style="display:none;" href="#"></a></div>
After deleting this code, the errors disappeared
3 Likes
thaaaankkkk you 
yeap , it’s fixed with this for me
Had the same error in the admin interface with “Users” and “Groups”. Just the spinning circle.
Deleting the “HTTP Meta Info” solved the issue here, too. Thank a lot. 
Hi,
The replies that mentioned clearing the meta preference field made me realize where the problem is.
- The Live Data widget is using the
org.xwiki.platform.html.head
UI Extension Point (UIXP) to inject stuff in the HEAD of the HTML page.
- this UIXP was introduced in 11.1RC1 as
org.xwiki.platform.head
and then renamed in 11.5 as org.xwiki.platform.html.head
- before Loading... (17.4.0RC1) it was provided by the meta preference field, but now it is provided (by default) by the
meta.vm
Velocity template
The problem is that the meta
preference field is often customized. This means that:
- someone upgrading to 11.1+ might have chosen to keep their custom value for the meta field, missing the UIXP
- someone upgrading to 11.5+ that had the previous UIXP name might continue to use the old name, if they chose to keep their custom value of the meta field.
This UIXP wasn’t used much before Loading..., but now Live Data depends on it. So if you have previously customized the meta preference field you need to review it and make sure it calls the org.xwiki.platform.html.head
UIXP. Compare your custom value with the content from the meta.vm Velocity template.
Hope this helps,
Marius