Changeset 557870
- Timestamp:
- 06/14/2012 10:37:41 AM (14 years ago)
- Location:
- postgresql-for-wordpress/trunk
- Files:
-
- 2 edited
-
pg4wp/db.php (modified) (2 diffs)
-
readme.txt (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
postgresql-for-wordpress/trunk/pg4wp/db.php
r546585 r557870 4 4 Plugin URI: http://www.hawkix.net 5 5 Description: PG4WP is a special 'plugin' enabling WordPress to use a PostgreSQL database. 6 Version: 1.3.0 b16 Version: 1.3.0 7 7 Author: Hawk__ 8 8 Author URI: http://www.hawkix.net … … 19 19 // If you just want to log queries that generate errors, leave PG4WP_DEBUG to "false" 20 20 // and set this to true 21 define( 'PG4WP_LOG_ERRORS', true);21 define( 'PG4WP_LOG_ERRORS', false); 22 22 23 23 // If you want to allow insecure configuration (from the author point of view) to work with PG4WP, -
postgresql-for-wordpress/trunk/readme.txt
r546585 r557870 3 3 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=FPT8RPZGFX7GU 4 4 Tags: database, postgresql, PostgreSQL, postgres, mysql 5 Requires at least: 2.9.1 6 Tested up to: 3.3.2 7 Stable tag: 1.2.2 5 Requires at least: 2.9.2 6 Tested up to: 3.4 7 Stable tag: 1.3.0 8 License: GPLv2 or later 8 9 9 10 PostgreSQL for WordPress is a special 'plugin' enabling WordPress to be used with a PostgreSQL database. … … 19 20 20 21 If you want to use this plugin, you should be aware of the following : 21 - WordPress with PG4WP is expected to be muchslower than the original WordPress with MySQL because PG4WP does much SQL rewriting for any page view22 - Some WordPress plugins should work 'out of the box' but m ostplugins won't because they would need specific code in PG4WP22 - WordPress with PG4WP is expected to be slower than the original WordPress with MySQL because PG4WP does much SQL rewriting for any page view 23 - Some WordPress plugins should work 'out of the box' but many plugins won't because they would need specific code in PG4WP 23 24 24 25 You shouldn't expect any plugin specific code to be integrated into PG4WP except for plugins shipped with WordPress itself (such as Akismet). … … 34 35 1. Unzip the files from PG4WP and put the `pg4wp` directory in your `/wp-content` directory. 35 36 36 1. Copy the `d p.php` from the `pg4wp` directory to `wp-content`37 1. Copy the `db.php` from the `pg4wp` directory to `wp-content` 37 38 38 39 You can modify this file to configure the database driver you wish to use … … 44 45 45 46 == Frequently Asked Questions == 46 No question yet, please contact me if you have any. 47 48 = I have an error adding a new category = 49 50 You should try to run `SELECT setval('wp_terms_seq', (SELECT MAX(term_id) FROM wp_terms)+1);` to correct the sequence number for the `wp_terms` table. 51 52 Note : you should replace wp_ with the appropriate table prefix if you changed it in your WordPress installation 53 54 = Does plugin `put any plugin name here` work with PG4WP ? = 55 56 There is no simple answer to this question. 57 Plugins not doing any database calls will certainly work. 58 59 Database-intensive plugins may work, but most of them would require specific code in PG4WP to work. 60 61 You should backup your setup (at least database) and try to install the plugin to see if it works or not. 62 Whether it worked or not, you should tell me the result of your test, so that I can create some kind of listing of working/not working plugins. 47 63 48 64 == Screenshots == … … 50 66 51 67 == Changelog == 68 69 = 1.3.0 = 70 * Some cleanup in old code that is not needed anymore 71 * Enhanced wordpress-importer compatibility 72 * Optimizations in wpsql_insert_id() 52 73 53 74 = 1.3.0b1 = … … 76 97 * Disabled all ZdMultilang support hacks 77 98 * Fixed regressions that caused some Wordpress features to not work properly 78 * Rewrote database connection handling so Wordpress installation can tell you when you username and password are wrong99 * Rewrote database connection handling so Wordpress installation can tell you when your username and password are wrong 79 100 * Support for using an empty password for database connection 80 101 Note : this requires setting 'PG4WP_INSECURE' to true in `db.php` for PG4WP to accept this … … 177 198 Initial stable release, you should upgrade to this version if you have installed any older release 178 199 179 == Licen ce ==200 == License == 180 201 PG4WP is provided "as-is" with no warranty in the hope it can be useful. 181 202
Note: See TracChangeset
for help on using the changeset viewer.