Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter gubblebums

    (@gubblebums)

    Thanks, this worked! 🙂

    Thread Starter gubblebums

    (@gubblebums)

    Hi,
    So the people who own this website have lost the username and password to the WordPress site, and also do not have the required keypair to access their AWS ec2 instance. We’d like to simply manage to login to WP and take a backup, and the only option is the password reset link via automatic mailer, which doesn’t work. Is there any workaround to this? We can’t access anything via the hosting platform.

    Thread Starter gubblebums

    (@gubblebums)

    So the problem was that the database values still had xip.io stored. The solution was to update the database values to nip.io using the following commands:
    ————————

    sudo mysql -u bn_wordpress -p -e "USE bitnami_wordpress; UPDATE wp_options SET option_value='http://65.1.67.121.nip.io' WHERE option_name='siteurl' OR option_name='home';"
    
    sudo mysql -u bn_wordpress -p -e "USE bitnami_wordpress; UPDATE wp_blogs SET domain='65.1.67.121.nip.io' WHERE blog_id='1';"

    ————————
    The issue is solved now, thank you for your time!

    • This reply was modified 4 years, 9 months ago by gubblebums.
    • This reply was modified 4 years, 9 months ago by gubblebums.
    Thread Starter gubblebums

    (@gubblebums)

    Thank you so much for taking the time to provide such a detailed response, I will try these out and let you know if it worked! 🙂

    Thread Starter gubblebums

    (@gubblebums)

    Can I disable Lightcache through Filezilla? As we cannot access network admin currently.

    Thread Starter gubblebums

    (@gubblebums)

    Hello bcworkz, I replaced the rewrite rule in htaccess with the code you provided, still getting the same error.

    Here’s the current htaccess file:
    # BEGIN LSCACHE
    ## LITESPEED WP CACHE PLUGIN – Do not edit the contents of this block! ##
    <IfModule LiteSpeed>
    RewriteEngine on
    CacheLookup on
    RewriteRule .* – [E=Cache-Control:no-autoflush]
    RewriteRule \.object-cache\.ini – [F,L]

    </IfModule>
    ## LITESPEED WP CACHE PLUGIN – Do not edit the contents of this block! ##
    # END LSCACHE

    # BEGIN WordPress
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index.php$ – [L]

    # add a trailing slash to /wp-admin
    RewriteRule ^wp-admin$ wp-admin/ [R=301,L]

    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ – [L]
    RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
    RewriteRule ^(.*\.php)$ wp/$1 [L]
    RewriteRule . index.php [L]
    # END WordPress

Viewing 6 replies - 1 through 6 (of 6 total)