gooseflight
Forum Replies Created
-
Doh — you gotta be using an email address that is verified for the domain in the console!!
Forum: Themes and Templates
In reply to: Live Writer and theme compatabilityVery helpful, thank you.
Forum: Fixing WordPress
In reply to: XML-RPC not workingOK, got it. The copy of xmlrpc.php in the root install started with BOM characters and these were being returned with the response so it was indecipherable. A fresh copy of xmlrpc.php solved the problem.
The version of the blog that I created in a subfolder was a fresh copy of WP and that’s why the problem wasn’t replicated there.
Forum: Fixing WordPress
In reply to: XML-RPC not workingYes, that’s how it should work of course but it’s not that straightforward.
If the WordPress installation and the xmlrpc.php pointed to is in the root of the web (http://myweb/xmlrpc.php) xml-rpc from Zoundry, Live Writer, etc. doesn’t work.
If the WordPress installation and the xmlrpc.php pointed to is in a subfolder of the web (http://myweb/wordpress/xmlrpc.php) xml-rpc from Zoundry, Live Writer, etc. works.
Forum: Fixing WordPress
In reply to: XML-RPC not workingHmmm, it’s something to do with the blog being off the root. I installed another copy of WordPress in a subfolder (same config). If I connect to xmlrpc.php in this subfolder everything works! Zoundry, Live Writer, etc.
I’ll try changing the references of the include statements in xmlrpc.php in the subfolder to see if it’s possible to run with just xmlrpc.php in a subfolder.
I think this is a bug since many self-hosters must have root blogs.
Forum: Fixing WordPress
In reply to: Pasting from Word?We have just launched version 1.0 of blog.dot. This template and associated DLL produces a clean HTML export from Microsoft Word. If you install the MySQL ODBC driver you can post directly to your WordPress blog from MS Word.
Forum: Installing WordPress
In reply to: Unable To Connect To MysqlSeems to me that your wordpress user doesn’t have rights to access the wordpress database from localhost. If you use the following script, what happens?
<?php
$conn = mysql_connect(‘localhost’,’wordpress’,[password]);
if (!$conn) {
die (‘no connection’);
}$selectdb = mysql_select_db(‘wordpress’, $conn);
if (!$selectdb) {
die (‘can\’t use wordpress: ‘.mysql_error());
} else {
echo ‘no error’;
}
?>If you can connect to the server but can’t use the db then you need to allow your wordpress user to use the db from localhost.
Forum: Plugins
In reply to: Clean HTML from MS Word.We have just launched version 1.0 of blog.dot. This template and associated DLL produces a clean HTML export from Microsoft Word. If you install the MySQL ODBC driver you can post directly to your WordPress blog from MS Word.
Forum: Installing WordPress
In reply to: Unable To Connect To MysqlTry creating a php file just to test the connection:
<?php
$conn = mysql_connect('sip1.sippal.com','user','password');
// should echo 'Resource id #[some number]'
echo $conn;
// now see what databases are available
$dbs = mysql_list_dbs($conn);
while ($row = mysql_fetch_object($dbs)) {
echo $row->Database;
}
// if wordpress is in the list try a query
$sql = "SELECT option_name FROM wordpress.wp_options";
$result = mysql_query($sql)
or die($sql);
echo mysql_num_rows($result);
?>