TYPO3 Important Notice message - typo3

I have TYPO3 8.7.1 installed and when I login to backend in "About modules" page a red message appears: "Important Notice!
One or more problems were detected with your TYPO3 installation. Please check the status report for more information."
How can I remove this? Because in Reports > Status report, only things that I'm not sure about are these, but they don't show as errors, just notices:
updates Update Incomplete
Your system registers XCLASS

If you want disable all systems related Important Notice message.
Then you can disable systems extension reports. I am not sure, but i think all system related important notice message are generated through this extension.

Related

License code entered, but I get a warning when editing users

Hi everyone I am experiencing a problem with my Backpack license, I bought the license for a single project, and I have inserted the license into my .Env file as described in the documentation:
BACKPACK_LICENSE=XXXX-YYY-ZZZZ-XXXX-YYY-ZZZZ.
And set APP_ENV=production.
The system seems to recognise the licence correctly (no yellow warning is shown when logging in), however when I try to edit my users, the yellow warning appears with the words: "User editing is disabled in the demo version".
What's wrong?
I should point out that I have not activated the cache, but as a test I have also run the command as suggested: php artisan config:clear, but I still get this warning.
Can anyone help me? Thank you.
It sounds like you've created your project starting from the Backpack demo. That's just an example Laravel + Backpack installation, to show off its features, it should not be used for real-life projects. Notice the demo docs page says:
Don't use this demo to start your real projects. Please use the recommended installation procedure. You don't want all the bogus entities we've created. You don't want all the packages we've used. And you definitely don't want the default admin user. Start from scratch.
I recommend you create a new Laravel project, then install Backpack on top of it, then copy-paste your custom code in that new project. That will not only fix the inability to edit things, but many other problems like the ones listed in the quote above.

Using the LibreOffice Spell Checker

Just installed the latest version of LibreOffice but when I perform spell checking [via ToolS|Spelling] nothing happens.
I then followed the instructions at:
https://extensions.libreoffice.org/extensions/english-dictionaries
and download the dictionary file, although I already I saw it locked in the Extensions Manager. However, I added it, which appeared to remove the padlock icon.
After restarting LibreOffice I went back and tried to perform a BASIC spell check operation, and guess what ... still nothing.
I used to use OpenOffice and had the same problems with that. There is clearly something I don't get about performing spell checking in LibreOffice.
If I perform a spell check then it pops up a dialog stating that the check is complete immediately, when on a 300 page document I know it isn't! I can select a text language and user-defined dictionaries from options, but still nothing.
The whole thing is bonkers.
Your user profile may be in some way corrupt, and resetting your user profile may resolve the problem. See, for example, https://forum.openoffice.org/en/forum/viewtopic.php?f=6&t=89050, where spellcheck problems were noted as being resolved in this manner.
Additionally, information specifically concerning the LibreOffice user profile and discussing corruption resolution is available at https://wiki.documentfoundation.org/UserProfile.

Click Orders and I'm getting "Information Changes have been made.."

I have done a default installation of Magento 2.2.5 CE and when I click on an order in the Magento Admin I get the following error:
"Order View. Information changes have been made to this section that have not been saved. This tab contains invalid data. Please resolve this before saving".
The problem is that I haven't done any messing with the back end code and its a default install. Where am I going wrong? There doesn't seem to be any other error messages. (I haven't turned on developer mode). When I go into the Module Manger there are no modules listed so I don't think its that. I don't have any extension installed.
I'm baffled. Any help greatly appreciated.
Mike
Disabling module Temando_Shipping fixed that

Oops, an error occurred - after TYPO3 Upgrade 7.6 to 8.7

I tried manually upgrade TYPO3 from 7.6.6 to 8.7.16 and received: Oops, an error occurred! I can't login to TYPO3.
I apologize for the brief description but I was very tired after a many hours trying to remove the errorenter image description here. The error looks just like the image, but at the beginning there was a white screen ...
Over the years I have not had problems installing TYPO3 (still Versions 3 and 4), but I had a break in use. I do not have access to SSH. I also assume Symlink was mistakenly set by the admin, and that's why I had to do it manually.
https://docs.typo3.org/typo3cms/InstallationGuide/QuickInstall/GetAndUnpack/Index.html
Similarly, because I did not have access and I did it manually... I noticed that there are also changes in installation, perhaps a problem.
First step to do after an upgrade is to open the install-tool primary to alter tables for new requirements:
example.com/typo3/install.php
There you have to open the upgrade-wizard and follow the shown steps.
You also get the option shown to install compatibility-7, an extension that adds a compatibility-layer for older extensions. You can enter that step and afterwards still decide if to install it or not. In the wizard the logic is that the option will be shown and no matter about your decision it will be marked as done, so that it won't be shown another time again usually.
In your case it's better to follow the update-instructions rather than the install-instructions: https://docs.typo3.org/typo3cms/InstallationGuide/Upgrade/Index.html

Exclude ReSharper error for "Resource not found" inside Views

I have an MVC2 application and use ReSharper 6.1 - I've heavily customised the Code Inspection Severity and edited what it decides to show as errors, warnings, suggestions and hints, but I cannot seem to stop it from telling me that a specific resource is missing when utilising a HTMLHelper.
So, for instance:
<img src="<%:Url.Content("~/Resources/Image12345.jpg")%>" />
I get an error on every line similar to the above telling me that the path above does not exist - which at design time it does not, but during the build process all of these views are XCOPY'd to a location which contains all of the resources, such as the images, so at the point of running the application all of this path resolution is correct. Because of working in a team of people, some of which are new to ReSharper, I wanted to exclude this error from appearing as it may cause colleagues of mine to start fiddling with something that isn't broken.
ReSharper obviously doesn't know that this isn't an issue and it has no way of knowing which is why I want to turn off this specific bit of analysis. I've found on the whole that ReSharper is massively customizable and in version 6.1 under Inspection Severity there are some new MVC options, which have proved useful - but I can see no way of turning off the inspection for this.
Anybody have any ideas?
There are few options, press ALT+ENTER.
Suppress inspection "Path Error" with comment. You can suppress whole block of code, not only each of tag.
Suppress inspection "Path Error" at all at whole project.
There is new feature of 6.1 - path mapping, but it seems broken in conjunction with MVC.
Set to ignore that specific error by:
Open Soultion Errors Window by ReSharper->Windows->Soultion Errors Window.
Right-click annoying error and select Ignore Error.
See answer for another error for more explanation.
Well - It seems that this particular type of inspection is not currently catered for. I'll see if I can request it with JetBrains and hopefully more granular MVC inspection will be included in the future.
Cheers guys