cogmios
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Posts and Pages Not Foundare ALL of the tables in the database intact?
Forum: Fixing WordPress
In reply to: Undo Deletion of User on WordPressoops
Forum: Fixing WordPress
In reply to: adding wordpress user to facilitate ftp sessionand can the ftp user access /usr/share/wordpress/wp-content via ssh? (just for testing purposes)
Forum: Fixing WordPress
In reply to: XML-RPC not workingstrange, i had a problem on MU that only the root did not return an ID but all sub-blogs on subdomains did. After some weeks it suddenly worked (don’t know what happened).
Sounds like the same thing I closed: http://core.trac.wordpress.org/ticket/12674
Things I changed:
– I saved my user profile again so it writes new metadata
– I added a “trim(response)” around the response of the xml-rpc apparently that now changed.Forum: Plugins
In reply to: [Plugin: Facestream] Updates from FacebookI have the same.
I try to post an update and then it hangs forever. I thought I’d let it run but it really does not do anything.
So uhm… let’s deinstall it for now.
Forum: Fixing WordPress
In reply to: “XML-RPC Response Parsing Failed”Since about a week My XMLRPC code did not work anymore without me even touching that piece of php code for ages.
I found out that I now need to trim(xmlrpc_decode) the stuff, maybe it is related. I suspect more apps interacting via xmlrpc will fail now if they just use plain xmlrpc_decode.
Forum: Fixing WordPress
In reply to: Can`t move widgets after upgrading to 2.9.2It usually is a plugin that adds extra javascript code in the header.
I had the same with the achievement plugin on wp buddypress. After I removed that I could move the widgets again.
doublecheck that no plugin is added and no fishy admin code has added some extra ajax stuff.
Forum: Fixing WordPress
In reply to: XMLRPC new pageOk… this was simple from now on I have to put a….
trim(…) around the response…..
I dont know what has changed, but apparently….. a space has been added somewhere in the code……..
whatever, took me some time though.
cant believe im the only one with a no longer functioning xmlrpc retriever though.
Forum: Fixing WordPress
In reply to: XMLRPC new pageSo the root cause is that the php function:
xmlrpc_decode
no longer works on the response, at least probably not without some pre processing, dont know what yet.
Forum: Fixing WordPress
In reply to: XMLRPC new pageHmmm if I copy the returned string in a string and do the echo of the xmlrpc_decode($file) it works…
If I however do exactly the same on the returned string… it returns nothing…
Forum: Fixing WordPress
In reply to: XMLRPC new pageaha! I think something has changed it now returns
<?xml version=”1.0″?>
<methodResponse>
<params>
<param>
<value><string>8830</string>
</value>
</param>
</params>
</methodResponse>Somehow…. in the past I had todo $response = xmlrpc_decode($file);
after this but that returns now an empty string, has something changed here?Forum: Fixing WordPress
In reply to: XMLRPC new pageThe xmrpc.log states:
2010-04-01 23:06:55 Output: Posted ! ID: 8828
so where to travel from there?
Forum: Fixing WordPress
In reply to: Sort Pages by Publish Date In DashboardI added a whole bunch of pages per XMLRPC automatically… 6 times , there are zillions of pages and I need now to find the latest 40… to trash.
So… i have the same question.
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] Fatal error: Allowed memory size exhaustedI had the same with e.g. supercache.
One of the things to check is the amount of queries by placing the query checks in the footer. E.g. on average you should have something like 40 queries with some plugins this rises to 2500 queries e.g. pagebars.
Forum: Fixing WordPress
In reply to: ADD new pages to RSS Feedthanks, this was exactly what I was looking for!