How to fix:
Object of class WP_Error could not be converted to string in /wp-includes/rewrite.php on line 326
All you need to do is to open phpMyadmin and go to the category_base option within the wp_options table.
Empty, and save it.
How to fix:
Object of class WP_Error could not be converted to string in /wp-includes/rewrite.php on line 326
All you need to do is to open phpMyadmin and go to the category_base option within the wp_options table.
Empty, and save it.
In order to fix the background view on iphones for studiopress wellness pro, all you need to do is to edit the style.css and add the following lines:
@media only screen and (max-width: 1140px) { .home .image-section { background-attachment: scroll !important; } }
This is where things get technical. To insert text or images specifically for mobile on your landing page, simple add the following code in the HTML <body>:
<div class="mobileShow"> TEXT OR IMAGE FOR MOBILE HERE </div>
This div will declare that this copy will respond only when the class is triggered. By adding the code below, the class will only be triggered when the user is on a mobile device. Add the following code in the HTML <head> section of your page:
<style type="text/css"> .mobileShow { display: none;} /* Smartphone Portrait and Landscape */ @media only screen and (min-device-width : 320px) and (max-device-width : 480px){ .mobileShow { display: inline;}} </style>
To hide certain text or images that will not display on mobile devices, you will add similar code as before in your HTML <body>:
<div class="mobileHide"> TEXT OR IMAGE NOT FOR MOBILE HERE </div>
Then, you will want to add the following code to your HTML <head> section:
<style type="text/css"> .mobileHide { display: inline;} /* Smartphone Portrait and Landscape */ @media only screen and (min-device-width : 320px) and (max-device-width : 480px){ .mobileHide { display: none;}} </style>
If you want this styling to apply to your entire website, add the following to your CSS stylesheet:
.mobileHide { display: none;}
If you’re running a WordPress site and given the number of potentially show-stopping problems that exist, get fixed, and are replaced with new problems that are just as bad then you need to be on top of what plugins you’re using and what problems they might have. Rather than scanning through loads of vulnerability notices and checking each plugin’s Web site for news there’s not only WPScan, there’s also a free plugin that check the plugins you use for known issues. It’s called Plugin Vulnerabilities and published byWhiteFirDesign.
The publishers also offer another free plugin, Automatic Plugin Updates that, as its name implies, will update your plugins automatically as new versions become available (you can also set up an “ignore” list to exclude specific plugins from automatic updates).
First of all stop the mail server by
service exim stop
then, change directory to /var/spool/exim
cd /var/spool/exim
Now, execute the below command, which will delete all the mails on the mail queue folder.
find input -type f -exec rm -rf {} \;
Now, we also need to run the command for msglog folder too.
find msglog -type f -exec rm -rf {} \;
Once done, start the mailserver exim.
service exim restart
Cookie | Duration | Description |
---|---|---|
cookielawinfo-checkbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
cookielawinfo-checkbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
cookielawinfo-checkbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |