yantsa
Forum Replies Created
-
Forum: Localhost Installs
In reply to: YouTube Oembeds not displaying when running IIS on localhostI think you should compare the php.ini file. What about uploading a phpinfo.php file in both webservers and compare them ?
put the bellow code inside a phpinfo.php file and open it in the browser. It will show the complete php setup.
<?php
phpinfo();
?>you should contact your hosting provider since you have to change file permission to 644 . 644 gives you write permission which is needed for updating the file.
Forum: Fixing WordPress
In reply to: Scheduled Post ErrorThe best solution is to run a real cron-job on your server . You may contact your hosting provider in assisting to run a cronjob.
this plugin https://www.ads-software.com/plugins/wp-crontrol/ will give you insights on what’s going on with the wp-cron and why the posts are not published as scheduled.
Forum: Fixing WordPress
In reply to: PHP Failure when refresh not sure what happenedlooks like the wp_debug is turned on. Open wp-config.php file and search for
define( ‘WP_DEBUG’, true );
change true to false and the messages should disappear.
Forum: Fixing WordPress
In reply to: theme install-to directoryat wp-config.php set this
$theme_root = WP_CONTENT_DIR . ‘/var/www/wp-content/themes’;
it think it will do the job.
Forum: Fixing WordPress
In reply to: Website “gone” after deactivating all plugins – blank pagesthe website is up and running. do you still face this issue ?
Forum: Fixing WordPress
In reply to: Blank page when calling Widgets in dashboard menuYou better look into php error logs or turn on wp_debug . You will find useful information here :
https://codex.www.ads-software.com/Debugging_in_WordPress
after trying the above, do you get any visible or logged error ?
Forum: Fixing WordPress
In reply to: 413 Request Entity Too Large nginx/1.10.0 (Ubuntu)you have to edit the nginx.conf , usually stored under /etc/nginx/nginx.conf . Edit or add
client_max_body_size 64M or as match as you wish. reload nginx and it should work.