asechrest
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Show entire posts when searching?Your theme may have a file called
search.php
that dictates how search pages are displayed. If it does, you should be able to edit the code in that file to display the full text of the posts using the_content().Forum: Fixing WordPress
In reply to: Possible PHP injection attack on WordPress siteAs far as I can tell those are classic Remote File Inclusion attempts. I would be concerned, though not overly, that the attempts are returning response codes of 200.
aznbbj linked to my article, which is sort of a summary of the research I did on RFI attacks back when the same thing happened to me. It’s got a number of ways to mitigate the attacks, from the very simple and not-so-effective to editing of your php.ini file to remove functionality that the RFI attacks utilize.
Hope it helps.
Forum: Fixing WordPress
In reply to: [2.8.1] No information about available updates to plugins.t31os,
Going to do some of the things you suggested since I’ve got a similar issue. I’m not using a copy of the database. Fresh database on my localhost, WP2.8, with a basic copy/paste of my entire live-site’s plugins folder to my localhost.
I can literally see an automatic update notification pop up on my localhost, then check the live site and have nothing. Three days later it magically appears, or it sometimes appears after I update a different plugin and refresh the plugins page.
Strange stuff.
(Maestro2012, let us know how you fare trying to fix this.)
Forum: Fixing WordPress
In reply to: [2.8.1] No information about available updates to plugins.I have a similar issue, except my localhost WP2.8 shows available updates immediately, and my live-site WP2.7.1 seems to lag a few days.
It appears to eventually offer me the notification of the automatic updates, but it’s late, and it doesn’t always show me all available updates.
I haven’t come up with a solution or even determined what the problem is. And I’m not currently in a position to remove my 60-ish plugins one by one to test it, so I’ve been just dealing with it.
Forum: Fixing WordPress
In reply to: which abckup application to useYou can schedule regular database backups through various plugins. The one I use is WP-DBManager.
Forum: Fixing WordPress
In reply to: passing code through a pageDo you mean you’re trying to add this code through the WordPress post editor?
You can’t use PHP in the post editor unless you use a plugin like Exec-PHP.
Forum: Fixing WordPress
In reply to: banners cause the post to drop down when viewing in lower resoultionStart down what will be a long road to website validation.
As you develop your site, try to clear up validation errors as you go. I prevents you from having to clear 300 errors at a time.
Forum: Fixing WordPress
In reply to: Menus behind content issueThis is resolved. The solution was editing the Youtube embed code to add transparency.
Forum: Fixing WordPress
In reply to: Menus behind content issueTazman,
I think your issue is with curly quotes. Curly quotes were used in the code you inserted into the Youtube embed and this is causing the problem to persist. See my comment on how to fix.
Forum: Fixing WordPress
In reply to: Menus behind content issueResponded to you on my site. I downloaded your theme, used your Youtube video, and was able to get this to work (see my response on my website, it links to a screenshot).
I’m struggling to determine why it’s not working for you. I’ve viewed your source code and the embed code appears to be fine. Strange!
Forum: Everything else WordPress
In reply to: Tracking VisitorsWordPress.com might have had it built in, but now that you’ve converted to self-hosted WordPress, you’ll need to use plugins or third-party tracking services.
For plugins, here are a few:
Forum: Plugins
In reply to: I need an EASY to use POLL, someone helpmeHow can you possibly be demanding a poll plugin “of [your] own design” when you haven’t the desire/skill to code it yourself!?
Lesterchan’s WP-Polls plugin and the Polldaddy plugin are two of the best in existence. You won’t find any better unless you’ve hired someone to custom code it.
There are perks to using one over the other. I use Polldaddy because it allows each of my users to create and edit their own polls separately.
If none of that is acceptable to you, hire it done, or go ahead and give up.
P.S. – I’ve looked through your past questions and you’ve received a whole ton of help here.
Forum: Fixing WordPress
In reply to: Menus behind content issueTazman,
After some research, I found the solution to preventing Youtube videos from hiding page objects and posted it for my readers. See if it helps you out.
Forum: Fixing WordPress
In reply to: Menus behind content issueConfirming that cais’ solution works.
Find the section of code he indicates and add the z-index value.
z-index: 100;
works fine.Forum: Fixing WordPress
In reply to: Hide specific category after using wp_list_categoriesSee this section in the codex for wp_list_categories. Determine the category ID of “portfolio” by going to the categories page in the back-end and hovering over this category. Look in the status bar of your browser and the cat ID will be listed at the end of the URL.
And see if this thread helps for exluding a category from wp_get_archives.