Title: capsx's Replies | WordPress.org

---

# capsx

  [  ](https://wordpress.org/support/users/capsx/)

 *   [Profile](https://wordpress.org/support/users/capsx/)
 *   [Topics Started](https://wordpress.org/support/users/capsx/topics/)
 *   [Replies Created](https://wordpress.org/support/users/capsx/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/capsx/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/capsx/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/capsx/engagements/)
 *   [Favorites](https://wordpress.org/support/users/capsx/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Print] custom post types](https://wordpress.org/support/topic/custom-post-types-113/)
 *  [capsx](https://wordpress.org/support/users/capsx/)
 * (@capsx)
 * [12 years ago](https://wordpress.org/support/topic/custom-post-types-113/#post-4542938)
 * 1. copy print-posts.php to the template directory
    2. change:
 *     ```
       global $text_direction;
       ```
   
 * to
 *     ```
       global $text_direction, $wp_query;
       $args = array_merge( $wp_query->query_vars, array( 'post_type' => 'any' ) );
       query_posts( $args );
       ```
   
 * 😉
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Pods - Custom Content Types and Fields] Register Post Type 'has_archive'](https://wordpress.org/support/topic/register-post-type-has_archive/)
 *  Thread Starter [capsx](https://wordpress.org/support/users/capsx/)
 * (@capsx)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/register-post-type-has_archive/#post-4772692)
 * Josh: sorry, didn’t answer to u, but it seems that the problem is already solved
   😉
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Toolset Types - Custom Post Types, Custom Fields and Taxonomies] missing text in the language file](https://wordpress.org/support/topic/missing-text-in-the-language-file/)
 *  Thread Starter [capsx](https://wordpress.org/support/users/capsx/)
 * (@capsx)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/missing-text-in-the-language-file/#post-4545481)
 * ./embedded/includes/fields/file.php
 * $button_text = sprintf( __( ‘Select %s’, ‘wpcf’ ), $field[‘type’] );
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Theme My Login] Theme My Login 6.3.4 translation](https://wordpress.org/support/topic/theme-my-login-634-translation/)
 *  [capsx](https://wordpress.org/support/users/capsx/)
 * (@capsx)
 * [13 years ago](https://wordpress.org/support/topic/theme-my-login-634-translation/page/2/#post-3636130)
 * Jeff Farthing – when will be the next release ?
    please asap … thx
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[bbPress - Mark as Read] Unread topic with new replies](https://wordpress.org/support/topic/unread-topic-with-new-replies/)
 *  [capsx](https://wordpress.org/support/users/capsx/)
 * (@capsx)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/unread-topic-with-new-replies/#post-3256483)
 * this is “must have” …
    and thx for the pligin 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Breadcrumb NavXT] [Plugin: Breadcrumb NavXT] Home title is not translated in multilanguage setting](https://wordpress.org/support/topic/plugin-breadcrumb-navxt-home-title-is-not-translated-in-multilanguage-setting/)
 *  [capsx](https://wordpress.org/support/users/capsx/)
 * (@capsx)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/plugin-breadcrumb-navxt-home-title-is-not-translated-in-multilanguage-setting/#post-2952342)
 * the same issue here
    only upgraded from 4.1.0 to 4.2.0 Can’t translate HOME …:
   S
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Auto Featured Image (Auto Post Thumbnail)] [Plugin: Auto Post Thumbnail] WordPress 3.4: Stopped Working, Thumbnails Missing](https://wordpress.org/support/topic/plugin-auto-post-thumbnail-wordpress-34-previously-generated-thumbnails-missing-wont-generate-new-ones/)
 *  [capsx](https://wordpress.org/support/users/capsx/)
 * (@capsx)
 * [13 years, 9 months ago](https://wordpress.org/support/topic/plugin-auto-post-thumbnail-wordpress-34-previously-generated-thumbnails-missing-wont-generate-new-ones/page/6/#post-2814913)
 * fix.php
 * [http://paste.php.lv/e89e7b6bf2767cb3b210719e8236456b/nonum](http://paste.php.lv/e89e7b6bf2767cb3b210719e8236456b/nonum)
 *     ```
       <?php
   
       //////////////////////////////////////////////////////////////////////
   
       ini_set('display_errors', 1);
       ini_set('error_reporting', 'E_ALL & ~E_NOTICE');
   
       header('Content-Type: text/html; charset=utf-8'); 
   
       //////////////////////////////////////////////////////////////////////
   
       include_once('wp-config.php');
       include_once('wp-load.php');
       include_once('wp-includes/wp-db.php');
   
       //////////////////////////////////////////////////////////////////////
   
       global $wpdb;
   
       $q = "SELECT post_id, meta_value FROM ".$wpdb->postmeta." WHERE meta_key='_wp_attachment_metadata'";
       $myrows = $wpdb->get_results($q);
       $i=0;
       foreach($myrows as $myrow)
       {
       	$id = null;
       	$us = null;
       	$_wp_attached_file = null;
       	$_wp_attached_file_exists = null;
   
       	$us = unserialize($myrow->meta_value);
       	$post_id = $myrow->post_id;
       	$_wp_attached_file = $us['file'] ;
   
       	$q = "SELECT <code>meta_id</code> FROM <code>".$wpdb->postmeta."</code> WHERE <code>meta_key</code> = '_wp_attached_file' AND <code>post_id</code> = '".$post_id."' LIMIT 1";
       	$_wp_attached_file_exists = $wpdb->get_var($q);
       	if($_wp_attached_file_exists=='')
       	{
       		$i++;
       		echo '<p> '.$i.' - _wp_attached_file not found - '.$id.'</p>';
       		$q = "INSERT INTO <code>".$wpdb->postmeta."</code> SET <code>post_id</code> = '".$post_id."', meta_key='_wp_attached_file', meta_value='".$_wp_attached_file."'";
       		$wpdb->query($q);
       	}
       }
   
       //////////////////////////////////////////////////////////////////////
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Filebase Download Manager] [Plugin: WP-Filebase Download Manager] Add custom mime type](https://wordpress.org/support/topic/plugin-wp-filebase-download-manager-add-custom-mime-type/)
 *  Thread Starter [capsx](https://wordpress.org/support/users/capsx/)
 * (@capsx)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-wp-filebase-download-manager-add-custom-mime-type/#post-2736953)
 * yes
    i did like that but its a hack – after plugin update i must do it again …
 *   Forum: [Requests and Feedback](https://wordpress.org/support/forum/requests-and-feedback/)
   
   In reply to: [Malformed URL bypassing moderation?](https://wordpress.org/support/topic/malformed-url-bypassing-moderation/)
 *  [capsx](https://wordpress.org/support/users/capsx/)
 * (@capsx)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/malformed-url-bypassing-moderation/#post-1351744)
 * “Unfortunately, there is no actual verification performed on the incoming trackback,
   and indeed they can even be faked.”
 * sou – as i understand – trackbacks can be faked and trackbags always are automatically
   confirmed ?
 *   Forum: [Requests and Feedback](https://wordpress.org/support/forum/requests-and-feedback/)
   
   In reply to: [Malformed URL bypassing moderation?](https://wordpress.org/support/topic/malformed-url-bypassing-moderation/)
 *  [capsx](https://wordpress.org/support/users/capsx/)
 * (@capsx)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/malformed-url-bypassing-moderation/#post-1351743)
 * i have the same situation:
 * VIRGIL
    [http://%/zzvwuok8](http://%/zzvwuok8) spam comment
 * and spam comment is automatically confirmed, even i had option –
    Before a comment
   appears “Comment author must have a previously approved comment” – enabled
 * also E-mail is empty – theoretically user can’t post comment with an empty e-
   mail address
 * also i found that “comment_type” is trackback …
 * —
 * Other comment settings:
    Comment author must fill out name and e-mail. Before
   a comment appears: Comment author must have a previously approved comment. I’m
   using: WordPress 3.0 stable

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