WordPress CherryFramework lessphp fatal error

wordpress

On a WordPress site using CherryFramework based theme, was getting following error. lessphp fatal error: load error: failed to find /home/mediaxtreme/sitedomain.com/wp-content/themes/theme50607/bootstrap/less/bootstrap.lesslessphp fatal error: load error: failed to find /home/mediaxtreme/sitedomain.com/wp-content/themes/theme50607/style.less Warning: Cannot modify header information – headers already sent by (output started at /home/mediaxtre/public_html/wp-content/themes/CherryFramework/includes/less-compile.php:157) in /home/mediaxtre/public_html/wp-login.php on line 423 This was due the web site have … Read more

Change WordPress URL

Here are some plugins that can help with WordPress url change: Method 1: Editing MySQL backup To change the WordPress site URL, backup your MySQL database. Run sed command to replace the URL in MySQL backup file. Restore the new db-modified.sql, which will have the database with the URL changed. Method 2: Using Plugin Edit … Read more

WordPress

WordPress Installation WordPress Migration WordPress Developement Tools https://scanwp.net – Scan WordPress for plugins/theme installed Errors WordPress Attacks WordPress Behind Reverse Proxy Add the following code to wp-config.php to get WordPress work behind a reverse proxy Enable SSL Increase WordPress memory Add the following to wp-config.php

WordPress Updating with FTP

To update wordpress from admin area, you need to be running web server as the user owning files. This is not possible when you run PHP as apache module. To fix this, you need to edit your wp-config.php and add following to end of the file. define(‘FS_METHOD’, ‘ftpext’); define(‘FTP_USER’, ‘FTP_USERNAME’); define(‘FTP_PASS’, ‘FTP_PASSWORD’); define(‘FTP_HOST’, ‘localhost’); define(‘FTP_SSL’, … Read more

Nginx WordPress

Here is nginx configuration for wordpress server { listen 80; server_name serverok.in www.serverok.in; root /var/www/html; index index.php; client_max_body_size 100M; location = /favicon.ico { log_not_found off; access_log off; } location = /robots.txt { allow all; log_not_found off; access_log off; } location / { try_files $uri $uri/ /index.php?$args; } location ~ \.php$ { include snippets/fastcgi-php.conf; proxy_read_timeout 180; … Read more

WordPress bitnami

Install LetsEncrypt SSL on Bitnami To stop/start service use ctlscript.sh root@ip-172-31-26-46:~# /opt/bitnami/ctlscript.sh usage: /opt/bitnami/ctlscript.sh help /opt/bitnami/ctlscript.sh (start|stop|restart|status) /opt/bitnami/ctlscript.sh (start|stop|restart|status) mysql /opt/bitnami/ctlscript.sh (start|stop|restart|status) php-fpm /opt/bitnami/ctlscript.sh (start|stop|restart|status) apache help – this screen start – start the service(s) stop – stop the service(s) restart – restart or start the service(s) status – show the status of the service(s) … Read more