killerrabbit
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Help! Problem moving site to a new host – can't login.Thanks for all of your advise. What ended up happening is that the hosting had the WordPress installation pointed to a read only DNS so WP could not access anything. They changed the DNS settings and it now works.
Thanks for your help!
Forum: Installing WordPress
In reply to: Help! Problem moving site to a new host – can't login.I have done this and it still says I need to update my .htaccess file even though it has 644 and the code in it.
Forum: Installing WordPress
In reply to: Help! Problem moving site to a new host – can't login.Thanks, got that resolved. The host required the actual IP address for the install so when I was putting in the domain name it was failing.
I now can login but when I do try to change to /%postname%/ it isn’t able to write no the .htaccess file probably due to permissions. My question is where is the .htaccess file? There is one at the root level of the site file but even after I placed the code in from what WP says it still does not work.
Suggestions? Thanks!
Forum: Plugins
In reply to: Multiple Content Blocks and searchability problemFound solution:
You will have to change a line of code in the Search Anything php file in order for it to be able to search more than one key word at a time. It’s a bug.The problem is in the line 197 in search-everything.php file:
Replace this line-
$where = str_replace( “)))”, “)$searchQuery))”, $where );With this one-
$where = str_replace( “)) “, “)$searchQuery) “, $where );After that you are good to go!
Forum: Plugins
In reply to: [Plugin: Multiple content blocks] Unsearcheable contentSolution: Search Everything does not search more than one key word for meta data created from this plugin. However, I was able to find this code which fixes the bug.
The problem is in the line 197 in search-everything.php file:
Replace this line-
$where = str_replace( “)))”, “)$searchQuery))”, $where );With this line-
By this other: $where = str_replace( “)) “, “)$searchQuery) “, $where );Forum: Plugins
In reply to: [Plugin: Multiple content blocks] Unsearcheable contentActually, if you use the Search Everything plugin it will be included but you can only search one word at time. If you search for more than one word it will come back with no results.
Forum: Plugins
In reply to: [Plugin: Multiple content blocks] Unsearcheable contentLooking for an answer to this too. Seems like a lot of people would be finding this an issue.
Forum: Fixing WordPress
In reply to: Previous Revisions do not appear after installing 3.1Got it. Thanks.
Forum: Themes and Templates
In reply to: Search is finding CSS selectorshttp://www.cahoots-clients.com/Endurance/
You can search for “mary” and it will bring up posts/pages that have mary listed but it will also bring up a page that has “mary” within the class name. This is a donation page that should not be indexed:
<input name=”donation_custom_amount” size=”8″ type=”text” value=”0.00″ /> <input name=”options_1″ type=”hidden” /> <input id=”addToCart_1″ class=”PHPurchaseButtonPrimary purAddToCart” name=”addToCart_1″ type=”submit” value=”Donate” />
Forum: Themes and Templates
In reply to: CSS won't initialize- jquery problems?I found the problem. I just needed to resize the photo manually. Don’t know why I can do it in strait HTML and not in WordPress.
Forum: Plugins
In reply to: CSS won't initialize- jquery problems?I found the problem. I just needed to resize the photo manually. Don’t know why I can do it in strait HTML and not in WordPress.