HI, I installed the last night build and I'm having problems when triyng to install plugins.......I get an error message:
"Are you sure you want to do this? Please try again." I'm only able to install a plugin if I upload the file.......if I click "Install Now" from the plugin list I always get the message above........ Anyone can help?! Thanks very much... Obrigado, Abraços... Raoni A. Del Pérsio . . . . . . . . . . . . . . . . . . . AD::agência digital e. [email protected] t. (11) 2238-4602 www.agenciaad.com.br Em 04/05/2010, às 09:00, [email protected] escreveu: > Send wp-testers mailing list submissions to > [email protected] > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.automattic.com/mailman/listinfo/wp-testers > or, via email, send a message with subject or body 'help' to > [email protected] > > You can reach the person managing the list at > [email protected] > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of wp-testers digest..." > > > Today's Topics: > > 1. Re: Attaching Media to custom post type (scribu) > 2. on page/post save returns edit posts screen (Ross Chapman) > 3. Custom Post Type + many template (unsalkorkmaz) > 4. Re: on page/post save returns edit posts screen (Andrew Nacin) > 5. Re: import broken in latest nightly? (Andrew Nacin) > 6. Re: Custom Post Type + many template (Deanna Schneider) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Mon, 3 May 2010 17:27:31 +0300 > From: scribu <[email protected]> > Subject: Re: [wp-testers] Attaching Media to custom post type > To: [email protected] > Message-ID: > <[email protected]> > Content-Type: text/plain; charset=UTF-8 > > It seems there's a filter missing there. Feel free to open a ticket on trac. > > > On Sun, May 2, 2010 at 8:06 PM, [email protected] < > [email protected]> wrote: > >> Is it possible to attach items in the media library to custom post types? >> When I click on "attach", the only two options are posts and pages and I am >> not finding where to add the functionality if that is what is required >> first. >> _______________________________________________ >> wp-testers mailing list >> [email protected] >> http://lists.automattic.com/mailman/listinfo/wp-testers >> > > > > -- > http://scribu.net > > > ------------------------------ > > Message: 2 > Date: Mon, 3 May 2010 16:33:58 -0700 > From: Ross Chapman <[email protected]> > Subject: [wp-testers] on page/post save returns edit posts screen > To: [email protected] > Message-ID: <[email protected]> > Content-Type: text/plain; charset=us-ascii > > Running today's trunk on my Mac and notice that whenever I save a page (or > custom post type for that matter) it returns the Edit Posts screen. Here's > is error message from WP_DEBUG: > > "Notice: load_plugin_textdomain was called with an argument that is > deprecated since version 2.7 with no alternative available. in > /Library/WebServer/Documents/Sites/mydomain/wp-includes/functions.php on line > 3248" > > -Ross > > ------------------------------ > > Message: 3 > Date: Mon, 3 May 2010 16:34:45 -0700 (PDT) > From: unsalkorkmaz <[email protected]> > Subject: [wp-testers] Custom Post Type + many template > To: [email protected] > Message-ID: > <[email protected]> > Content-Type: text/plain; charset=ISO-8859-1 > > Hi, > I want to use custom post types but i couldnt find "how to add custom > post type template support from plugin directory" > > Basically lets say i want to have "abcd" named post type. I dont want > to put a file on every template and i want to define single-abcd.php > file location in plugin directory without editing template files. Is > it possible? > > > ------------------------------ > > Message: 4 > Date: Mon, 3 May 2010 16:38:30 -0700 > From: Andrew Nacin <[email protected]> > Subject: Re: [wp-testers] on page/post save returns edit posts screen > To: [email protected] > Message-ID: > <[email protected]> > Content-Type: text/plain; charset=ISO-8859-1 > > You have a plugin that is using an argument in load_plugin_textdomain that > no longer does anything. (The second argument, specifically.) See > http://codex.wordpress.org/Function_Reference/load_plugin_textdomain. > > On Mon, May 3, 2010 at 4:33 PM, Ross Chapman <[email protected]> wrote: > >> Running today's trunk on my Mac and notice that whenever I save a page (or >> custom post type for that matter) it returns the Edit Posts screen. Here's >> is error message from WP_DEBUG: >> >> "Notice: load_plugin_textdomain was called with an argument that is >> deprecated since version 2.7 with no alternative available. in >> /Library/WebServer/Documents/Sites/mydomain/wp-includes/functions.php on >> line 3248" >> > > > ------------------------------ > > Message: 5 > Date: Mon, 3 May 2010 21:47:28 -0700 > From: Andrew Nacin <[email protected]> > Subject: Re: [wp-testers] import broken in latest nightly? > To: wp-testers <[email protected]> > Message-ID: > <[email protected]> > Content-Type: text/plain; charset=ISO-8859-1 > > This has been fixed in trunk. I've also backported the change to the 2.9 and > 2.8 branches. > > http://core.trac.wordpress.org/changeset/14334 > > On Wed, Apr 28, 2010 at 2:11 PM, Andrew Nacin <[email protected]> wrote: > >> Yes, though in trunk, it'll be a different function. >> >> More or less, wp-admin/admin.php is being loaded twice -- once because >> that's the page requested, then again via a conditional include in >> admin-header.php. It results in WP being loaded twice, which predictably >> errors out on the first function it tries to re-define. >> >> I'm seeing this on my environment (Mac, Apache 2.2, PHP 5.3, standard >> include_path et al.) all the way down to 2.8 (that's just how far I've >> tested). The offending line has been there for a while. So it's definitely >> environment-specific. >> >> >> On Wed, Apr 28, 2010 at 2:05 PM, Doug Stewart <[email protected]> wrote: >> >>> @nacin: >>> Is this the "cannot redeclare add_cssclass()" issue? >> >> > > > ------------------------------ > > Message: 6 > Date: Tue, 4 May 2010 06:05:29 -0500 > From: Deanna Schneider <[email protected]> > Subject: Re: [wp-testers] Custom Post Type + many template > To: [email protected] > Message-ID: > <[email protected]> > Content-Type: text/plain; charset=ISO-8859-1 > > You can use the template redirect to include file in your plugins directory. > > // Template selection > function template_redirect() > { > global $wp, $wp_query; > > if ($wp->query_vars["post_type"] == "abcd") > { > > get_header(); > // include your custom processing code here > get_sidebar(); > get_footer(); > > die(); > } // end if to determine if we're doing anything with this > redirect > } > > add_action("template_redirect", array(&$this, 'template_redirect')); > > On Mon, May 3, 2010 at 6:34 PM, unsalkorkmaz <[email protected]> wrote: >> Hi, >> I want to use custom post types but i couldnt find "how to add custom >> post type template support from plugin directory" >> >> Basically lets say i want to have "abcd" named post type. I dont want >> to put a file on every template and i want to define single-abcd.php >> file location in plugin directory without editing template files. Is >> it possible? >> _______________________________________________ >> wp-testers mailing list >> [email protected] >> http://lists.automattic.com/mailman/listinfo/wp-testers >> > > > ------------------------------ > > _______________________________________________ > wp-testers mailing list > [email protected] > http://lists.automattic.com/mailman/listinfo/wp-testers > > > End of wp-testers Digest, Vol 63, Issue 3 > ***************************************** _______________________________________________ wp-testers mailing list [email protected] http://lists.automattic.com/mailman/listinfo/wp-testers
