TCBarrett
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Restrict Members LoginOr Peter’s Login Redirect – seems to have some good 5 star ratings:
http://wordpress.org/extend/plugins/peters-login-redirect/I’ve never used it myself.
Forum: Installing WordPress
In reply to: Deleted WP Folder to Start overWhy are you uploading the ‘original WP folder’? Do you want to start all over and install WP again, or are you trying to salvage some of the old content?
Forum: Your WordPress
In reply to: Is it interesting….?Forum: Fixing WordPress
In reply to: Image quality differs in post vs when viewed directlyWhat I meant was that using the HTML <img> tag to set a width and height that doesn’t match the real image dimensions just stretches/squashes the image, it doesn’t resize it.
Also, setting the image sizes only affects future image uploads, it does not work retroactively, or change things on the fly.
Forum: Fixing WordPress
In reply to: Image quality differs in post vs when viewed directlyJust a shot in the dark:
Are you using html to request it an different size? Have you got the correct (cropped) image size defined to match what you are after?The image size should be defined either in the media menu or explicitly in your theme or plugins:
http://codex.wordpress.org/Settings_Media_Screen#Media_Settings
http://codex.wordpress.org/Function_Reference/add_image_sizeForum: Plugins
In reply to: [SEO Ultimate] Latest update is broken…The ‘mb’ in this case stands for ‘multibyte’, which your host may not have included in their PHP installation. I guess that mb supports certain character sets (languages) better, but the plugin author may need to put in a check (using function_exists) and let it fall back on strtolower()
Forum: Installing WordPress
In reply to: "Table doesn't exist error" on database repairIt is network (multi-site) related. For example, if your prefix is ‘wp_’ and you switch on network (multi-site) then each site gets an additional sequential number added to the prefix, so site 2 would be ‘wp_2_’.
However, when ‘MU’ (multi-site) was incorporated into WP3, the first, original, site was no longer renamed ‘wp_1_’.
So instead of having wp_1_, wp_2_, wp_3 (pre WP3) you now have wp_, wp_2_, wp_3_ (WP3 onwards).
Perhaps there is an issue with one of your plugins regarding this.
Forum: Everything else WordPress
In reply to: Web Hosts' Terms of ServiceI would like to help WordPress by using a Host that will contribute back to WordPress.
If want to spend money on hosting and pay WordPress at the same time, why not go for premium wordpress.com hosting?
Forum: Fixing WordPress
In reply to: Please help (100) appearing in my title bar!Possibly one of your plugins is hooking into the title. Try disabling your plugins one at a time to see which one it is.
Forum: Everything else WordPress
In reply to: To use or not to use Custom Post TypesIf you are just blogging, then use categories and tags as per usual. CPTa are for things that don’t fit in the usual mold, not a replacement for taxonomies.
For example, if pages were not already in WordPress core, you would make a CPT for them.
Forum: Fixing WordPress
In reply to: Admin Bar Different and has broken imagesMost likely a plugin is trying to add to the bar. Try disabling plugins until it goes away. As a wild guess, I’ll got for it being a stats plugin.
Forum: Fixing WordPress
In reply to: I can't drag and drop my widgetsMost likely a javascript issue. Most likely a plugin or theme is breaking the javascript. You could try using firebug to investigate it further, or follow the mantra “disable your plugins and restore the default theme” to see if it works again. Apply themes and plugins one at a time until you find out which one breaks things.
Forum: Installing WordPress
In reply to: Only see previous html siteYou probably used 301 redirects. Clear you browser cache and reload – try this for a few days until the 301 wears off.
/tmp$ wget -S http://12barblues.ca/
–2011-08-12 21:29:21– http://12barblues.ca/
Resolving 12barblues.ca… 69.90.162.100
Connecting to 12barblues.ca|69.90.162.100|:80… connected.
HTTP request sent, awaiting response…
HTTP/1.1 200 OK
…
X-Pingback: http://12barblues.ca/wordpress/xmlrpc.phpLooks to be loading WordPress OK from here.
Forum: Everything else WordPress
In reply to: WordPress.com to WordPress.orgWell, you sort of can use paid themes on wordpress.com: http://en.support.wordpress.com/themes/premium-themes/ 🙂
But, no, themes are not transferable from .com to .orgForum: Everything else WordPress
In reply to: Change Post Visibility through Meta Boxhttp://codex.wordpress.org/Function_Reference/add_meta_box
in the
myplugin_save_postdata()function you could write your own logic to set the public/private status. You would need to look in core and copy all that functionality. Don’t forget all the password related bits.