I recently installed formulate form builder on my umbraco 7.3.0 site and now the content tree fails to load!
How do I revert the site to its previous state if I cant access the menus, see here:
Related
Main site: zenndogg.com
blog sites:
zenndogg.com/code
zenndogg.com/colorado
zenndogg.com/freeusa
WordPress 5.9.2; Theme: Sinatra
Each of the 3 blogs is an individual WordPress multi-site installation. When I try to add an image in any of my blogs, I receive error messages.
When I use the default editor, the image is placed in its block. Click on 'Save Draft' or 'Update' or 'Publish' and I receive this error message.
Publishing failed. The response is not a valid JSON response.
When I use the classic editor Visual editor I get this error page:
Forbidden 403 Access to this resource on the server is denied!
When I use the classic editor Text editor using proper HTML code, I get the same error page.
Been working on this for several weeks now. I've uninstalled and re-installed WordPress several times. I've moved and renamed directories. I've scrapped everything and started over about 4 times trying to get an operational install. The only plug-ins active are 'Classic Editor' and 'Advanced Editor Tools' when using 'Classic Editor'. No plug-ins are active when using the default editor.
Also, I can't add a post or page in the default editor but I can (minus images) with the classic editor.
Help? I'm nearly at the point where I'm looking for alternatives. Thank you.
I'm using the asp mvc template with dotnet core 6 preview 3.
Since I update to preview 3 (from preview 2) views are no longer published when I publish the site. Not better with preview4. Even from a fresh template Views are not published.
The directories Views and Areas are not even present in the publication.
There is no views.dll generated, and when I upload the publication to a sever I get a blank page when connecting to the site. In event viewer there is an error saying that index.cshtml can't be located.
I just can't imagine where to look for. Right now I copy and paste the Areas and Views directories to the server. I'm sure there is better to do.
----- EDIT 1
To restore my project behavior I had to add the following lines to my csproj:
<PreserveCompilationContext>true</PreserveCompilationContext>
<MvcRazorCompileOnPublish>false</MvcRazorCompileOnPublish>
<CopyRazorGenerateFilesToPublishDirectory>true</CopyRazorGenerateFilesToPublishDirectory>
I'm pretty new to Umbraco, and I'm hoping this is something obvious not yet covered in the PluralSight course.
I've just installed Umbraco 7, standard install using SQL Server CE via MS Web Matrix. I use WebMatrix to fire up Umbraco CMS and then I browse to http://localhost:58507/umbraco to login and create my DataTypes, DocumentTypes and pages etc.
I save my work using Save & Publish and I can see my changes etc. but if I restart my laptop and go back into Umbraco all of my work is gone. No DataTypes, no DocumentTypes... just the defaults.
Inside the solution tree in WebMatrix I can see my work - my uploaded media, partials and views. But they do not appear in the content tree.
This happens every time I restart the machine. What on earth am I doing wrong?
The problem comes from the combination of Web Matrix with SQL Server CE, as explained in this Umbraco forum post it has been an issue seen as early as Umbraco 4.
SQL Server CE by default has a 10 second delay in sending data to be written to the DB. If in that time Web Matrix has an issue, or you close/restart it, that data can be lost. This explains why the problem for me was intermittent.
The fix is to download Microsoft SQL Server Express and use that instead (or the full blown SQL Server if you have it).
I tried the approach of using Form-Builder-Generated-Form within Java application suggested here < Running Orbeon-Form-Builder-Generated-Form with Java Application > : downloaded Orbeon nightly build, created a sample form using Form Builder and copy & pasted it into JSP page in my app. However, when I try to access this JSP, it redirects me to: /myapp/fr/unauthorized . Can you please tell me what I maybe doing wrong? Or what is the right way of making Orbeon process Form Builder generated content in Java app?
For my deployment I followed separate deployment and configuration specified in Orbeon documentation. Thanks in advance.
You are not doing anything wrong, but Orbeon Forms doesn't support this type of form deployment.
The separate deployment mode runs the output of your JSP directly through the XForms engine.
Form Builder-generated forms OTOH expect pre-processing via the Form Runner runtime, in particular through the components.xsl XSLT transform. This is needed to support all the Form Runner features, including built-in persistence, error summary, internationalization, etc.
Currently the cleanest way to integrate such forms with your own app is to just run them side by side (Orbeon WAR + your own WAR) and navigate between each other via links and POSTs.
You could also use an iframe, although that is often a disliked solution.
You could also transform the form produced by Form Builder into plain XForms that doesn't assume Form Runner. It wouldn't be too hard to do but would be outside the scope of this StackOverflow question.
I have built a basic website for a company where I build a word document(.docx) file dynamically by using a template word doc and content controls and Open XML SDK. Its an ASP.NET MVC 2. I used the same code shown in this link where they build a Sales Contract document using Open XML. You can find it at almost the last section of the page seen in the following link:
http://msdn.microsoft.com/en-us/library/dd469465(v=office.12).aspx
My problem is everything works fine on my development system. But when I host the application on GoDaddy servers and at the end when the Word Document is saved, Microsoft Word says the document is corrupt and has to be recovered.
I saw a similar question in the following link:
Why are .docx files being corrupted when downloading from an ASP.NET page?
I tried the same and it did not work for me and I get the same error and now I am clueless as to where the error actually is.
Any help would be greatly appreciated.