From: Eric H. <er...@fe...> - 2005-05-16 21:37:05
|
Hey guys, First off I want to say how much I appreciate the work you're doing to convert Wordpress to support Postgresql. Very very much appreciated. Now for my bugs : 1) During the install While running http://www.litique.com/wordpress/wp-admin/install.php?step=2 I encountered... SQL/DB Error -- [ERROR: null value in column "link_rss" violates not-null constraint] From this point on I get a lot of errors due to the transaction. Once I comment out the creation of the default links: /* $wpdb->query("INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss) VALUES ('http://wordpress-pg.sf.net/', 'WordPress-Pg', 1, NULL);"); $wpdb->query("INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss) VALUES ('http://codex.wordpress.org/', 'WordPress Codex', 1, NULL);"); $wpdb->query("INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss) VALUES ('http://wordpress.org/support/', 'WordPress Support Forums', 1, N\ ULL);"); $wpdb->query("INSERT INTO $wpdb->links (link_url, link_name, link_category, link_rss) VALUES ('http://wordpress.org/', 'WordPress-MySQL', 1, NULL);"); */ Things are peachy 2) After the install I get the following error when attempting to run http://www.litique.com/wordpress/wp-admin/ I encounter: Fatal error: Call to undefined function: __() in /var/sites/litique.com/htdocs/wordpress/wp-admin/index.php on line 3 No solution to this bug yet. If I comment out the require line nothing appears on the screen. ------- Any help would be much appreciated. I love this software package and would hate to have to install MySQL to run it. Thanks in Advance, Eric ------- Now for some of my configuration details Running postgres 7.4.7, php 4.3.9 My php include line is: php_value include_path "/var/sites/litique.com/lib:/var/sites/litique.com/templates:/var/ sites/lib:." My wordpress config starts with: // ** MySQL settings ** // define('DB_NAME', 'revmaps'); // The name of the database define('DB_USER', 'litique'); // Your MySQL username define('DB_PASSWORD', 'password'); // ...and password define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value |