cableboy
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: WP 3.5 – any way to default "Add Media" to "Upload Files"?How would I edit this code to paste it directly into functions.php?
<?php add_action( 'admin_footer-post-new.php', 'idealien_mediaDefault_script' ); add_action( 'admin_footer-post.php', 'idealien_mediaDefault_script' ); function idealien_mediaDefault_script() { ?> <script type="text/javascript"> jQuery(document).ready(function($){ wp.media.controller.Library.prototype.defaults.contentUserSetting=false; }); </script> <?php } ?>Yeah I got my options table down to 650 rows. It’s no longer 62 megabytes. 🙂
You think that’s still too big?
Forum: Fixing WordPress
In reply to: My options table is gigantic. How do I fix?It took a long time and many browser crashings but I used CleanOptions to delete all RSS entires. It took the table from 64 megs to 1 meg. I’m pretty sure I was hacked some time in the past.
Forum: Fixing WordPress
In reply to: My options table is gigantic. How do I fix?When I looked into those entries, most of it was spam. Is it possible to get hacked and have them put spam in the options table?
Forum: Fixing WordPress
In reply to: My options table is gigantic. How do I fix?I’m looking through the table and it’s flooded with Magpierss entries. It looks like this:
[Code moderated as per the Forum Rules. Please use the pastebin]
Forum: Plugins
In reply to: Changing default “anonymous” name when user leaves name field blankTry the discussion settings.
Forum: Fixing WordPress
In reply to: Help – Site Is DownI had both of my wordpress domains have their wp_options corrupted at the same time, so I do think it was probably a host issue.
Forum: Fixing WordPress
In reply to: Remember me does not remember meI have the same problem. I’m using firefox. Anyone figure this out?
Forum: Fixing WordPress
In reply to: How to change mysql database passwordYes
Forum: Installing WordPress
In reply to: WordPress 2.6.3 Upgrade ProblemStrange. I came on here to post about the exact same error.
It doesn’t even say incorrect password, just reloads the login screen.
Forum: Fixing WordPress
In reply to: How to show blogroll on front page onlyAhh figured it out
<?php if (is_home()) { ?> BLOGROLL CODE <?php } ?>Forum: Installing WordPress
In reply to: Upload errorLSRN94: your htaccess modification worked. thanks!
Forum: Plugins
In reply to: Alex king fatal error Popularity ContestI did some research. If your installation is new, you have to make the modification as described above, upload the plugin, run the below SQL query through phpmyadmin, and THEN activate the plugin. Works for me..
CREATE TABLE IF NOT EXISTS <code>wp_ak_popularity</code> ( <code>post_id</code> int(11) NOT NULL, <code>total</code> int(11) NOT NULL, <code>feed_views</code> int(11) NOT NULL, <code>home_views</code> int(11) NOT NULL, <code>archive_views</code> int(11) NOT NULL, <code>category_views</code> int(11) NOT NULL, <code>single_views</code> int(11) NOT NULL, <code>comments</code> int(11) NOT NULL, <code>pingbacks</code> int(11) NOT NULL, <code>trackbacks</code> int(11) NOT NULL, <code>last_modified</code> datetime, KEY <code>post_id</code> (<code>post_id</code>) ) ENGINE=MyISAM; CREATE TABLE IF NOT EXISTS <code>wp_ak_popularity_options</code> ( <code>option_name</code> varchar(50) NOT NULL, <code>option_value</code> varchar(50) NOT NULL ) ENGINE=MyISAM;Forum: Plugins
In reply to: Alex king fatal error Popularity ContestThe fix is not working for me on a fresh install of 2.5.1 either.
Forum: Requests and Feedback
In reply to: 2.5 admin backend annoyingI also did not like the new wordpress, for many of the reasons above. The upgraded dashboard was just a reshuffling of the old one and the Write page was a step backward. Here was my solution: http://wordpress.org/latest-2.3.3.zip