Frumph
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: want to hide the error on the top of my website !… add this to your wp-config.php around the WP_DEBUG part (try this first)
@ini_set('display_errors', 0 );Also of course making sure WP_DEBUG define is set to false in your wp-config.php file as well.
Forum: Fixing WordPress
In reply to: Fatal error… I can't get to my WordPress admin panel.. I would think you should report that problem to the plugins creator so he can fix it.. so you can use it again.
Forum: Fixing WordPress
In reply to: widget area frozen?Quite a few plugins got fubared because of the improper queuing of jQuery, .. deactivate your plugins and/or switch to the default theme and then see if it works again, if it does you know it’s something specific and then activate things one at a time until it happens again.
still broken?
try the adding of
define( ‘CONCATENATE_SCRIPTS’, false ); to the wp-config.phpForum: Fixing WordPress
In reply to: Fatal error… I can't get to my WordPress admin panelyou don’t need to switch to twentytwelve, note the fatal error is coming from a plugin.
FTP into your site and go to the wp-content/plugins/ folder and delete the genesis-simple-hooks plugin to get back into your site.
Forum: Fixing WordPress
In reply to: Website hacked inspite of WP-security@saqib62 … wordfence security has a scanner in it that will scan your directory structure and the contents of all files finding your hacks and the files that shouldn’t be there
Forum: Fixing WordPress
In reply to: Comment Moderation Notification IssueThere’s a ticket on it (sorta) on the trac
https://core.trac.wordpress.org/ticket/16481
You could put your two cents on there.
Forum: Networking WordPress
In reply to: Hard coded main site link in each site?first thing to do is check the footer of the themes to see if anything outputs, if not something is wrong with the code, or cache needs to be cleared ;/
Forum: Fixing WordPress
In reply to: Error 500 after 3.5 Upgrade: 3.4.1 rollback possible?@26sites not polite to hijack someone elses thread, make a new one for yourself.
ALso, while Arras is not a pay for theme it’s not hosted on wordpress.org
You can find help for the Arras theme here: http://forums.arrastheme.com/
Specifically this thread: http://forums.arrastheme.com/index.php?p=/discussion/6815/consolidated-arras_widget_tag_cloud-php-error-with-wordpress-3-2
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@zzzptm Are you hosting with a hosting company? They can help you setup an error log.Alternatively first thing “I” would do is FTP in and rename the plugins folder to ‘old-plugins’ to see if it’s one of the plugins causing the error, renaming the folder will temporarily turn them off.
.. then if the error still persists, I would go to the themes directory and rename the theme I was using so it defaults to the default twentytwelve oneForum: Fixing WordPress
In reply to: New custom widget areathen use is_front_page() instead of is_home()
Forum: Fixing WordPress
In reply to: Error 500 after 3.5 Upgrade: 3.4.1 rollback possible?on your windows machine did you setup a php error log file in the php.ini? .. check the log file for the actual 500 error
Forum: Fixing WordPress
In reply to: use wp functions outside wordpress and in a different domain name.. the require would be ../mysite2.com/wp-load.php (by your example of directory structure).. make sure you have your pathing correct
Forum: Fixing WordPress
In reply to: Visit my site today and now it's borked? Help!.. more like he’s missing the get_header(); portion of his index.php, single.php etc.. or he’s just missing the header.php altogether (or it’s permissions won’t let it be read)
Forum: Fixing WordPress
In reply to: '0' as in Zero for Category Namesure, report it on the http://core.trac.wordpress.org/ site for dev’s to see
Forum: Fixing WordPress
In reply to: WordPress Site not working in IE and a validation problem... side note, this could happen if there are “unsupported characters” on your site, which it looks like there are.
Forum: Fixing WordPress
In reply to: WordPress Site not working in IE and a validation problem.Open your header.php file and add this line directly under the <head> part of it:
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type') ?>; charset=<?php bloginfo('charset') ?>" />and see if that fixes it