jonimueller
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Lost my dashboard and my brainWell do you remember what domain you used?
http://www.mydomain.com/wp-admin … just append /wp-admin to the end of your URL.OR did you set up a blog at http://www.wordpress.COM ?
This forum is for self-hosted blogs, not WordPress.com blogs, if that helps.
http://www.yoursite.com/wp-admin
Just append /wp-admin to your site url.
If you have WP installed on a SUBDOMAIN:
http://blog.yoursite.com/wp-adminIf you have WP installed in a SUBDIRECTORY:
http://www.yoursite.com/blog/wp-adminForum: Fixing WordPress
In reply to: Site running slow and some links not working at all…Loads really fast for me, on a Windows box in Houston, Texas, but then again I am on a corporate T1 line.
I went to Pingdom and ran a test, which you can see here.
http://tools.pingdom.com/fpt/?url=http://www.baconrealtygroup.com//&id=2175395Didn’t see anything really amiss except one huge honking file, http://www.baconrealtygroup.com/wp-content/uploads/2010/03/St.-Petersburg-Tampa-Bay-Waterfront-Homes-Condos.jpg
Forum: Fixing WordPress
In reply to: Admin page has no formattingDid you try re-uploading the stylesheet found in the /wp-admin folder from the distro? Don’t rely on a one click upgrade from within the dashboard in cases like this. 🙂
Forum: Fixing WordPress
In reply to: Help Theme Hosted, WordPress login does not recognizeAre you at WordPress.COM? The web based community of WP Blogs? or are you self hosting? I’m thinking you should post at the WordPress.com forums because of your statement, “I opened a wordpress account and selected give me a blog I selected bowsandmud…”
Forum: Fixing WordPress
In reply to: tell a certain page to display or not display certain widgets?This thread might help you.
http://wordpress.org/support/topic/386436?replies=10Forum: Fixing WordPress
In reply to: Adding Google adsense ads to my websiteWhy would a plugin normally generate a 500 error? Check the ratings on each plugin page and see the comments to find out whether the plugin works or doesn’t work. It takes just a second to install a plugin from a zip file from within the WP dashboard.
Forum: Fixing WordPress
In reply to: Customizing sidebar colors – is it possible?#sidebar ul.blogroll a:link{ color:blue; } #sidebar ul.blogroll a:visited{ color:green; } #sidebar ul.blogroll a:hover{ color:red; }Try that. You had .useful-links, but you don’t have a class .useful-links in the stylesheet; it’s ul.blogroll in the #sidebar division.
Forum: Fixing WordPress
In reply to: Customizing sidebar colors – is it possible?It’s a CSS class, also known as a styling hook. And it should have worked unless you’ve got something else in the stylesheet overriding it.
Forum: Fixing WordPress
In reply to: Help..Whats my rss feed adress?My advise is to sign up for a feedburner feed. You get all kinds of stats with it and it’s easy to set up.
Just hover your mouse over the feed link and you should see the URL. Generally it’s http://www.myblog.com/feed/ if you have pretty URLS turned on.
Forum: Fixing WordPress
In reply to: Customizing sidebar colors – is it possible?GiantSlayer provided the code that goes into your style.css document. The only problem is that the pseudo-class a:visited has to come before a:hover in the stylesheet. That’s why it didn’t work. Try the code below:
.blogroll a:link{ color:blue; } .blogroll a:visited{ color:green; } .blogroll a:hover{ color:red; }Forum: Fixing WordPress
In reply to: Adding Google adsense ads to my websiteYou need a plugin. Here’s a list; this should get you started.
http://www.techieblogger.com/2009/08/adsense-wordpress-plugin.htmlForum: Fixing WordPress
In reply to: WP 2.9 Native post thumbnails and post images not showingEsmi, on the about-us page, I just manually uploaded images. That’s a static page anyway so that won’t matter. Seems like things are working (when things mysteriously start and stop working, and vice versa, I tend to blame my web host!).
Thanks!
Forum: Fixing WordPress
In reply to: WP 2.9 Native post thumbnails and post images not showingNone of the suggestions 2-4 above made a difference. After I zipped the /uploads folder from mytestbed.com and moved it to pixelita.com, all the media appeared in the media listing. I had to manually reupload our headshots on the /about-us page so I at least have those going. It may very well be that I need to reupload each and every photo. That won’t be pleasant.
Forum: Fixing WordPress
In reply to: WP 2.9 Native post thumbnails and post images not showingI just came back here to tell you that I did disable all plugins and that didn’t help.
I also deleted the entire /uploads folder at pixelita.com, grabbed the /uploads folder from mytestbed.com, zipped it, uploaded it to pixelita.com, decompressed it and now I can SEE all the images in the media gallery, but they still do not appear on the individual posts or pages. (Settings on the /uploads folder and all subfolders is 755, BTW.) I also made sure the /cache folder was empty before and after the move. 😉
Let me try your suggestions #2-4 and see if that helps. Thanks!