Problems when writing a post
This can be done with css. Look for word-wrap and change it to below: .class-name { word-wrap: normal; -webkit-hyphens: none; -moz-hyphens: none; hyphens: none; }
This can be done with css. Look for word-wrap and change it to below: .class-name { word-wrap: normal; -webkit-hyphens: none; -moz-hyphens: none; hyphens: none; }
I’d try to confirm that the wp-config.php is well configured, but if you can’t access your backend with root access I’d check file and folder permissions. Usually you should have 644 permissions on almost every subfolder inside your wordpress installation, though there are others (such as wp-content/uploads) that should be writeable too.
If the problem is easily reproducible (i.e. you can make it happen again and again by following a set of steps), do this: Step 1: Document the steps required to cause the problem. Step 2: Document all of the plugins you have running Step 3: Deactivate all of your plugins! Step 4: Perform the steps … Read more
I wound up doing a repair database via phpMyAdmin and that solved the trouble.
You can add the WP_HOME and WP_SITEURL constants in your wp-config.php file to manually override the database options. Scenario one: You want to surface WordPress from your blog folder. define(‘WP_HOME’,’http://example.com/blog’); define(‘WP_SITEURL’,’http://example.com/blog’); Scenario Two: You’ve moved WordPress to another folder, but want it to surface at your root. define(‘WP_HOME’,’http://example.com’); define(‘WP_SITEURL’,’http://example.com/blog’); You will need to make sure … Read more
Different sites can have different plugins enabled, different sets of users, etc. That’s built in to Multisite. The “LMS talking to ecommerce” part will probably require you (or someone you hire) to write some code — a head start might be to look at switch_to_blog() and restore_current_blog(), and indeed the list of Multisite functions. (Or … Read more
Try using the php error log to debug your issue. You can find the error log using this command in the terminal is you are using linux. sudo su cd /var/log/apache2/ sudo gedit error.log Now if you debug properly you will get to know where the changes went wrong.
is your site working? or problem it’s just with admin? try to review apache access & error logs for possible clues. Try also to review htaccess, bad rewrite could break your site
As a temporary (but poor fix) the below code can be added to “functions.php”. //Remove nofollow function rm_nofollow($txt){ $txt=str_replace(‘ rel=”nofollow”‘,”,$txt); return $txt; } add_filter(‘bbp_get_topic_content’,’rm_nofollow’,20); add_filter(‘bbp_get_reply_content’,’rm_nofollow’,20);
Unable to load Posts list & Getting error 500 error