Plugin Directory

Changeset 557870


Ignore:
Timestamp:
06/14/2012 10:37:41 AM (14 years ago)
Author:
hawk__
Message:

Prepare for 1.3.0 release (versions, changelog, error logging off)

Location:
postgresql-for-wordpress/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • postgresql-for-wordpress/trunk/pg4wp/db.php

    r546585 r557870  
    44Plugin URI: http://www.hawkix.net
    55Description: PG4WP is a special 'plugin' enabling WordPress to use a PostgreSQL database.
    6 Version: 1.3.0b1
     6Version: 1.3.0
    77Author: Hawk__
    88Author URI: http://www.hawkix.net
     
    1919// If you just want to log queries that generate errors, leave PG4WP_DEBUG to "false"
    2020// and set this to true
    21 define( 'PG4WP_LOG_ERRORS', true);
     21define( 'PG4WP_LOG_ERRORS', false);
    2222
    2323// 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  
    33Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=FPT8RPZGFX7GU
    44Tags: 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
     5Requires at least: 2.9.2
     6Tested up to: 3.4
     7Stable tag: 1.3.0
     8License: GPLv2 or later
    89
    910PostgreSQL for WordPress is a special 'plugin' enabling WordPress to be used with a PostgreSQL database.
     
    1920
    2021If you want to use this plugin, you should be aware of the following :
    21 - WordPress with PG4WP is expected to be much slower than the original WordPress with MySQL because PG4WP does much SQL rewriting for any page view
    22 - Some WordPress plugins should work 'out of the box' but most plugins won't because they would need specific code in PG4WP
     22- 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
    2324
    2425You shouldn't expect any plugin specific code to be integrated into PG4WP except for plugins shipped with WordPress itself (such as Akismet).
     
    34351.  Unzip the files from PG4WP and put the `pg4wp` directory in your `/wp-content` directory.
    3536
    36 1.  Copy the `dp.php` from the `pg4wp` directory to `wp-content`
     371.  Copy the `db.php` from the `pg4wp` directory to `wp-content`
    3738   
    3839    You can modify this file to configure the database driver you wish to use
     
    4445
    4546== 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
     50You 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
     52Note : 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
     56There is no simple answer to this question.
     57Plugins not doing any database calls will certainly work.
     58
     59Database-intensive plugins may work, but most of them would require specific code in PG4WP to work.
     60
     61You should backup your setup (at least database) and try to install the plugin to see if it works or not.
     62Whether 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.
    4763
    4864== Screenshots ==
     
    5066
    5167== 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()
    5273
    5374= 1.3.0b1 =
     
    7697* Disabled all ZdMultilang support hacks
    7798* 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 wrong
     99* Rewrote database connection handling so Wordpress installation can tell you when your username and password are wrong
    79100* Support for using an empty password for database connection
    80101    Note : this requires setting 'PG4WP_INSECURE' to true in `db.php` for PG4WP to accept this
     
    177198Initial stable release, you should upgrade to this version if you have installed any older release
    178199
    179 == Licence ==
     200== License ==
    180201PG4WP is provided "as-is" with no warranty in the hope it can be useful.
    181202
Note: See TracChangeset for help on using the changeset viewer.