Title: wordpressdennis's Replies | WordPress.org

---

# wordpressdennis

  [  ](https://wordpress.org/support/users/wordpressdennis/)

 *   [Profile](https://wordpress.org/support/users/wordpressdennis/)
 *   [Topics Started](https://wordpress.org/support/users/wordpressdennis/topics/)
 *   [Replies Created](https://wordpress.org/support/users/wordpressdennis/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/wordpressdennis/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/wordpressdennis/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/wordpressdennis/engagements/)
 *   [Favorites](https://wordpress.org/support/users/wordpressdennis/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/users/wordpressdennis/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/wordpressdennis/replies/page/2/?output_format=md)

 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[BackWPup – WordPress Backup & Restore Plugin] Version 5 broke 150 sites of mine](https://wordpress.org/support/topic/version-5-broke-150-sites-of-mine/)
 *  [wordpressdennis](https://wordpress.org/support/users/wordpressdennis/)
 * (@wordpressdennis)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/version-5-broke-150-sites-of-mine/#post-18293605)
 * Finetuning suggestion: switch step 2 and 3, step 1 can be replaced by just downloading
   v4.7.1 directly here on wordpress.org
 * I currently create my own (database) backup script and get independent from bad
   plugins. BackWPup had the most easy job configuration related to the competitors.
   But with 5.x its just useless. All of the updates the last months had issues 
   in my case, especially related to newer php versions. so latest know i have to
   get rid of it.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[BackWPup – WordPress Backup & Restore Plugin] Version 5 gentrifiziert das Plugin](https://wordpress.org/support/topic/version-5-gentrifiziert-das-plugin/)
 *  [wordpressdennis](https://wordpress.org/support/users/wordpressdennis/)
 * (@wordpressdennis)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/version-5-gentrifiziert-das-plugin/#post-18289929)
 * In der erweiterten Ansicht hier kannst du unten v4.1.7 herunterladen. Ich habe
   auch einen Rollback auf ca. 10 Webseiten gemacht und auf allen anderen 50 oder
   so direkt die autom. Aktualisierung schnell deaktiviert.
 * [https://de.wordpress.org/plugins/backwpup/advanced/](https://de.wordpress.org/plugins/backwpup/advanced/)
 * .lg
   .dennis
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[BackWPup – WordPress Backup & Restore Plugin] Horrible Update – 5.2.2 even worse](https://wordpress.org/support/topic/horrible-update-9/)
 *  [wordpressdennis](https://wordpress.org/support/users/wordpressdennis/)
 * (@wordpressdennis)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/horrible-update-9/#post-18284570)
 * yes, i agree. there is not only no need for a complete redesign. it is a no go,
   to update this plugin to a just not working version. testing anyone?
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[BackWPup – WordPress Backup & Restore Plugin] The plugin stopped working after the update.](https://wordpress.org/support/topic/the-plugin-stopped-working-after-the-update-2/)
 *  [wordpressdennis](https://wordpress.org/support/users/wordpressdennis/)
 * (@wordpressdennis)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/the-plugin-stopped-working-after-the-update-2/#post-18284032)
 * same here. either they close development of the free version and leave it like
   it is or they just should close the free version at all. nobody needs such “updates”.
   
   i am going back to the last 4.x version and disable auto updates on it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BackWPup – WordPress Backup & Restore Plugin] session() errors](https://wordpress.org/support/topic/session-errors-2/)
 *  Thread Starter [wordpressdennis](https://wordpress.org/support/users/wordpressdennis/)
 * (@wordpressdennis)
 * [1 year, 6 months ago](https://wordpress.org/support/topic/session-errors-2/#post-18095578)
 * hi, thanks for your feedback. As of PHP 8.x – don’t know the exact minor version–
   this throws a lot of error log entries, if error logging is active:
   [25-Oct-2024
   12:12:10 Europe/Berlin] PHP Notice: session_start(): Ignoring session_start()
   because a session is already active in /www/htdocs/…/wp-content/plugins/backwpup/
   src/Infrastructure/Restore/commons.php on line 358
 * Imho to wrap your session_start() in a check of a session already existing should
   be no big deal, that does not need to be discussed, isn’t it? Additionally this
   session_start() is part of the – really cool!!! – new restore function of the
   free plugin. I am sure, it is not necessary, to execuute/initialize this functionality
   in the frontend of the website …. 😉
 * For now my workaround is just disabling error logging for this special error:
   
   set_error_handler(array($this, “customErrorHandler”));function customErrorHandler(
   $errno, $errstr, $errfile, $errline) {if (strpos($errstr, ‘session_start(): Ignoring
   session_start()’) !== false) {return true;}return false;}
 * Not ideal, but it allows me to keep my error logging active with being punished
   by BackWPUp.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BackWPup – WordPress Backup & Restore Plugin] session() errors](https://wordpress.org/support/topic/session-errors-2/)
 *  Thread Starter [wordpressdennis](https://wordpress.org/support/users/wordpressdennis/)
 * (@wordpressdennis)
 * [1 year, 7 months ago](https://wordpress.org/support/topic/session-errors-2/#post-18066830)
 * forgot the info about the related file:
   /backwpup/src/Infrastructure/Restore/
   commons.php
 * at the end is your function with simple session_start() line.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BackWPup – WordPress Backup & Restore Plugin] 4.1.0 update problem](https://wordpress.org/support/topic/4-1-0-update-problem/)
 *  [wordpressdennis](https://wordpress.org/support/users/wordpressdennis/)
 * (@wordpressdennis)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/4-1-0-update-problem/#post-17803250)
 * i just uploaded v4.0.4 and afterwards i just updated manually on the admin plugins
   page. this worked for the website, the admin area was broken after the automatic
   update. so imho the issue maybe can be caused when the update is done automatically
   but not when updating manually?!
    -  This reply was modified 1 year, 11 months ago by [wordpressdennis](https://wordpress.org/support/users/wordpressdennis/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BackWPup – WordPress Backup & Restore Plugin] 4.1.0 update problem](https://wordpress.org/support/topic/4-1-0-update-problem/)
 *  [wordpressdennis](https://wordpress.org/support/users/wordpressdennis/)
 * (@wordpressdennis)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/4-1-0-update-problem/#post-17801442)
 * so *best* case for developers: on some websites it works well, on others it crashes
   the backend. 🙂
 * [@darkstudio](https://wordpress.org/support/users/darkstudio/) 
   Beside this issue
   i am really happy about the new – but problems causing – feature. To add a small,
   but nice “Restore” to the free version is a big step. Thanks for that. 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BackWPup – WordPress Backup & Restore Plugin] 4.1.0 update problem](https://wordpress.org/support/topic/4-1-0-update-problem/)
 *  [wordpressdennis](https://wordpress.org/support/users/wordpressdennis/)
 * (@wordpressdennis)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/4-1-0-update-problem/#post-17801174)
 * maybe there are some files missing, when the update is done with auto update?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BackWPup – WordPress Backup & Restore Plugin] 4.1.0 update problem](https://wordpress.org/support/topic/4-1-0-update-problem/)
 *  [wordpressdennis](https://wordpress.org/support/users/wordpressdennis/)
 * (@wordpressdennis)
 * [1 year, 11 months ago](https://wordpress.org/support/topic/4-1-0-update-problem/#post-17801165)
 * same here. immediately disabled auto updates on all of my websites after getting
   an error email from the first website doing the update.
 * the email contains: Uncaught Error: Class “Inpsyde\BackWPup\Infrastructure\Restore\
   Restore” not found in /www/htdocs/…[/wordpress/wp-content/plugins/backwpup/inc/class-admin.php:808](http://seriencamp.tv/wordpress/wp-content/plugins/backwpup/inc/class-admin.php:808)
 * my php is on 8.0.30 and a careful manual update on 2 other websites did not cause
   this issue.
   hope this helps to figure it out.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[underConstruction] Latest version strips out html tags](https://wordpress.org/support/topic/latest-version-strips-out-html-tags/)
 *  [wordpressdennis](https://wordpress.org/support/users/wordpressdennis/)
 * (@wordpressdennis)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/latest-version-strips-out-html-tags/#post-15900481)
 * So for now there are 3 options:
    – waiting for v1.22 – downgrading to v1.20 –
   removing wrapping wp_kses_post()
 * I decided to use the last one – cause i hate seeing the “update available” info
   all the time in the admin area … 😉
    -  This reply was modified 3 years, 9 months ago by [wordpressdennis](https://wordpress.org/support/users/wordpressdennis/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[underConstruction] Latest version strips out html tags](https://wordpress.org/support/topic/latest-version-strips-out-html-tags/)
 *  [wordpressdennis](https://wordpress.org/support/users/wordpressdennis/)
 * (@wordpressdennis)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/latest-version-strips-out-html-tags/#post-15900472)
 * I can confirm this – almost all HTML tags are now deleted when saving. Using 
   custom HTML code no longer makes sense.
 * The problem is in line 60 of the ucOptions.php file:
    update_option(‘underConstructionHTML’,
   wp_kses_post($_POST[‘ucHTML’]));
 * wp_kses_post() filters the text EXTREMELY – TOO EXTREMELY.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] Issues with Polylang 1.2.x](https://wordpress.org/support/topic/issues-with-polylang-12x/)
 *  [wordpressdennis](https://wordpress.org/support/users/wordpressdennis/)
 * (@wordpressdennis)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/issues-with-polylang-12x/page/3/#post-4306771)
 * oh, i think you did not understand exactly or i just did not explain detailed
   enough.
    i dont change the language the dropdown by myself – its just set to 
   the a wrong language.
 * i made a short screenvideo. maybe you can watch it.
    [http://www.individole.de/polylang_quickedit_bug.mov](http://www.individole.de/polylang_quickedit_bug.mov)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] Issues with Polylang 1.2.x](https://wordpress.org/support/topic/issues-with-polylang-12x/)
 *  [wordpressdennis](https://wordpress.org/support/users/wordpressdennis/)
 * (@wordpressdennis)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/issues-with-polylang-12x/page/3/#post-4306768)
 * hi, forgot something. 🙂
 * it only happens in the quickedit function of wordpress. editing/updating in the
   detailed edit pages is fine.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Polylang] Issues with Polylang 1.2.x](https://wordpress.org/support/topic/issues-with-polylang-12x/)
 *  [wordpressdennis](https://wordpress.org/support/users/wordpressdennis/)
 * (@wordpressdennis)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/issues-with-polylang-12x/page/2/#post-4306767)
 * hi,
 * i’ve found a bug in the quick-edit-function of wordpress.
 * – i have 2 lanugages, german and english
    – i have e.g. a posts in this 2 languages(
   custom post type) – all is working correct, now the problem:
 * 1) first i edit an english post –> OK
    2) now i edit a german post –> the language
   dropdown show english as selected
 * saving now will save this germn post as english and destoys the connection between
   the both posts

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/users/wordpressdennis/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/wordpressdennis/replies/page/2/?output_format=md)