hops
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: What video dimensions are you using?Am I missing something obvious here? Is this really a problem vs. a matter of preference?
Vid content size limits vary from theme to theme. It’s common to just play with it until it fits, although 400-425 seems to be common for many themes. Some will allow more, but regardless it’s blogger’s preference to make it small or large.
Forum: Fixing WordPress
In reply to: Inserting post manuallyYou should probably post your current system from which you’re converting to wordpress.
Forum: Fixing WordPress
In reply to: Dashboard Contents disappearedI know this is closed, but the index.php resolve noted above did nothing to help me. I simply deleted the entire wp-admin directory and re-uploaded a fresh version of it.
I’ve been using auto-upgrade function for new versions for a while before that, and I suspect that some clutter was not being properly removed; cleansing the folder did the job.
Forum: Fixing WordPress
In reply to: Time Stamp not workingI had a similar problem with 2.6 — Was a problem with plugin “WP-Amazon 2.0.” New version of plugin is available, but not through the auto update… Considering switching plugin to something that does.
To resolve this problem if you have it, just disable all plugins you think might be a problem and add ’em back one by one.
Thanks for the heads up, Prosper…
Forum: Fixing WordPress
In reply to: Blog has disappeared!It looks like your site is back up and running. Perhaps it is your host? Probably not your theme — I’ve used that one no problems for a long while, unless you’ve messed with it or loaded it up with a buggy plugin.
If you’ve loaded up on plugins, disable them and slowly re-ad them. sometimes that’ll tell you what’s up.
Forum: Fixing WordPress
In reply to: WordPress database error: [MySQL server has gone away]I’m getting a ton of this lately too. Sometimes the site loads fine, other times it grinds to a blank page. Other times it give me the database has gone away error. The Dashboard definitely does not agree, either. I use GoDaddy. Is the only solution to switch hosts?
Forum: Fixing WordPress
In reply to: Logistics Question (Pros Cons of New URL)TimoK — interesting… I’ll certainly have some more questions. I’m adding a directory on top of my site, and i’d like to start that with where I’m going. I should probably run that at my new URL and that’ll only obligate me to a new hosting account — not a huge investment.
Otherwise, me just being a Holiday Inn Express sorta techie, all the .htacces and mod_rewrite stuff makes me wobbly with fear.
Anyway, thanks! Great stuff. Anyone else have any other thoughts?
Forum: Fixing WordPress
In reply to: Logistics Question (Pros Cons of New URL)thelazy — I’m thinking that, but i hate to lose all the old subscribers to the RSS feed, etc, re my new content.
All thoughts welcome. Maybe we can make this the definitive thread for pros and cons. thanks!
Forum: Themes and Templates
In reply to: Exclude a category from ‘the loop’I was wondering the same thing — is there a plugin that does this? I want to keep one category as a lone post always at the top that i might change once every few weeks, while the loop runs below….
Forum: Fixing WordPress
In reply to: No quicktags or advanced options?A clearing of the browser cache did the job for me. Thanks!!
Forum: Fixing WordPress
In reply to: How to Edit WP-Andreas 01 1.5As a workaround for now (and maybe permanently, depending on your preference), you may just need to use a simple redirect call-up in your page / menu structure for now. Just add a page named whatever you need in the menu, and then, as you go to edit that page, edit the HTML directly using HTML button at the top of the page editor. Plop in a simple redirect to your intended page. Something like this will work:
<p><meta content="0; url=http://www.myintendedpage.com/" http-equiv="REFRESH" /></p>You can check it out on my site at http://www.vigilantinvestor.com. just click the TV menu tab. (Yes, that is an Andreas theme i use…)
Not pretty, but it does the job.
Forum: Everything else WordPress
In reply to: RE: GoDaddy’s automated install of WordPressI assume also that you are simply using go daddy as the host and you are updloading the WP files yourself to their host file, right?
Forum: Everything else WordPress
In reply to: RE: GoDaddy’s automated install of WordPressyou can choose any directory you want…Root or subdirectory. you just have to use FTP to create your own structure… in the end, though, you have to ask, what’s your index file in the root? That’s the opening page.
It can be worpress even if you don’t copy the WP file structure directly at the root; just fllow the WP install directions if you want all the WP files in a subdirectory off of the root.
Forum: Fixing WordPress
In reply to: Google AdsenseLivefor –Before you just drop that adsense code into your sidebar.php, make sure to not disrupt the
<ul>
<li>/li></li>
</ul>
structure you have in your sidebar list. It really is not hard to avoid, but you might want to read up on where to slap code. Do a search in the wiki on edting sidebars.Generally though, you want to place your adsense code between repeating segments (nested lists) that look something like this
<ul><h2>Categories</h2>
<li> {all sorts of code and comments}
</li>
</ul>POST YOUR ADSENSE Code HERE
<ul><h2>Recent Posts</h2>
<li> {all sorts of code and comments}
</li>
</ul>
Make sure to do it well before the<?php endif; ?>, and preferably post it up against one of the nested lists as noted above.Play around with the code location by cutting and pasting.
ALSO, If it’s not already part of the adsense code, at the start and end of what they give you, for new folks its usually helpful to add comments identifing the start and end of their code as follows so you don’t lose it. (it’s hard as a newbie to recall what was there and wasn’t before you edit)
<!-- start adsense code -->
{adsense code here}
<!-- end adsense code -->Forum: Fixing WordPress
In reply to: Security Question: Theme Changing on its own…Oh, and i should say thanks to Handy and Moshu. Thank you!