Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content

WordPress (Managed)

98 Topics 751 Posts
  • WordPress Managed - Package updates

    Pinned
    63
    1 Votes
    63 Posts
    2k Views
    girishG

    [3.6.2]

    Update smtp-mailer to 1.1.12 Update WP CLI to 2.10.0
  • WP Multisite

    Solved
    3
    1 Votes
    3 Posts
    43 Views
    S

    I got it working. Turns out I had made a mistake.

  • 1 Votes
    11 Posts
    129 Views
    girishG

    Ah perfect, solved again then 😄

  • 1 Votes
    4 Posts
    68 Views
    M

    Thanks for the reply. I do have automatic updates enable, and in the app it says "Automatic Updates is currently enabled." But for some reason the automatic updates haven't been applied since packaged version 3.3.0 on 08/09/2023 for multiple of my sites. I am able to manually click update in the Updates section of the app, so I am good for now, thanks.

  • 1 Votes
    6 Posts
    106 Views
    T

    I'm sorry for awakening an old thread, but as this subject came up first in my Google search, I thought it would be wise to share a proper solution regarding the unfiltered_html setting in Cloudron's WordPress managed app.

    In the WordPress managed app, the unfiltered_html capability is configured in the wp-config.php file :

    define('DISALLOW_UNFILTERED_HTML', true);

    to revert this you can just change this line to the following one:

    define('DISALLOW_UNFILTERED_HTML', false);

    The reason WordPress managed on Cloudron could be a better choice for some use cases, particularly from a security standpoint, is noteworthy. In the managed version, most of the WordPress files are on an immutable partition, meaning they cannot be altered. This greatly lowers the risk of security issues caused by unauthorized changes to the files.
    Also, as the WordPress core files are part of the WordPress cloudron app's, they are not included in the Cloudron's backups, making the backups lighter and quicker since only plugins data and customizations are backed up, not the entire WordPress core.

  • Wordpress path **/app/data/** not found

    Solved
    4
    0 Votes
    4 Posts
    40 Views
    girishG

    @opensourced thanks for confirming! We are rolling out that package slowly.

  • WPML not working in managed?

    Unsolved
    4
    0 Votes
    4 Posts
    43 Views
    girishG

    @dsp76 I think this was a bug in the package not setting WP_CONTENT_DIR maybe. I have pushed a new package which sets this, can you check if that helps? I could not test WPML personally since it seems this is some paid plugin (unless there is a test version somewhere for me to test)

  • Can I install an old WP instance

    Solved
    5
    0 Votes
    5 Posts
    111 Views
    girishG

    @dsp76 the migration is no different from any other app. For WP, I didn't find any plugins that specifically migrate only the database and the plugins alone. The managed WP app does not allow changing the WP code itself. This is the reason the guides focus on WordPress Developer - most of the migration plugins just tarball the entire WP source.

    Generally, https://docs.cloudron.io/guides/migrate-wordpress/#migration-without-a-plugin should work though (as long as you have no changes to WP code).

  • Favicon

    Solved
    5
    1 Votes
    5 Posts
    111 Views
    N

    Thank you! The Site Logo block did the trick. Thanks, @girish!

    Wordpress has gotten so complex!

  • Error 500 on admin-ajax.php

    3
    1 Votes
    3 Posts
    202 Views
    A

    nothing but depreciated errors.

    weird thing is, I've rebuilt the site using a backup from all-in-one wp migration tool to www.website.com and redirected website.com to it. site is still standing.

    Attacks happening to root domain?

  • Docs need update

    Solved
    6
    0 Votes
    6 Posts
    63 Views
    girishG

    I will remove that line altogether. This closed issue list was maintained 5-6 years ago but it's not anymore.

  • 3 Votes
    2 Posts
    100 Views
    girishG

    Plugin version 2.5.7 fixes it

  • 0 Votes
    10 Posts
    193 Views
    girishG

    @Jeyakumarrathnaselvi So, WP itself is running OK but you face this issues when uploading a plugin/theme ?

    It would help a lot if you can give us complete information in a single shot and explain the problem in detail with reproduction steps. Otherwise, we all have to guess.

  • Switch from Wordpress Developer -> managed

    Moved
    2
    0 Votes
    2 Posts
    103 Views
    girishG

    No, you have to migrate using some technique like https://docs.cloudron.io/guides/migrate-wordpress/

    Note that depending on your Developer setup, you may not be able to migrate at all. Especially, if you had edited core files or used plugins that edit files and change code etc .

  • Unexpected CiviCRM behavior after clone

    11
    0 Votes
    11 Posts
    143 Views
    girishG

    There's two DSN: CIVICRM_UF_DSN and right below the above screenshot CIVICRM_DSN . Both have to be updated after a clone.

  • important security question

    8
    0 Votes
    8 Posts
    368 Views
    adisonA

    aw, thanks. i will attempt to use wordpress managed, as long as the export thing will work.

  • WordPress RRR 6.2.2!

    Solved
    2
    2 Votes
    2 Posts
    101 Views
    nebulonN

    Updated now.

  • 0 Votes
    9 Posts
    161 Views
    girishG

    @p44 You can do this in a few ways, depending on your use case:

    With surfer, you can use create a 404.html . In javascript, use something like https://stackoverflow.com/questions/20077103/page-redirect-with-path-using-javascript . Here's an ultra basic 404.html: <html> <script> window.location = "https://cloudron.io"; </script> <body> Not found </body> </html> Another idea is to use the LAMP app and configure apache to redirect using redirect rules.

    When to use which? Off my head:

    Use surfer, if you want to show a page which has the classic "redirecting in 3..2..1". Use lamp, if you want to redirect asap. This also does redirect at http level. So, a brower can potentially cache/remember this information and will be faster for future access (but with the danger that it will not hit your site anymore).
  • Wordfence Wordress Plugin not working with Cloudron

    Moved Solved
    7
    1 Votes
    7 Posts
    200 Views
    U

    @msbt The developer version of the WordPress app fixed the issue I was facing. Thank you

  • Wordpress Base directory

    Moved
    5
    1 Votes
    5 Posts
    169 Views
    girishG

    @Thedurancode What is the exact error? Do you have a screenshot ?

    Also, as @JLX89 said, there are two WordPress packages:

    Managed - https://www.cloudron.io/store/org.wordpress.cloudronapp.html Developer - https://www.cloudron.io/store/org.wordpress.unmanaged.cloudronapp.html

    If you want to use a lot of plugins/customization, use the Developer edition. This gives you a lot more control of your installation.