Claus Bönnhoff

- Total activity 49
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 5
- Subscriptions 12
-
Created AI is always off after restart
AnsweredHi,when I quit IntelliJi and restart it, i get this banner for a short time over the AI panelWhen i try to click one of the blue links the banner disappears but nothing else happens. I can then sta... -
Created Code analytics nearly to unusable in new IntelliJi 2024.1 on Mac M2
AnsweredHi, I have massive problems with the new 2024.1 Enterprise edition on my Mac MBP M2.Not only that it crashes multiple times a day (What it does nover before) it is also showing complete nonsense on... -
Created Code validation not detecting Postgres tables
AnsweredHi, I have configured my Postgres database in IntelliJi and its showing up correctly. I use 2 scheme in my application. "dach" and "users". Scheme dach has a table orders but the code inspection i... -
Edited Inspector does not find currentTarget.className
AnsweredThis code: document.querySelector(".editBackground.layer3").addEventListener("animationend", (event) =>{ if (event.currentTarget.className.indexOf("fadeOut") !== -1) document.querySelect... -
Edited How is IntelliJi detecting objects attributes
Hi, I have this Nodejs express code... app.post('/user', async (req, res) =>{ console.log("save user"); if(AccessManager.checkAccess(req, res, ["user_edit"])) { const session = ... -
Edited Why does automatic comment creation does not work on module class methods?
Hi, When I try to create a comment on an class in module file (mjs), it is not created. E.g. export default MyClass{ init(version) { }} When I type "//*" directly before the init it is not... -
Created How can I add const from a config file to be known from analyzer?
Hi, I have a PHP config file which contains credentials for my database. e.G. myconfig.php const DB_URL = "my.url.com";const DB_PORT = 1234;const DB_NAME = "myDB"; This file is of course not part o... -
Created Assigning Datasource to Module only
AnsweredHi, it would be very helpful, if it would be possible to assign a data source only to a module instead of the whole project. -
Created Tell file in sub drawer it is included bei file in parent folder
Hi, lets say I have a file index.php in the root of my php project. This file looks like require_once("config.php");include_once("./pages/".$_GET['page']); Let's assume in the config.php I do som... -
Created Multi Line comments in javascript aore marked as error
Hallo, since I have updated to PHPStorm 2016 all multi line comments (/* comment */) in a javascript block nested in a file ending with .php are marked as error. Is there any suggestion? Rega...