HEX
Server: LiteSpeed
System: Linux houston.panomity.com 6.8.0-100-generic #100-Ubuntu SMP PREEMPT_DYNAMIC Tue Jan 13 16:40:06 UTC 2026 x86_64
User: nudepix (1011)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //proc/self/root/tmp/dateweb-breadcrumb-patch.mjs
import { readFileSync, writeFileSync } from 'node:fs';
const pages = {
  'scripts/generate-static-dating-fatigue.mjs': ['Dating-Fatigue überwinden', 'https://dateweb.de/ratgeber/dating-fatigue/'],
  'scripts/generate-static-ghosting-guide.mjs': ['Ghosting beim Online-Dating', 'https://dateweb.de/ratgeber/ghosting-online-dating/'],
  'scripts/generate-static-dating-ab-40.mjs': ['Dating ab 40', 'https://dateweb.de/ratgeber/dating-ab-40/'],
  'scripts/generate-static-dating-nach-trennung.mjs': ['Dating nach Trennung', 'https://dateweb.de/ratgeber/dating-nach-trennung/'],
};
for (const [file, [name, url]] of Object.entries(pages)) {
  let s = readFileSync(file, 'utf8');
  if (!s.includes('"@type":"BreadcrumbList"')) {
    const breadcrumb = `\n  <script type="application/ld+json">{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Startseite","item":"https://dateweb.de/"},{"@type":"ListItem","position":2,"name":"Ratgeber","item":"https://dateweb.de/ratgeber/"},{"@type":"ListItem","position":3,"name":"${name}","item":"${url}"}]}</script>`;
    s = s.replace('\n</head>', `${breadcrumb}\n</head>`);
    writeFileSync(file, s, 'utf8');
    console.log(`patched ${file}`);
  } else {
    console.log(`exists ${file}`);
  }
}