I can't seem to delete any content anymore. Looking at browser debug, this is the error I'm getting:
umbracoDefault.js:1 Uncaught ReferenceError: umbraco is not defined at deleteThis (umbracoDefault.js:1) at HTMLDivElement.onclick (umbraco.aspx:1)
deleteThis @ umbracoDefault.js:1
onclick @ umbraco.aspx:1
Looking at the deleteThis function in umbracoDefault,
function deleteThis()
{var D=true;if(currentApp=="content"&&nodeID=="-1"){D=false}
if(D){var C=nodeID;var B=nodeType;var A=nodeName;
if(confirm(parent.uiKeys.defaultdialogs_confirmdelete+' "'+nodeName+'"?\n\n'))
{deleteNode=node;nodeID=C;nodeType=B;nodeName=A;umbraco.presentation.webservices.legacyAjaxCalls.Delete(C,"",B,refreshDelete)}}}
function refreshDelete(){deleteEffect()}
seems to point to /umbraco/webservices/legacyAjaxCalls.asmx
where it has code behind file which I can't find.
I know it used to work, since I have stuff in the trash folder, which I cannot empty anymore.
How can I make this work again? It's Umbraco 4.0.4.2 in Server 2008 R2.
Hi Alex,
We have enough space on the site. We own the server hardware, and have full admin access to the physical, IIS, and SQL database.
Current database size is 385.69 MB which is well below the limit of our SQL 2008 (not express) of 524272 TB, with 34 GB free on the server disk.
The work around I've been doing is to create a folder and just move things to that folder when it's supposed to be deleted.
I've seen some SQL query on delete problem, I'm worried that this is going to break it since it's ancient, and don't really have a replacement for the content.
Well, I'm just checking to see if this is a common occurrence and has a working solution.
Can't delete content or empty trash
I can't seem to delete any content anymore. Looking at browser debug, this is the error I'm getting:
Looking at the deleteThis function in umbracoDefault,
seems to point to /umbraco/webservices/legacyAjaxCalls.asmx where it has code behind file which I can't find.
I know it used to work, since I have stuff in the trash folder, which I cannot empty anymore.
How can I make this work again? It's Umbraco 4.0.4.2 in Server 2008 R2.
Hi Chris
Do you have enough space on your hosting for your site?
It can be a problem if the database is too big for your hosting plan.
You can clean up the database with SQL query orpackage like UnVersion.
Thanks,
Alex
Hi Alex, We have enough space on the site. We own the server hardware, and have full admin access to the physical, IIS, and SQL database. Current database size is 385.69 MB which is well below the limit of our SQL 2008 (not express) of 524272 TB, with 34 GB free on the server disk.
The work around I've been doing is to create a folder and just move things to that folder when it's supposed to be deleted. I've seen some SQL query on delete problem, I'm worried that this is going to break it since it's ancient, and don't really have a replacement for the content.
Well, I'm just checking to see if this is a common occurrence and has a working solution.
is working on a reply...