Egill R. Erlendsson
Forum Replies Created
-
Forum: Plugins
In reply to: [AdControl] Control Ads PlacementAt the moment you can disable header units (or enable them by keeping the boxes checked under settings for the plugin).
You can add additional units using the widgets. We’ve focused on trying to making it easy to turn on ads, if the plugin is breaking your site it would be most helpful to get the URL to your site.
We’re always looking for ways to improve, and hopefully we’ll be able to make it work better for sites like yours in the near future.
?? please remember to mark the topic resolved
Try changing .N64Background { position:fixed; }
Forum: Networking WordPress
In reply to: Irregular 404s on root domain onlyNot something I would call a “known issue”. Could be a 500 error, and the 500 error page is missing – hence the 404 error.
I recommend you look into your error logs.
Forum: Networking WordPress
In reply to: images mysteriously disappeared in multisiteYou need to edit the CSS and change the URL from https://signaturesongsbyfiz.fiz4ever.com/files/2013/11/check.png
to
https://signaturesongsbyfiz.info/files/2013/11/check.pngProblem seems to be with the site signaturesongsbyfix.fiz4ever.com (Looks like a DreamHost landing page).
Hope that helps.
Forum: Plugins
In reply to: [Yoast SEO] XML Sitemap – Google Webmaster errorsPut this in your functions.php, that should do the trick.
function sitemap_exclude_taxonomy( $value, $taxonomy ) { if ( 'post_status' == $taxonomy ) return true; } add_filter( 'wpseo_sitemap_exclude_taxonomy', 'sitemap_exclude_taxonomy', 10, 2 );
Forum: Installing WordPress
In reply to: Updated and now can't accessMrs W, if the admin interface is all in listings that means it’s trying to load css/images from a location that doesn’t exist.
I suggest you visit “General Settings” and review that setting (You can send us the WordPress Address (URL) which is probably the culprit in your case).
Forum: Installing WordPress
In reply to: Updated and now can't accessThe wp-login.php file you’ve currently got on your site is not the one from WordPress 3.3
It’s hard to tell what exactly went wrong, I would suggest you get a fresh copy of WordPress and start by copying wp-login.php to your site.
Not sure if your upgrade failed or if it updated the files in some other directory.
Forum: Installing WordPress
In reply to: Updated to 3.3 now i cant go to dashboardThat’s the information you’d need to get from your hosting provider. Sorry for not being able to help you there.
Forum: Installing WordPress
In reply to: Updated to 3.3 now i cant go to dashboardDownload the latest WordPress from https://www.ads-software.com/latest.zip
Open the zip file you downloaded and locate the wp-admin folder (wordpress/wp-admin).
Connect to your website via FTP (check with your ISP for details if you don’t have them).
Login via FTP, delete/rename the wp-admin folder from your server and upload the folder from your local hard drive.
Have you used FTP before for your website?
Forum: Installing WordPress
In reply to: Updated and now can't accessMrs W, that function has been deprecated as of WordPress 3.3.
If you can access the wp-content/plugins folder, send us a list of plugins you’ve got installed.
One of those plugins is probably not WordPress 3.3 compatible and needs to be disabled.
Forum: Hacks
In reply to: how to disable autosave in WP3.3 ?Throw this in your functions.php
add_action( 'admin_init', 'disable_autosave' ); function disable_autosave() { wp_deregister_script( 'autosave' ); }
Forum: Fixing WordPress
In reply to: Upgrading to 3.3 versionHave you gone through this checklist?
I’d disable all plugins before doing the upgrade. If that doesn’t work try doing a manual update.
Forum: Installing WordPress
In reply to: Updated and now can't accessWhat happens when you try to login to the admin page?
Forum: Installing WordPress
In reply to: Manual upgrade error from 2.9 to 3.3It’s simply saying that there is one (class-wp.php) ore more files missing from your wp-includes.
Reupload the wp-includes folder.