mamebart
Forum Replies Created
-
Thanks for clarifying. Looking forward to the update.
Forum: Plugins
In reply to: [Quiz Cat - WordPress Quiz Plugin] Change button colorFinally, this code did the trick.
.fca_qc_button {
background-color: #e91e63 !important;
}.fakehover {
background-color: #e91e63 !important;
}Forum: Plugins
In reply to: [Quiz Cat - WordPress Quiz Plugin] Change button colorHello,
Thank you for guiding me to the right direction! I used the combined css below, and this gives the button the background color I wanted. Still figuring out how to change the color of the hover effect though, as it is still green/blue-ish. You can see the result at https://www.gdpr-info.be/nl/gdpr-quiz/
.fca_qc_button {
background-color: #e91e63 !important;
}a:hover {
background-color: #e91e63 !important;
}@duoncuong96 just tested this on my instance: running the backup job via the link is working fine (no multiple copies of the backup are created).
https://www.ads-software.com/support/topic/multisite-backups/
in the topic above, the plugin author suggests to change the type of wpcron job…
Forum: Plugins
In reply to: [Quiz Cat - WordPress Quiz Plugin] Button is showing up behind questionsGreat, that code did the trick. Thank you.
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Multisite backupsIn my case, none of the subsites has the BackWPUp plug-in activated individually, or at least, the BackWPUP settings menu is not available from the subsites panel. As garrettgardner said, everything is configured from the network admin panel. Hope that helps.
Just a quick note on this: when I start the backup job manually, everything is fine (only 1 copy is saved).
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Multisite backupsSame here (multisite, 8 sites): multiple backup copies are created in a row…
I’m seeing the same issue (wordpress multisite, 8 sites) since this week: multiple backups are performed without any good reason. I’m backing up to Dropbox.
See also other reports https://www.ads-software.com/support/topic/multisite-backups/
- This reply was modified 7 years, 1 month ago by mamebart.
I’m having the same issue with Yoast SEO and Customizr (Free). There is no way to edit the homepage title/description. Btw: Yoast SEO is on the developers recommended list of plugins: https://docs.presscustomizr.com/article/74-recommended-plugins-for-the-customizr-wordpress-theme
Here’s another topic with the same question (and possible solution):
https://www.ads-software.com/support/topic/cant-activate-frontpage-meta-using-yoast-seo/Forum: Fixing WordPress
In reply to: WP Multisite: pretty permalinks returns 404 (for pages)To complicate things more, there is also a file called httpd-app that also contains a rewrite rule. Here’s the content of that file:
<IfDefine USE_PHP_FPM> <Proxy "unix:/opt/bitnami/php/var/run/wordpress.sock|fcgi://wordpress-fpm" timeout=300> </Proxy> </IfDefine> <Directory "/opt/bitnami/apps/wordpress/htdocs"> Options +MultiViews +FollowSymLinks AllowOverride None <IfVersion < 2.3 > Order allow,deny Allow from all </IfVersion> <IfVersion >= 2.3> Require all granted </IfVersion> <IfDefine USE_PHP_FPM> <FilesMatch \.php$> SetHandler "proxy:fcgi://wordpress-fpm" </FilesMatch> </IfDefine> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [S=2] # uploaded files RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . index.php [L] Include "/opt/bitnami/apps/wordpress/conf/banner.conf" </Directory> Include "/opt/bitnami/apps/wordpress/conf/htaccess.conf"
Forum: Fixing WordPress
In reply to: WP Multisite: pretty permalinks returns 404 (for pages)Actually, there is an .htaccess file, but Bitnami should ignore it. Here’s the content of that file:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
Forum: Fixing WordPress
In reply to: WP Multisite: pretty permalinks returns 404 (for pages)I’ve added the code to htaccess.conf (that’s how Bitnami works), see below. Restarted apache but the 404’s are still there. I know I should change the permalink and try to save multiple times.
The website that is working correctly is number 3, so not the primary domain.
<Directory "/opt/bitnami/apps/wordpress/htdocs"> 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] </Directory> <Directory "/opt/bitnami/apps/wordpress/htdocs/wp-content/plugins/akismet"> # Only allow direct access to specific Web-available files. # Apache 2.2 <IfModule !mod_authz_core.c> Order Deny,Allow Deny from all </IfModule> # Apache 2.4 <IfModule mod_authz_core.c> Require all denied </IfModule> # Akismet CSS and JS <FilesMatch "^(form\.js|akismet\.js|akismet\.css)$"> <IfModule !mod_authz_core.c> Allow from all </IfModule> <IfModule mod_authz_core.c> Require all granted </IfModule> </FilesMatch> # Akismet images <FilesMatch "^logo-full-2x\.png$"> <IfModule !mod_authz_core.c> Allow from all </IfModule> <IfModule mod_authz_core.c> Require all granted </IfModule> </FilesMatch> </Directory> <Directory "/opt/bitnami/apps/wordpress/htdocs/wp-content/plugins/versionpress"> # Apache 2.2 <IfModule !mod_authz_core.c> Order Deny,Allow Deny from all </IfModule> # Apache 2.4 <IfModule mod_authz_core.c> Require all denied </IfModule> </Directory> <Directory "/opt/bitnami/apps/wordpress/htdocs/wp-content/plugins/versionpress/admin/public"> # Apache 2.2 <IfModule !mod_authz_core.c> Allow from all </IfModule> # Apache 2.4 <IfModule mod_authz_core.c> Require all granted </IfModule> </Directory>