Farhad
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Showing errorIt is normal, some plugins are not ok for wp 5.3, simple delete them and update new version after fix in panel (if is available).
I checked, it is not deleted or may you undo. Delete
hummingbird-performance
folder under plugins and if after delete saw a new one, delete it also.(you can reinstall them after fix, if new version is released)
Note: as your plugin is a caching addon, clear cache also, mean delete advance cache file , after login clear cache again, it is not an important file and replaced by cache plugins.
- This reply was modified 5 years, 4 months ago by Farhad.
- This reply was modified 5 years, 4 months ago by Farhad.
- This reply was modified 5 years, 4 months ago by Farhad. Reason: fix a word
- This reply was modified 5 years, 4 months ago by Farhad.
- This reply was modified 5 years, 4 months ago by Farhad. Reason: Note added
Forum: Fixing WordPress
In reply to: Site fora do arHi
Simple delete ocean extra plugin by Cpanel/ftp from plugins directory.
Problem of the plugin was fixed, after delete you can install new version in your panel.
(Also you can download latest version, upload it in plugins directory and extract it, mean manually update.
https://downloads.www.ads-software.com/plugin/ocean-extra.1.5.19.zip
Changelog 1.5.19 Fixed: Icon issue. Fixed: Compatibility with WP5.3
)
Forum: Fixing WordPress
In reply to: Showing errorHi
Simple delete hummingbird-performance plugin from wp-content/plugins by cpanel or FTP
Forum: Fixing WordPress
In reply to: WordPress Attack Protection ProblemSo it is a host feature, good, happy to see it is not a problem in real, ??
Forum: Fixing WordPress
In reply to: WordPress Attack Protection ProblemHi @rdcedro, its work ok now, is fixed?
https://ownwebsite.com/wp-login.php- This reply was modified 5 years, 4 months ago by Farhad.
Forum: Fixing WordPress
In reply to: ERROR: Cookies are blocked due to unexpected output.Please first update your wordpress (core, plugins and themes) & and then check the problem.
Forum: Fixing WordPress
In reply to: Restore WordPress DatabaseHi, if you changed your url so you need to change it in your wp config and sqli db to be fixed. There is 3 way…
1- Add your site by wp config:
define( 'WP_SITEURL', 'https://yoursite.com' ); define( 'WP_HOME', 'https://yoursite.com' );
2- by functions, simple add this code to your functions.php of theme:
update_option( 'siteurl', 'https://yoursite.com' ); update_option( 'home', 'https://yoursite.com' );
3- change it in db,
1. Go to phpMyadmin, then to your db
2. find options table (looklike wp_options or as it),
3. Change address of site url & home to your newNow should your site work fine.
If you try all ways one by one its better, also delete way 2 after fix.Forum: Fixing WordPress
In reply to: WordPress Attack Protection ProblemCan you give me list of your plugins by name?
Forum: Fixing WordPress
In reply to: Big problems on the website after each update of the WordPressForum: Fixing WordPress
In reply to: How do I automate all updates?@ineedquestionsanswered your codes is only for plugin & themes, do you deactived wp cron?
I say my method that work ok, mean now in use in my website.Please remember for update wordpress add this code to wp config file:
define( 'WP_AUTO_UPDATE_CORE', true );
And this codes to functions:
add_filter( 'allow_minor_auto_core_updates', '__return_true' ); // Enable minor updates add_filter( 'allow_major_auto_core_updates', '__return_true' ); // Enable major updates
Forum: Fixing WordPress
In reply to: How do I automate all updates?Yes you can do that by 2 stage…
First: add the code to wp-config.php
define( 'WP_AUTO_UPDATE_CORE', true );
Next, there is 3 ways…
1.plugins
Such as WP Auto Updater
2.functions.php
By adding some simple codes in theme functions
3.mu-plugins
i use this method, create a php file in wp-content/mu-plugins directory, with any name you like, add the code and save it, it just work, remember add<?php
before code &?>
After it.Here is code with comment
//Auto update add_filter( 'allow_dev_auto_core_updates', '__return_false' ); // disable development updates add_filter( 'allow_minor_auto_core_updates', '__return_true' ); // Enable minor updates add_filter( 'allow_major_auto_core_updates', '__return_true' ); // Enable major updates add_filter( 'auto_update_plugin', '__return_true' ); add_filter( 'auto_update_theme', '__return_true' ); add_filter( 'auto_update_translation', '__return_true' );
You can delete first line (dev) bcs it is disabled by default.
If you want disable a update as translate for example, simple change true to false
Forum: Plugins
In reply to: [Thumbnails] Webp Thumbnails SupportOk, thank you.
I build a simple php script that work fine for me (check my web https://meia.ir)
I can build php but i cant build wordpress plugin so it run by cron job standalone.
it will be fine, yes you are right but more than 80% of browsers support webp.
??