Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • That sounded great indeed. I would love to manage directly from WP the complete contact information (address, phone, social site accounts, interests, subscriptions,…). More tools are needed also for User management. Hope more coming in 3.0. In the mean time, where is the documentation? What can we do today?

    Still no solution? This is very disturbing to our new users.

    I am getting a lot of errors in my error_log file:
    [04-Oct-2009 00:13:13] WordPress database error Column ‘post_status’ in where clause is ambiguous for query SELECT DISTINCT wp_comments.* FROM wp_comments INNER JOIN wp_posts ON wp_posts.ID = wp_comments.comment_post_ID LEFT JOIN wp_posts as parent ON parent.ID = wp_posts.post_parent AND parent.post_type IN (‘post’, ‘page’) AND wp_posts.post_type = ‘attachment’ LEFT JOIN wp_term_relationships AS tr ON wp_posts.ID = tr.object_id LEFT JOIN wp_user2role2object_rs AS uro ON uro.obj_or_term_id = wp_posts.ID AND uro.src_or_tx_name = ‘post’ AND uro.scope = ‘object’ AND uro.assign_for IN (‘entity’, ‘both’) AND uro.group_id IN (‘6’) WHERE ( ( wp_posts.post_type = ‘post’ AND ( ( post_status IN (‘private’, ‘publish’) AND ( ( ( ( 1=1 ) OR ( wp_posts.post_author = ‘3’ ) ) ) ) ) ) ) OR ( wp_posts.post_type = ‘page’ AND ( ( post_status IN (‘private’, ‘publish’) AND ( ( ( ( ( ( 1=1 AND wp_posts.ID NOT IN (‘2663’, ‘2083’, ‘3095’) ) ) OR ( ( uro.role_type = ‘rs’ AND uro.role_name IN (‘private_page_reader’) ) ) OR ( ( 1=1 AND wp_posts.ID NOT IN (‘2083’) ) ) ) OR ( wp_posts.post_author = ‘3’ ) ) ) ) ) ) ) OR ( wp_posts.post_type = ‘attachment’ AND parent.post_type = ‘post’ AND ( ( post_status IN (‘private’, ‘publish’) AND ( ( ( ( 1=1 ) OR ( parent.post_author = ‘3’ ) ) ) ) ) ) ) OR ( wp_posts.post_type = ‘attachment’ AND parent.post_type = ‘page’ AND ( ( post_status IN (‘private’, ‘publish’) AND ( ( ( ( ( ( 1=1 AND parent.ID NOT IN (‘2663’, ‘2083’, ‘3095’) ) ) OR ( ( uro.role_type = ‘rs’ AND uro.role_name IN (‘private_page_reader’) ) ) OR ( ( 1=1 AND parent.ID NOT IN (‘2083’) ) ) ) OR ( parent.post_author = ‘3’ ) ) ) ) ) ) ) ) AND comment_approved = ‘1’ ORDER BY comment_date_gmt DESC LIMIT 15 made by require, require_once, include, get_sidebar, locate_template, load_template, require_once, dynamic_sidebar, call_user_func_array, WP_Widget->display_callback, WP_Widget_Recent_Comments->widget

    I was looking for the same thing. The best would be to have a variable on the top of every list page asking for how many we want listed!

    I modified the file wp-admin/includes/user.php, line 540
    changed $user_per_page = 50
    to $user_per_page = 1000

    And that works for me.

    Alan Guggenheim

    I have a very similar problem with the WP-PHPList plugin. Any idea where to fix it?

    <?php
    /*
    Author: David Young
    Author URI: https://www.funkypenguin.co.za
    Description: Administrative options for WP-PHPList
    
    This file is the configuration options for the WP-PHPList plugin
    (https://www.funkypenguin.co.za/wp-phplist)
    
    It should be placed within your wp-content/plugins/wp-phplist directory
    */
    
    load_plugin_textdomain('wpcf'); // NLS
    $location = get_option('siteurl') . '/wp-admin/admin.php?page=wp-phplist/wp-phplist-options.php'; // Form Action URI
    
    /*Lets add some default options if they don't exist*/
    
    if(get_option('wp_phplist_slug') == '') {
    	add_option('wp_phplist_slug', 'wp-phplist.php');
    }
    
    if(get_option('wp_phplist_spage') == '') {
    	add_option('wp_phplist_spage', '1');
    }
    if(get_option('wp_phplist_title') == '') {
    	add_option('wp_phplist_title', 'Our Newsletters');
    }
    if(get_option('wp_phplist_phplist_path') == '') {
    	add_option('wp_phplist_phplist_path', 'lists');
    }
    /*check form submission and update options*/
    if ('process' == $_POST['stage'])
    {
    update_option('wp_phplist_slug', $_POST['wp_phplist_slug']);
    update_option('wp_phplist_spage', $_POST['wp_phplist_spage']);
    update_option('wp_phplist_title', $_POST['wp_phplist_title']);
    update_option('wp_phplist_phplist_path', $_POST['wp_phplist_phplist_path']);
    }
    
    /*Get options for form fields*/
    $wp_phplist_slug = get_option('wp_phplist_slug');
    $wp_phplist_spage = get_option('wp_phplist_spage');
    $wp_phplist_title = get_option('wp_phplist_title');
    $wp_phplist_phplist_path = get_option('wp_phplist_phplist_path');
    ?>
    
    <div class="wrap">
      <h2><?php _e('WP-PHPList Options', 'wpcf') ?></h2>
      <form name="form1" method="post" action="<?php echo $location ?>&updated=true">
    	<input type="hidden" name="stage" value="process" />
        <table width="100%" cellspacing="2" cellpadding="5" class="form-table">
          <tr valign="top">
            <th scope="row"><?php _e('PHPList public pages slug:') ?></th>
            <td><input id="inputid" name="wp_phplist_slug" type="text" id="wp_phplist_slug" value="<?php echo $wp_phplist_slug; ?>" size="50" />
            <br />
    <?php _e('The "slug" to the main PHPList page, relative to wordpress. Defaults to the name of the script. You may want to create a custom rewrite rule.', 'wpcf') ?></td>
          </tr>
          <tr valign="top">
            <th scope="row"><?php _e('PHPList default subscribe page:') ?></th>
            <td><input id="inputid" name="wp_phplist_spage" type="text" id="wp_phplist_spage" value="<?php echo $wp_phplist_spage; ?>" size="50" />
            <br />
    <?php _e('Enter the number of the default subscribe page to use, or leave blank to let PHPList generate an index', 'wpcf') ?></td>
          </tr>
          <tr valign="top">
            <th scope="row"><?php _e('PHPList embedded page title:') ?></th>
            <td><input id="inputid" name="wp_phplist_title" type="text" id="wp_phplist_title" value="<?php echo $wp_phplist_title; ?>" size="50" />
            <br />
    <?php _e('Enter the title to be displayed on the page with the embedded PHPList results', 'wpcf') ?></td>
          </tr>
          </tr>
          <tr valign="top">
            <th scope="row"><?php _e('PHPList relative path:') ?></th>
            <td><input id="inputid" name="wp_phplist_phplist_path" type="text" id="wp_phplist_phplist_path" value="<?php echo $wp_phplist_phplist_path; ?>" size="50" />
            <br />
    <?php _e('Enter the path of your PHPList installation, relative to WordPress', 'wpcf') ?></td>
          </tr>
         </table> 
    
        <p class="submit">
          <input type="submit" name="Submit" value="<?php _e('Update Options', 'wpcf') ?> &raquo;" />
        </p>
      </form>
    </div>

    Easy said, but most of my plugins are needed for the site operations. Any other idea?

    I have the same problem, and also on TinyMCE. Drag and drop does not work.

    I understand you point, but it is very confusing for users when the register and login the first time. We should at least be able to add the site logo and specific text.

Viewing 8 replies - 1 through 8 (of 8 total)