Search found 223 matches

by erAck
Thu Apr 30, 2020 7:41 pm
Forum: Generelles in Deutsch
Topic: externen Inhalt im "Artikel-Fenster" anzeigen?
Replies: 6
Views: 4934

Re: externen Inhalt im "Artikel-Fenster" anzeigen?

Kurze Antwort: manchmal. Längere Antwort: meistens nicht. Lange Antwort: <iframe> ist am Aussterben, oft per Content-Security-Policy (CSP) HTTP-Header der einzubindenden Seite verboten bzw. nicht erlaubt, und dann zeigt der Browser das auch nicht an. Falls http in https eingebunden wird auch nicht. ...
by erAck
Thu Apr 30, 2020 7:23 pm
Forum: Generelles in Deutsch
Topic: Auto-Upgrade 2.3.5: Unpacking the update failed
Replies: 1
Views: 2382

Re: Auto-Upgrade 2.3.5: Unpacking the update failed

Jein.. ich denke du hast ein ganz anderes Problem, du hast s9y mal als root installiert. Dein Web-Server läuft zum Glück nicht als root.. mit drwxr-xr-x root root hat der dann halt keine Schreibberechtigung. Verzeichnisse müssen nicht 777 sein, wichtig für ein Auto-Upgrade ist, dass Schreibberechtig...
by erAck
Wed Apr 29, 2020 5:43 pm
Forum: Generelles in Deutsch
Topic: WYSIWYG - wie etwas als Code markieren unter Beibehaltung von Zeilenumbrüchen?
Replies: 16
Views: 14157

Re: WYSIWYG - wie etwas als Code markieren unter Beibehaltung von Zeilenumbrüchen?

onli wrote: Wed Apr 29, 2020 5:19 pm erAck: Auch im WYSIWYG-Editor?
Gute Frage.. wahrscheinlich nicht. Ich benutze den nicht (mehr?). Kann man den nicht temporär in einen Raw-Modus schalten?
by erAck
Wed Apr 29, 2020 5:06 pm
Forum: Generelles in Deutsch
Topic: WYSIWYG - wie etwas als Code markieren unter Beibehaltung von Zeilenumbrüchen?
Replies: 16
Views: 14157

Re: WYSIWYG - wie etwas als Code markieren unter Beibehaltung von Zeilenumbrüchen?

Ich hab das eigentlich immer so gemacht: <pre class="code"> &lt; escape &amp; things! &gt; </pre> <p> und im template user.css eine hübsche Box mit pre.code { ...; overflow: auto; } Man muss halt immer kurz ein Search&Replace für die drei escapements über den Code-Schnippse...
by erAck
Sun Apr 26, 2020 7:37 pm
Forum: General discussions
Topic: Reseting admin password
Replies: 3
Views: 19746

Re: Reseting admin password

Nice automated solution. The essential part is that serendipity_hash() calls password_hash($string, PASSWORD_BCRYPT).

Now why did I find that now in my snippets collection as well, it must had been published somewhere and I didn't think of.

Anyway, glad it works.
by erAck
Mon Apr 20, 2020 3:49 am
Forum: General discussions
Topic: Reseting admin password
Replies: 3
Views: 19746

Re: Reseting admin password

Try if this works better:

Code: Select all

php -r 'echo password_hash("YourPassword", PASSWORD_BCRYPT) . "\n";'
and ensure the table's hashtype field has value 2 (old 1 would be sha1 that would have to be converted).
by erAck
Thu Mar 12, 2020 1:51 am
Forum: Generelles in Deutsch
Topic: Spam Kommentare
Replies: 5
Views: 3409

Re: Spam Kommentare

Könntest du bitte noch die URLs entfernen, damit die Spammer nicht auch noch hier unterstützt werden, danke.
by erAck
Fri Feb 14, 2020 6:30 pm
Forum: Generelles in Deutsch
Topic: Unicode Emojis in Kommentaren
Replies: 6
Views: 4103

Re: Unicode Emojis in Kommentaren

Wird in der Datenbank nicht einfach als UTF-8 gespeichert?
by erAck
Fri Feb 14, 2020 3:43 pm
Forum: Generelles in Deutsch
Topic: Unicode Emojis in Kommentaren
Replies: 6
Views: 4103

Re: Unicode Emojis in Kommentaren

Beispiel-Link auf so einen Kommentar?
by erAck
Tue Jan 07, 2020 10:46 am
Forum: Installation
Topic: Failed Opening PEAR/Exception.php (Themes, plug-ins, Maint)
Replies: 11
Views: 29710

Re: Failed Opening PEAR/Exception.php (Themes, plug-ins, Maint)

Huhu wrote: Tue Jan 07, 2020 9:44 am Including

Code: Select all

$serendipity['use_PEAR'] = false;
strangely doesn't change anything.
It should at least change the error message's include_path='...' order where the bundled-libs paths should come first then.
by erAck
Mon Jan 06, 2020 1:35 pm
Forum: Installation
Topic: Failed Opening PEAR/Exception.php (Themes, plug-ins, Maint)
Replies: 11
Views: 29710

Re: Failed Opening PEAR/Exception.php (Themes, plug-ins, Maint)

This part looks odd include_path='.:/usr/local/(...)/bundled-libs/:/storage/content/(...)/bundled-libs/Smarty/libs/ There should not be /usr/local/(...)/bundled-libs/ but instead /usr/local/...:/storage/content/(...)/bundled-libs/ But I assume you crunched that when editing the (...) parts out. It m...
by erAck
Tue Dec 31, 2019 1:08 pm
Forum: General discussions
Topic: RSS import option to S9Y
Replies: 1
Views: 10913

Re: RSS import option to S9Y

I do not have database access at that level on the new hosting service. Are you sure? All it needs is being able to import a database dump, usually offered at least through phpMyAdmin, see https://docs.phpmyadmin.net/en/latest/import_export.html. Also, if there is a backup/restore functionality tha...
by erAck
Sat Nov 23, 2019 3:20 pm
Forum: Installation
Topic: Table serendipity_config not created on install
Replies: 13
Views: 10523

Re: Table serendipity_config not created on install

Yay! Congrats!