The temporary fix, for now, is either to: 1. Complete the setup checklist – You can open each one up, change a few settings, save changes so it’s detected and marked as completed. (Then revert the changes). 2. Hide the tasklist – Go to WooCommerce > Home Screen, on the…
Avada fatal error Cannot use self importer.php
After upgrading to php 7 Fatal error: Cannot use “self” when no class scope is active in /wp-content/themes/Avada/framework/plugins/importer/importer.php on line 1000 Solution: Edit file /wp-content/themes/Avada/framework/plugins/importer/importer.php on line 1000 from : self::deleteDir($file); to :$this->deleteDir($file);
Fix fatal RevSlider error in dashboard after upgrading to PHP 7
revslider/includes/framework revslider/inc_php/framework vi base-admin.class.php change the following line: private static $arrMetaBoxes = ”; //option boxes that will be added to post to: private static $arrMetaBoxes = array(); //option boxes that will be added to post Fix: edit wp-content/plugins/revslider/inc_php/framework/db.class.php and change the if statement in the checkForErrors function: if($this->wpdb->last_error){ //if(mysql_error()){ if($this->wpdb->last_error{
How to Fix Syntax error, unrecognized expression href=# wordpress avada theme
After updating the WordPress to 4.5, if fusion portfolios, sliders, testimonials, carousels, equal heights, tabs, contact forms are not working that may because of the following error ” Syntax error, unrecognized expression: [href =#]” The reason is WordPress updated jQuery libraries , but the theme using the old library functions.…
Moving Cherry Theme style.less error
In child theme delete style.less.cache delete bootstrap/less/bootstrap.less.cache
wordpress maximum upload file size 2mb
Add to .htaccess <IfModule mod_php5.c> php_value post_max_size 20M php_value upload_max_filesize 40M php_value memory_limit 500M </IfModule>
lsyncd error terminating since out of inotify watches
echo 65536 > /proc/sys/fs/inotify/max_user_watches or sysctl fs.inotify.max_user_watches=65536 vi /etc/sysctl.conf #fix lsyncd error terminating since out of inotify watches fs.inotify.max_user_watches=65536
Install MySQL 5.5.46 on Centos 6.3, 6.5
1. Install Remi repository (as root) cd /etc/yum.repos.d/ ## Remi Dependency on CentOS 5 and Red Hat (RHEL) 5 ## rpm -Uvh http://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm ## CentOS 5 and Red Hat (RHEL) 5 ## rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-5.rpm rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm 2. Update to MySQL 5.5.46 yum –enablerepo=remi,remi-test list mysql…
Fix Column count of mysql.db is wrong. Expected 22, found 20 – centos
1. service httpd stop 2. service mysqld stop 3. edit /etc/my.cnf under [mysqld], add the following line: skip-grant-tables [mysqld] skip-grant-tables 4. service mysqld start 5. run command mysql_fix_privilege_tables –verbose –password=MYSQLPASSWORD 6. edit /etc/my.cnf comment out line #skip-grant-tables 7. stop and start mysqld service mysqld stop service mysqld start 8. start…