Problem:
Ferdium startet auf Windows 10 nicht…
Im Taskmanager sind 3 Ferdium Prozesse offen.
Terminal Output:
C:\Program Files\Ferdium>Ferdium.exe C:\Program Files\Ferdium> SyntaxError: C:\Users\CelDell\AppData\Roaming\Ferdium\config\settings.json: Unexpected end of JSON input at JSON.parse (<anonymous>) at readFileSync (C:\Program Files\Ferdium\resources\app.asar\node_modules\jsonfile\index.js:52:17) at n._hydrate (C:\Program Files\Ferdium\resources\app.asar\electron\Settings.js:1:1313) at new Settings (C:\Program Files\Ferdium\resources\app.asar\electron\Settings.js:1:1007) at Object.<anonymous> (C:\Program Files\Ferdium\resources\app.asar\index.js:1:2215) at Module._compile (node:internal/modules/cjs/loader:1484:14) at Module._extensions..js (node:internal/modules/cjs/loader:1564:10) at Module.load (node:internal/modules/cjs/loader:1295:32) at Module._load (node:internal/modules/cjs/loader:1111:12) at c._load (node:electron/js2c/node_init:2:16955)
Lösung:
Die settings.JSON löschen, welche unter
C:\Users\CelDell\AppData\Roaming\Ferdium\config
zu finden ist…..
Ausblick/Ursache:
Die settings.JSON war leer….
Lösungsansätze DeepSeek-KI:
It looks like Ferdium is failing to start because the settings.json
file in your %APPDATA%\Ferdium\config
directory is corrupted (it has an unexpected end of JSON input). This typically happens when the file is incomplete or malformed.
Here’s how to fix this issue:
Method 1: Delete the corrupted settings file
- Close Ferdium completely (check Task Manager to ensure no Ferdium processes are running)
- Navigate to
C:\Users\<YourUsername>\AppData\Roaming\Ferdium\config
- Rename or delete the
settings.json
file - Restart Ferdium – it will create a new default settings file
Method 2: Edit the file manually (if you want to preserve settings)
- Open
C:\Users\<YourUsername>\AppData\Roaming\Ferdium\config\settings.json
in a text editor - Check if the file is incomplete – it should be valid JSON with proper opening and closing braces
{}
- If it’s empty or partial, you can paste this basic structure:
json
Copy
{ "theme": "system", "darkReader": false, "server": "https://api.ferdium.org", "autoLaunchInBackground": false }
- Save the file and restart Ferdium
Method 3: Complete reset (if problems persist)
- Close Ferdium
- Rename or delete the entire
%APPDATA%\Ferdium
folder - Restart Ferdium – it will create fresh configuration files
After trying any of these methods, Ferdium should start normally. If you had custom settings, you’ll need to reconfigure them, but at least the app should launch.
Schreibe einen Kommentar