accuwebhosting
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 404 Error PageHi,
Have you tried following?
Fix your permalinks settings. At WordPress Dashboard, Go to Settings » Permalinks, and simply click on Save Changes button. This will update your permalinks settings and flush rewrite rules.
Thanks,
Forum: Fixing WordPress
In reply to: Available Updates Not ShowingHi,
I could find following similar threads for you. I hope that will help you.
https://wordpress.org/support/topic/wp-updates-not-showing-latest-wp-version-available
https://wordpress.org/support/topic/40-update-not-showing-in-wp-dashboard
Thanks,
Forum: Fixing WordPress
In reply to: Cant get on my wordpress siteHi,
Make sure you have necessary permissions on WordPress files and folders:
Public_html ==> 750
Other Subfolders ==> 755
All files ==> 644If this does not fix your issue, try re-uploading all files & folders – except the wp-content folder – from a fresh download of WordPress 4.2.2.
Hope that helps.
Thanks,Forum: Fixing WordPress
In reply to: Post Comment Button not theirHi,
At WordPress dashboard, Go to Appearance –> Editor and select Theme Functions (functions.php). Make yourself a copy of all the text in case you mess up so you can revert back.
Locate the text to replace. Just CTRL+F search of ‘id_form’ => ‘commentform’
Comment out the old text rather than deleting it. So beginning with the line that reads ‘id_form’ => ‘commentform’,
Your code may look like this:
/* 'id_form' => 'commentform', 'id_submit' => 'submit', 'title_reply' => __( 'Leave a Reply', 'origin' ), 'title_reply_to' => __( 'Leave a Reply to %s', 'origin' ), 'cancel_reply_link' => __( 'Click here to cancel reply.', 'origin' ), 'label_submit' => __( 'Post Comment →', 'origin' ), */Replace following code:
'id_form' => 'commentform', 'id_submit' => 'submit', 'class_submit' => 'submit', 'name_submit' => 'submit', 'title_reply' => __( 'Leave a Reply' ), 'title_reply_to' => __( 'Leave a Reply to %s' ), 'cancel_reply_link' => __( 'Cancel reply' ), 'label_submit' => __( 'Post Comment' ), 'submit_button' => '<input name="%1$s" type="submit" id="%2$s" class="%3$s" value="%4$s" />', 'submit_field' => '<p class="form-submit">%1$s %2$s</p>', 'format' => 'xhtml' );Click Update File to save and then check to make sure it worked.
For more information, refer following URL:
Note:-Please take necessary backup before you make any changes.
Thanks,
Forum: Fixing WordPress
In reply to: Change header background.Hi,
Try changing the color in bootstrap.min.css file at line 4882.
.navbar-inverse{ background-color:#222; border-color:#080808 }Hope that helps.
Thanks,Forum: Fixing WordPress
In reply to: loading photosHi,
You would find php.ini file under public_html folder. You can access public_html folder either through cPanel or FTP.
You can also ask your web hosting provider for the php.ini options I mentioned in previous reply.
Thanks,
Forum: Fixing WordPress
In reply to: Expand HeadingsHi,
It is called Accordion. You can accomplish the same through WordPress plugins. Here is a list of plugins you can use:
http://premium.wpmudev.org/blog/10-wordpress-accordion-plugins/
Thanks,
Forum: Fixing WordPress
In reply to: loading photosHi,
Have a look in your php.ini file and make sure that:
file_uploads = on
upload_max_filesize = 128m (appropriate value)
post_max_size = 130M (appropriate value)Thanks,
Forum: Fixing WordPress
In reply to: WordPress and high CPUHi,
To run high traffic WordPress websites, you should consider optimizing Apache by making some tweaks to httpd.conf file. Apache is fast and reliable but it is heavy on resources by default.
Hence, If you are running a small server to host only WordPress websites, you can make small tweaks to your configuration and get some significant performance gains. Here are the guides you can follow to tweak the Apache for WordPress.
http://wordpress.stackexchange.com/questions/13944/optimize-apache-for-wp-use
https://codex.wordpress.org/High_Traffic_Tips_For_WordPress
https://thethemefoundry.com/blog/optimize-apache-wordpress/Hope that helps.
Thanks,Forum: Fixing WordPress
In reply to: Post Comment Button not theirHi,
I could find same thread as yours. I hope that will help you.
https://wordpress.org/support/topic/comment-submit-button-disappeared
Let me know if that does not fix your issue.
Thanks,
Forum: Fixing WordPress
In reply to: HTTP Error: Uploading MediaHi,
Please try following suggestions:
-
Change PHP version to PHP 5.5. You will need to contact your Web Hosting provider for it.
Make sure you have 755 permission to wp-content/uploads.
Try to increase memory from wp-config.php
Try to increase upload size.Hope that helps.
Thanks,Forum: Fixing WordPress
In reply to: Post edit page of a particular post doesn't loadHi,
TABLE REPAIR utility is only applicable for MyISAM storage engine not for InnoDB. InnoDB storage engine can’t go into an inconsistent state unlike MyISAM and others. Hence, tables those are successfully repaired are MyISAM storage engine and tables who were failed to get repaired are of InnoDB storage engine.
In your case, I would suggest you to restore the MySQL database from the good available backup you have or contact your Web Hosting provider for the same.
Hope that helps.
Thanks,Forum: Fixing WordPress
In reply to: I BROKE IT!! Maybe…?Hi,
If your website is live you can add phpinfo file.
In a text editor, copy and paste the following command:
<?php phpinfo(); ?>Make sure there are no spaces before or after the command, just the command, and save the file as something obscure like sffdsajk234.php. It’s important to make the file difficult for hackers to file, because it will contain information that could help them compromise your server.
Upload the file to the root directory of your site. Then type in the address to the file in your browser:
http://example.com/sffdsajk234.phpYou can check the version of PHP, MYSQL and Apache and lots of other information. Make sure you remember to delete the file once you’re done with it, because leaving it there could help hackers compromise your server.
As an alternative, you can also ask your Web Hosting provider for the MySQL server version.
Thanks,
Forum: Fixing WordPress
In reply to: Home page caught in an infinite redirectHi,
Please try adding these two lines to the wp-config.php file. (don’t forget to replace example.com with your own domain).
define('WP_HOME','http://example.com'); define('WP_SITEURL','http://example.com');2) Try deactivating all plugins (yes, all) to see if this resolves the problem.
If this works, re-activate the plugins one by one until you find the problematic plugin(s).
Thanks
Forum: Fixing WordPress
In reply to: Warning: Missing argument 2 for wpdb::prepare()Hi,
An error is referencing to plugin buddypress. I went ahead find some useful resources for you to fix this error. Hope that helps.
https://make.wordpress.org/core/2012/12/12/php-warning-missing-argument-2-for-wpdb-prepare/
https://buddypress.trac.wordpress.org/ticket/4654Thanks,