gubblebums
Forum Replies Created
-
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Merge and center cells in a rowThanks, this worked! 🙂
Forum: Fixing WordPress
In reply to: Password reset link not workingHi,
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.Forum: Networking WordPress
In reply to: Cannot login to or access Network Admin on MultisiteSo 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.
Forum: Networking WordPress
In reply to: Cannot login to or access Network Admin on MultisiteThank 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! 🙂
Forum: Networking WordPress
In reply to: Cannot login to or access Network Admin on MultisiteCan I disable Lightcache through Filezilla? As we cannot access network admin currently.
Forum: Networking WordPress
In reply to: Cannot login to or access Network Admin on MultisiteHello 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