Radices
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My website won't show up in googleWhat does the xml look like. Are you using an SEO plugin? The play on words makes my google search think I made a typo and shows results based on the correct spelling of absolutely which is not helping you.
Forum: Fixing WordPress
In reply to: WordPress Visual Composer issueOK did you try changing to a default theme. Is the plugin bundled with your theme or did you buy a a copy?
Forum: Fixing WordPress
In reply to: Unable to learn IP addressYou cannot do what you are trying to do. You would need a web server running on your local machine, a static IP, and a IP forwarder from the router to the local machine.
You need to deploy the site on the hosting companies server through cpanel or whatever they use.
Forum: Fixing WordPress
In reply to: WordPress Visual Composer issueTry a different browser and make sure java is enabled.
Forum: Fixing WordPress
In reply to: Help Visual Composer not working!It might be a plugin conflict and or java issue.
Try deactivating all the other plugins. If that resolves the issue, reactivate each one individually until you find the cause.
If that does not resolve the issue, try switching to the default theme for your version of WordPress to rule-out a theme-specific issue (theme functions can interfere like plugins).
Forum: Fixing WordPress
In reply to: Change color of gallery titles…Add this to you css file for the theme (better to create a child theme and add it to the child’s css). Change the color as you wish.
h1.home_page_title.entry-header {
color: aqua;
}Forum: Fixing WordPress
In reply to: Revisions No longer workIs there any declarations in the wp-config.php file that have to do with revisions?
Forum: Fixing WordPress
In reply to: functions.phpTurn on debug mode by editing the wp-config.php file and see what error is reported when you browse to the site.
Were you able to find anything about this issue?
Were you able to duplicate the issue?
Forum: Fixing WordPress
In reply to: some admin pages are not working on WordPress 4.3Try downloading WordPress again and delete then replace your copies of everything except the
wp-config.phpfile and the/wp-content/directory with fresh copies from the download. This will effectively replace all of your core files without damaging your content and settings. Some uploaders tend to be unreliable when overwriting files, so don’t forget to delete the original files before replacing them.Forum: Fixing WordPress
In reply to: Update to 4.3 failed – Cannot Access Site – Usual fixes not workingShouldn’t be … just be careful and don’t delete the wp-content folder or wp-config.php files
Forum: Fixing WordPress
In reply to: Update to 4.3 failed – Cannot Access Site – Usual fixes not workingYou might try a manual reinstall of the core files.
Try downloading WordPress again and delete then replace your copies of everything except the
wp-config.phpfile and the/wp-content/directory with fresh copies from the download. This will effectively replace all of your core files without damaging your content and settings. Some uploaders tend to be unreliable when overwriting files, so don’t forget to delete the original files before replacing them.1. Install the Pie Registration plugin and activate it.
2. Edit a User profile and save it.
This should result in the wp_capabilities being corrupted in the wp_usermeta table and you lose all capabilities as does the user you were editing. The only way back in is to edit the wp_capabilities using phpMyAdmin.
In 1.7.11 this is what is saved:
a:13:{s:26:"wpcf_custom_post_type_view";b:1;s:26:"wpcf_custom_post_type_edit";b:1;s:33:"wpcf_custom_post_type_edit_others";b:1;s:25:"wpcf_custom_taxonomy_view";b:1;s:25:"wpcf_custom_taxonomy_edit";b:1;s:32:"wpcf_custom_taxonomy_edit_others";b:1;s:22:"wpcf_custom_field_view";b:1;s:22:"wpcf_custom_field_edit";b:1;s:29:"wpcf_custom_field_edit_others";b:1;s:25:"wpcf_user_meta_field_view";b:1;s:25:"wpcf_user_meta_field_edit";b:1;s:32:"wpcf_user_meta_field_edit_others";b:1;s:13:"administrator";b:1;}In 1.8 this is what is saved as noted:
a:13:{i:0;s:13:"administrator";s:26:"wpcf_custom_post_type_view";b:1;s:26:"wpcf_custom_post_type_edit";b:1;s:33:"wpcf_custom_post_type_edit_others";b:1;s:25:"wpcf_custom_taxonomy_view";b:1;s:25:"wpcf_custom_taxonomy_edit";b:1;s:32:"wpcf_custom_taxonomy_edit_others";b:1;s:22:"wpcf_custom_field_view";b:1;s:22:"wpcf_custom_field_edit";b:1;s:29:"wpcf_custom_field_edit_others";b:1;s:25:"wpcf_user_meta_field_view";b:1;s:25:"wpcf_user_meta_field_edit";b:1;s:32:"wpcf_user_meta_field_edit_others";b:1;}As you can see the s:13:”administrator”;b:1; part gets truncated and it breaks it. Also note that 1.7.11 prepends what’s there and 1.8 appends whats there but again deletes the bolded part.
Forum: Plugins
In reply to: [Spots] Spots not visible on the dash boardNo offence taken. I know very well the steps as I volunteer on the support forums. I just ask first as you may have seen the issue before. I will let you know when I solve the problem.