Strange symbol shows up on website (L SEP)?

That character is U+2028 or HTML entity code 
 which is a kind of newline character. It’s not actually supposed to be displayed. I’m guessing that either your server side scripts failed to translate it into a new line or you are using a font that displays it. But, since we know the HTML and UNICODE vales for the … Read more

Not Authorized to View This Page

Reset the URLs to their http version. You can do this via PHPMYADMIN in the wp_options table by locating wp_home and wp_siteurl and adding the http:// version of your website or by adding constants in wp-config.php: Add these two lines to your wp-config.php, where “example.com” is the correct location of your site. define( ‘WP_HOME’, ‘http://example.com’ ); define( ‘WP_SITEURL’, ‘http://example.com’ ); Reference: https://wordpress.org/support/article/changing-the-site-url/#edit-wp-config-php … Read more

Verify return code: 20 when testing OpenSSL

Your first error is – you need a certificate file. Or at least path to them, so that you can verify the OpenSSL.org certificate. Your second error – you don’t specify a file and -CAfile requires a single certificate (PEM or DER encoded). The easiest way to perform connection with OpenSSL.org: Download mozilla certificate bundle from here: http://curl.haxx.se/docs/caextract.html … Read more

What is the “Endurance Cache” feature in my WordPress website?

I noticed this new wordpress version I’m running has a “Endurance Cache” option at the bottom of the “Settings > General” page. That is caching all of the changes I’m doing on css. So whenever I update something the changes don’t reflect on the browser instantaneously. I’m wondering if that’s wordpress native or if I … Read more

How fix ‘Failed to load resource: the server responded with a status of 403’?

The javascripts didnt loaded eventhough I can open it directly via web browser. I want to import product in my Woocommerce site using builtin import functionality. When I run the importer, the progress bar didnt move even though I only imported 1 row of product. After I open the console, there are error “Failed to … Read more