backpages
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Website being redirected to “checkout”Here’s the .htaccess file:
# Really Simple SSL
Header always set Strict-Transport-Security: “max-age=31536000” env=HTTPS
Header always set X-Content-Type-Options “nosniff”
Header always set Content-Security-Policy “upgrade-insecure-requests”
Header always set X-XSS-Protection “1; mode=block”
Header always set Expect-CT “max-age=7776000, enforce”
Header always set Referrer-Policy: “no-referrer-when-downgrade”
Header always append X-Frame-Options SAMEORIGIN
Header always set Permissions-Policy “geolocation=(); midi=();notifications=();push=();sync-xhr=();accelerometer=(); gyroscope=(); magnetometer=(); payment=(); camera=(); microphone=();usb=(); xr=();speaker=(self);vibrate=();fullscreen=(self);”
# End Really Simple SSL# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /worldpetershellocruel/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /worldpetershellocruel/index.php [L]
</IfModule>
# END WordPressForum: Fixing WordPress
In reply to: Website being redirected to “checkout”Hi aatanasov and thank you very much for the reply. No, there is no server caching enabled via the hosting service.
Hi lastspalsh, thank you for your response! I will contact you via the contact form with more information.
Forum: Plugins
In reply to: [WooCommerce upcoming Products] admin notification won’t go awaySame problem for me as well. Getting very tired of looking at this message. What do we have to do to get it to go away?
OK, mariagriddl, thanks for letting me know. I guess it’s all OK unless we hear otherwise.
Hoping to get some kind of reply to his issue. Thank you!
Same issue here. Please let us know if this is covered in the plugin or if we need to do something on our end. Thank you very much.
Hi @wfasa and thank you for the reply.
So, I followed your instructions and backed up the wflogs folder and then deleted the folder from the server.
When I logged in to the WordPress admin the error was gone and everything seemed OK. So, hurray!
However, there was also a notice for an update to WordFence, so I tried to update the plugin but received an error saying that “The plugin wordfence/wordfence.php has been deactivated due to an error: Plugin file does not exist.”
And now WordFence appears to be completely gone from my admin area. It is not listed in the Plugins and there is no longer a place for it in the menu on the left.
What now? Do I need to try and reinstall the plugin?
Since no one has answered here I tried contacting them via the link on the Description tab. I’ll let everyone know if I here anything back.
I am looking for an answer to this as well! Our email from Authorize mentions three areas:
Akamai SureRoute Reminder
Transaction and Batch ID Reminder
RC4 Cipher DisablementI would hope there isn’t anything that we need to do on our end, that this would all be handled by the plugin, but I need to confirm.
Thanks!
Hi schatzim, thanks for the response. Unfortunately, that doesn’t help for me. I’m using this code and it sill causes the calendar to be repeated under it.
//The Query $args = array( 'post_type' => 'post', 'p' => '3180', 'posts_per_page => 1' ); $custom_posts = new WP_Query( $args ); //The Loop if ( $custom_posts->have_posts() ) : while ($custom_posts->have_posts()) : $custom_posts->the_post(); ?> <?php the_content(); ?> <?php endwhile; else: endif; //Reset Query wp_reset_query();
Svend, we simply ended up having to take the sidebar off the Calendar page so the content wouldn’t be duplicated twice.
Forum: Fixing WordPress
In reply to: php5.ini File appears to be working, but doesn't change WordPressResolved.
Forum: Fixing WordPress
In reply to: php5.ini File appears to be working, but doesn't change WordPressThanks for all the advice everyone!
Finally figured out the problem. I had read somewhere I should name the file php5.ini if I was running PHP5. I put that file in the admin folder – nothing. Changed it to simply php.ini and voila!
All good now. Thanks again.
Forum: Fixing WordPress
In reply to: php5.ini File appears to be working, but doesn't change WordPressMitchell, I set WP_DEBUG to true. Not getting any error messages anywhere. Where would I see them if there are any?