UpgradeWizard.aspx error when upgrading from DNN 9.0.1 to DNN 9.0.2 - dotnetnuke

I am currently trying to upgrade my DNN application from version 9.0.1 to version 9.0.2. I have downloaded the upgrade.zip for version 9.0.2 from https://github.com/dnnsoftware/Dnn.Platform I then exported the content and copied it to my website folder. When I then go to my website (which only runs locally) I get a DNN error without any text or information. It says DNN Error only on a grey background in the browser. Using the developer tools I could see that the following error is displayed in the console:
GET http://local.sylaender.me/Portals/_default/default.css net::ERR_ABORTED 404 (Not Found) - UpgradeWizard.aspx:8
I have looked at the UpgradeWizard.aspx file. It refers to a default.css which is located in the folder /Resources/Shared/stylesheets/dnndefault/7.0.0/. I copied it and pasted it into the directory /Portals/_default/. The error in the console of the developer tools did not come with it any more, but with the call of the page DNN Error still shows without any information. In the console of the developer tools there are no more errors to see.

Try looking at the EventLog table in the database to see if you're getting a specific error
select top 15 * from eventlog order by logcreatedate desc
select * from exceptions
I think that's the query to use, see if that gets you any additional info that is helpful

Related

Angular code working in Visual Studio but not in IIS

I have created a project with MVC and Angular.js
My app works fine from visual studio.
But when I Publish it in IIS i get error messages in console saying there are some issues in angular.min.js file.
Console error is : Unknown provider: nProvider <- n
I have tried to publish code both in debug and release modes. Nothing is working.
It is working fine from the visual studio.
[
I faced a similar problem and found that when I try to access the angular.min.js directly in the browser file then it was giving an error,
base_url/node_modules/angular/angular.min.js
HTTP Error 404.8 - Not Found
The "request filtering module" is a feature in IIS 7 and above. When IIS rejects a request based on this feature, the error code logged is 404.8. This feature allows you to define which segments are "Servable".
If this is the error you are facing then follow these steps to resolve it.
Open the IIS Manager on your Windows server.
Click the website on which you need to modify your settings.
Double click "Request Filtering" from the IIS section and go to the "Hidden Segments" tab.
Check whether the folder containing (node_modules) angular.min.js which you are trying to access is under the "Hidden Segments".
If it is present, right-click the particular folder and then remove it.

Server up and running but webpage not rendering on heroku local

I am in the process of deploying a dynamic, React.js app to Heroku and wanted to test it out by using 'heroku local' to see if it works before pushing it to Heroku. Everything seemed to be working fine with the server - my database console.log message logs to the terminal signifying everything is going well - but when I try to access the website which is on localhost:5000, I get an error message of 'Cannot GET /' and the console prints a message saying , 'Failed to load resource: the server responded with a status of 404 (Not Found)'. My React.js files are all within the build folder which in conjunction with all of the other files, were pushed to git and commited, but for some reason my files are not showing up. I would greatly appreciate if someone could help me determine what went wrong. Sorry if my question is a little vague; please let me know if I can clarify something in better detail as I am fairly new to programming.
I've added a proxy to one of my package.json files to help with url routing; possibly this could be causing the issue?
Also, if it helps at all, a photo of my folders within Visual Studio code are listed below:

Cannot find the component id : gs://

Component id when added to the data studio was working fine but suddenly stopped working .
The project has public access in google cloud platform.
Not sure what else is missing ..
The “cannot find the component ID” error can come from a couple different things, the most common being:
The manifest, JavaScript, and config are not all public-read
There’s a GCP billing error
The manifest or config are not valid JSON
The manifest or config are not in the format expected by Data Studio. (See the manifest reference and the config reference to see what Data Studio expects)

Ionic Visual Studio 2015 template get 'Angular is undefined' error when trying to start in debug for Windows

I am just starting to look at the Visual Studio tools for Cordova, and the Ionic template.
Build and debugging (F5) for Android and IOS (using the ripple emulator) seems to work fine, however, I cannot get this to work for Windows. I am using VS 2015, on a Windows 8.1 machine.
For Windows (any CPU and 64 bit) I get a problem with the MSVSMON.exe, but this I will ask in a separate post.
So, I try and run as x86, and I get the following errors (local device)
SCRIPT5009: Unhandled exception at line 8, column 1 in
ms-appx://io.cordova.myappe2785d518e9f4f6ea03055878dd7a400/www/js/app.js
0x800a1391 - JavaScript runtime error: 'angular' is undefined
app.js (8,1)
HTML1300: Navigation occurred.
index.html
APPHOST9601: Can't load <http://code.ionicframework.com/1.0.0-rc.5/css/ionic.css>. An application can't load remote web content in the
local context.
index.html
APPHOST9601: Can't load <http://code.ionicframework.com/1.0.0-rc.5/js/ionic.bundle.min.js>. An application can't load remote web content in the local context.
index.html
SCRIPT5009: Unhandled exception at line 1, column 1 in ms-appx://io.cordova.myappe2785d518e9f4f6ea03055878dd7a400/www/js/controllers.js
0x800a1391 - JavaScript runtime error: 'angular' is undefined
controllers.js (1,1)
Anybody have any ideas why this doesn't work?
Thanks in advance
First go to http://code.ionicframework.com
Download the latest zip (currently ionic-1.1.1) ... extract it somewhere then copy the contents of the ionic-1.1.1\release folder to the www of the project.
Then in the index.html of the project replace ionic.css and ionic.bundle.min.js with the ones from the files you copied.
The last step is to download winstore-jscompat and add a refrence to the top of index.html
That's it (u may not need all the files from the \release of the zip)
Starting index.html
index.html after

unable to use JSP files in google app engine

Sample application works , unable to proceed with creating modifications to project
JDK included in build path (some posts say that lack of that might cause errors)
Error -> Error 403 in web page nothing else printed in console or web page
when I do localhost:8888/test.jsp I get a 404 error
console:
This works ->
<welcome-file>NewFile.html</welcome-file>
This FAILS ->
<welcome-file>guestbook.jsp</welcome-file>
my project directory from eclipse
where am i going wrong or missing something
it looked under WAR but it was not under WAR . some internal problem in my eclipse . now fixed
OLD
NEW

Resources