wprelief
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wordpress plugin showing text-enhance links?Hey guys, I just fixed a client’s site with this problem.
After wasting HOURS searching the code I finally searched the database and found the JS being inserted into the Post at the bottom. Going to the “Edit Post” page for that, sure enough, showed the code at the bottom of the post!I had the client follow all the awesome instructions here (full-disclosure: not my instructions): http://botcrawl.com/how-to-remove-text-enhance/
Then I edited ALL the posts that were showing weird links and deleted the JS showing up at the bottom (this must be done from the HTML tab).
Note: This was the JS that was being embedded on Save:
http://loading-resource.com/data.geo.php?callback=window.__geo.getData http://cdncache3-a.akamaihd.net/loaders/1032/l.js?aoi=1311798366&pid=1032&zoneid=62862That has fixed the problem for a week now. This is quite an example of a browser bot getting into a website! The client said he was seeing the JS added upon ‘Save’ of new posts.
Good luck!
-Spotted KoiForum: Fixing WordPress
In reply to: Can't change category of a link from the edit formWell, I found it..
there was a modification made to a plugin which was hiding the categorylistitems div. Oops…
Forum: Themes and Templates
In reply to: Twenty Ten Theme – Header Image Bug?If you don’t want header images at all in your version of this theme, then do the following:
1. Make a backup of header.php
2. Remove everything from/including line 57 to/including line 66.This will remove any image from your header and allow the header to be just the title and the nav.
If you don’t like it, restore back to the backed up version of your header.
If you screw up, just redownload WP3.0 and get header.php from wp-content/themes/twentyten/header.php
Good hunting.
Forum: Fixing WordPress
In reply to: Another “long post won’t save” issueIt looks to me like there is a syntax error in the config file now that there is a change. This may violate the TOS of this forum, but you can contact me at matt at spottedkoi.com and I will help you out with this syntax problem.
Forum: Fixing WordPress
In reply to: Can’t save draft or preview post@ryssmiles I would definitely check your plugins, try disabling them one at a time and see if the problem goes away. If you find out which plugin it is that is causing the problem, please update the thread here.
Forum: Installing WordPress
In reply to: Imprting old tables and dataYou are probably having an issue with the users table being imported from the other site, the wp-options table being imported from the other site, and your wp-config file having different hash salts than your old site.
I would suggest using the WordPress export/import functionality or following the instructions here http://wp-relief.com/2010/07/05/moving-your-wordpress-site-to-a-new-server/
If you need some more help or are running into any troubles with those steps, feel free to reply here.
Forum: Installing WordPress
In reply to: Insufficient permissions to delete Hello Dolly?More than likely what is going on is not just the permissions, but the owner/group of the file.
I would check with your host, but you probably need the files in your wp-content/plugins/ directory to be apache/apache instead of root/root or whatever they are now so that PHP actually can delete the files through the WordPress console.
Forum: Fixing WordPress
In reply to: Admin Panels -> white screens of death!Do you have a theme enabled?
Forum: Fixing WordPress
In reply to: Another “long post won’t save” issueI am wondering if you could try something else for me, since you have the change in your wp-config file completed.
Can you please take a list of all your plugins that are activated, then disable ALL plugins.
See if your 404 or 500 errors comes back. If they are gone, one or more of your plugins is causing the issue you are reporting. If not, then you may need some more hands on help with this issue.
Forum: Fixing WordPress
In reply to: Admin Pages Not WorkingTurn it on and then refresh the page, if it shows a button you should turn it on for your domain.
The trick with Firebug is for it to be open and then refresh.
If nothing shows, then there is a PHP error somewhere, probably a plugin.
Ahh, I see what is going on. Instead of what I said before:
<textarea><?php gcll_tweak_textarea(); ?>
do this:
<textarea <?php gcll_tweak_textarea();?>>Where the closing “>” for textarea is after the php function.
Forum: Fixing WordPress
In reply to: Admin Panels -> white screens of death!I would really like to help you further, but I will need to see the JS errors.
You can try installing Firebug in Firefox and grabbing the errors and posting them here or you can feel free to find me through @wprelief (twitter). I would be happy to try to help you find the problem.
I found the issue to be caused by wp-e-commerce (WP Shopping Cart) on my blog.
I aggregated a list of the plugins that have been found to cause this issue and put instructions about how I went about fixing the problem on my blog here: http://wp-relief.com/2010/07/09/call-to-a-member-function-add_rewrite_tag-on-a-non-object/
Forum: Fixing WordPress
In reply to: Pages with identical slugsThe only way I see it being possible to capture this is right after it happens, with the pre_post_update action.
You would have to access the variables (this is VERY hackish and not proven):
global $post_name;
global $postarr;//get the pre-defined slug from the $postarr
//set the $post_name to the slug you wantThis may or may not work.
Forum: Fixing WordPress
In reply to: Another “long post won’t save” issueSince wp-settings has the check to see if WP_MEMORY_LIMIT is defined, you could in fact just drop the suggested code above into your wp-config.php file.