[wp-hackers] Re: wp-hackers Digest, Vol 47, Issue 77

BeyondNet CslaNet.org beyondnet at cslanet.org
Sat Dec 27 00:13:37 GMT 2008


Hi:

Not because it is losing ground wordpress register my users, they said:

Two weeks ago there were 50 registered users every week and since then have 
been deleting users until this moment there are only 5 subscribers

The question is:
Wordpress has a bug that causes this behavior, I tried everything and 
nothing has succeeded in solving the problem.


I would appreciate very much your help

Att.

Alberto.




----- Original Message ----- 
From: <wp-hackers-request at lists.automattic.com>
To: <wp-hackers at lists.automattic.com>
Sent: Friday, December 26, 2008 3:48 PM
Subject: wp-hackers Digest, Vol 47, Issue 77


> Send wp-hackers mailing list submissions to
> wp-hackers at lists.automattic.com
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.automattic.com/mailman/listinfo/wp-hackers
> or, via email, send a message with subject or body 'help' to
> wp-hackers-request at lists.automattic.com
>
> You can reach the person managing the list at
> wp-hackers-owner at lists.automattic.com
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of wp-hackers digest..."
>
>
> Today's Topics:
>
>   1. Re: WP 2.7 : why using POST when GET is enough ?
>      (Patrick Proniewski)
>   2. Any alternative to $_SERVER['QUERY_STRING'] for SEO friendly
>      URLs?.. (dave jaggy)
>   3. Re: Displaying date on archive pages (Dan Gayle)
>   4. Re: Displaying date on archive pages (RePost)
>   5. Re: Displaying date on archive pages (Kim Parsell)
>   6. Re: Displaying date on archive pages (Harish Narayanan)
>   7. unsubscribers (Luis Villarino)
>   8. Re: Displaying date on archive pages (RePost)
>   9. Re: Any alternative to $_SERVER['QUERY_STRING'] for SEO
>      friendly URLs?.. (scribu at gmail.com)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Fri, 26 Dec 2008 13:27:31 +0100
> From: Patrick Proniewski <patpro at patpro.net>
> Subject: Re: [wp-hackers] WP 2.7 : why using POST when GET is enough ?
> To: wp-hackers at lists.automattic.com
> Message-ID: <665FB2E0-25FC-4FD0-BA75-6A1807B1B485 at patpro.net>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed; delsp=yes
>
> Hi
>
> On 24 déc. 2008, at 22:46, Jacob Santos wrote:
>
>> Go to trac.wordpress.org and create a ticket. If you can, checkout
>> WordPress repository trunk directory. Make the change and submit the
>> patch to the same ticket.
>
> I don't really see the point in opening a ticket without knowing
> before if this is a bug or a design feature. May be the choice of POST
> instead of GET is made in an attempt to make WordPress more "RESTFul".
>
> But well, if nobody here knows about that, I figure I'll have to fill
> a bug report.
>
>> Patrick Proniewski wrote:
>>>
>>> Since version 2.7, WP uses POST method to request "wp-cron.php?
>>> check=...". What is the point ?
>>> My antispam filter works by denying POST method to people who fail
>>> to provide proper credentials. It's implemented on the server side
>>> (in httpd.conf). Then, the POST method is denied for wordpress or
>>> whatever process on the server.
>>> I had to edit wp-includes/cron.php to replace wp_remote_post with
>>> wp_remote_get.
>>> I need to get rid of every POST requests made locally, and replace
>>> them with GET requests.
>
>
>
> regards,
>
> patpro
>
>
>
> ------------------------------
>
> Message: 2
> Date: Fri, 26 Dec 2008 17:23:19 +0400
> From: "dave jaggy" <jayarjo at gmail.com>
> Subject: [wp-hackers] Any alternative to $_SERVER['QUERY_STRING'] for
> SEO friendly URLs?..
> To: wp-hackers at lists.automattic.com
> Message-ID:
> <9aa12a490812260523mdf8c716h29dbeb77bfa56630 at mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> I'm writing plugin, which heavily depends on the current url. It's ok
> when everything is set to default and I got usual query_string uri's.
> But when I switch on SEO friendly urls, my plugin stops working. Or in
> other words $_SERVER['QUERY_STRING'] on which I base my switch()
> syntax becomes empty. Is there any alternative for SEO friendly urls?
> Maybe components of the permalink got dumped in some structure
> somewhere in WP's global space? Or something else?..
>
> Dave
>
>
> ------------------------------
>
> Message: 3
> Date: Fri, 26 Dec 2008 09:52:15 -0800
> From: Dan Gayle <dangayle at gmail.com>
> Subject: Re: [wp-hackers] Displaying date on archive pages
> To: wp-hackers at lists.automattic.com
> Message-ID: <77370B58-B8D0-41C1-B530-04B4118589B4 at gmail.com>
> Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes
>
> Just look at how Kubrick does it.
>
>>> Does WordPress provide a tag that will let me display the date on
>>> top of
>>> my archives pages?
>>>
>>> I'd like to display "Archive: December 26, 2008" or "Archive:
>>> December
>>> 2008," where the tag would provide the date.
>
>
>
> ------------------------------
>
> Message: 4
> Date: Fri, 26 Dec 2008 11:53:26 -0600
> From: RePost <repost_08 at yahoo.com>
> Subject: Re: [wp-hackers] Displaying date on archive pages
> To: wp-hackers at lists.automattic.com
> Message-ID: <49551A16.9090204 at yahoo.com>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> Harish Narayanan wrote:
>> RePost wrote:
>>
>>
>>> Does WordPress provide a tag that will let me display the date on top of
>>> my archives pages?
>>>
>>> I'd like to display "Archive: December 26, 2008" or "Archive: December
>>> 2008," where the tag would provide the date.
>>>
>>
>> There might be a simpler (as in more modern) way, but I use a
>> combination of is_{something}() followed by a suitable call to
>> the_time() to set my title.
>>
>> For e.g.,
>>
>>
>> <?php /* If this is a daily archive */ } if (is_day()) { ?>
>> <h2 class="pagetitle">Archive for <?php the_time('F jS, Y'); ?></h2>
>>
>> <?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
>> <h2 class="pagetitle">Archive for <?php the_time('F, Y'); ?></h2>
>>
>> <?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
>> <h2 class="pagetitle">Archive for <?php the_time('Y'); ?></h2>
>>
> Thanks, Harish.
>
> This returns an "unexpected '}' error" for the first line.
>
> Wish I could do more with php than write includes. Do you see an error 
> here?
>
>
> ------------------------------
>
> Message: 5
> Date: Fri, 26 Dec 2008 13:01:20 -0500
> From: Kim Parsell <kparsell-wp at kpdesign.net>
> Subject: Re: [wp-hackers] Displaying date on archive pages
> To: wp-hackers at lists.automattic.com
> Message-ID: <49551BF0.7090209 at kpdesign.net>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> Try this instead:
>
> <?php /* If this is a daily archive */ } if (is_day()) { ?>
> <h2 class="pagetitle">Archive for <?php the_time('F jS, Y'); ?></h2>
> <?php } ?>
>
> <?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
> <h2 class="pagetitle">Archive for <?php the_time('F, Y'); ?></h2>
> <?php } ?>
>
> <?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
> <h2 class="pagetitle">Archive for <?php the_time('Y'); ?></h2>
> <?php } ?>
>
>
> Kim
>
> -------------------------------
>
> RePost wrote:
>> Harish Narayanan wrote:
>>> RePost wrote:
>>>
>>>
>>>> Does WordPress provide a tag that will let me display the date on
>>>> top of
>>>> my archives pages?
>>>>
>>>> I'd like to display "Archive: December 26, 2008" or "Archive: December
>>>> 2008," where the tag would provide the date.
>>>>
>>>
>>> There might be a simpler (as in more modern) way, but I use a
>>> combination of is_{something}() followed by a suitable call to
>>> the_time() to set my title.
>>>
>>> For e.g.,
>>>
>>>
>>> <?php /* If this is a daily archive */ } if (is_day()) { ?>
>>> <h2 class="pagetitle">Archive for <?php the_time('F jS, Y'); ?></h2>
>>>
>>> <?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
>>> <h2 class="pagetitle">Archive for <?php the_time('F, Y'); ?></h2>
>>>
>>> <?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
>>> <h2 class="pagetitle">Archive for <?php the_time('Y'); ?></h2>
>>>
>> Thanks, Harish.
>>
>> This returns an "unexpected '}' error" for the first line.
>>
>> Wish I could do more with php than write includes. Do you see an error
>> here?
>> _______________________________________________
>> wp-hackers mailing list
>> wp-hackers at lists.automattic.com
>> http://lists.automattic.com/mailman/listinfo/wp-hackers
>>
>
>
> ------------------------------
>
> Message: 6
> Date: Fri, 26 Dec 2008 19:03:30 +0100
> From: Harish Narayanan <harish.mlists at gmail.com>
> Subject: Re: [wp-hackers] Displaying date on archive pages
> To: wp-hackers at lists.automattic.com
> Message-ID: <49551C72.8030308 at gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> RePost wrote:
>>> <?php /* If this is a daily archive */ } if (is_day()) { ?>
>>> <h2 class="pagetitle">Archive for <?php the_time('F jS, Y'); ?></h2>
>>>
>>> <?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
>>> <h2 class="pagetitle">Archive for <?php the_time('F, Y'); ?></h2>
>>>
>>> <?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
>>> <h2 class="pagetitle">Archive for <?php the_time('Y'); ?></h2>
>>>
>> Thanks, Harish.
>>
>> This returns an "unexpected '}' error" for the first line.
>
> I apologise, I hastily copied and pasted it from my old theme.
>
> Just remove the first } and add it to the end of the final elseif and it
> should be OK.
>
> Harish
>
>
> ------------------------------
>
> Message: 7
> Date: Fri, 26 Dec 2008 10:05:26 -0800
> From: "Luis Villarino" <lvillarino at gmail.com>
> Subject: [wp-hackers] unsubscribers
> To: wp-hackers at lists.automattic.com
> Message-ID:
> <6132750b0812261005s605cc6dfpc1d0c8ca426fbee2 at mail.gmail.com>
> Content-Type: text/plain; charset=ISO-8859-1
>
> On Fri, Dec 26, 2008 at 9:53 AM, RePost <repost_08 at yahoo.com> wrote:
>
>> Harish Narayanan wrote:
>>
>>> RePost wrote:
>>>
>>>
>>>
>>>> Does WordPress provide a tag that will let me display the date on top 
>>>> of
>>>> my archives pages?
>>>>
>>>> I'd like to display "Archive: December 26, 2008" or "Archive: December
>>>> 2008," where the tag would provide the date.
>>>>
>>>>
>>>
>>> There might be a simpler (as in more modern) way, but I use a
>>> combination of is_{something}() followed by a suitable call to
>>> the_time() to set my title.
>>>
>>> For e.g.,
>>>
>>>
>>> <?php /* If this is a daily archive */ } if (is_day()) { ?>
>>> <h2 class="pagetitle">Archive for <?php the_time('F jS, Y'); ?></h2>
>>>
>>> <?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
>>> <h2 class="pagetitle">Archive for <?php the_time('F, Y'); ?></h2>
>>>
>>> <?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
>>> <h2 class="pagetitle">Archive for <?php the_time('Y'); ?></h2>
>>>
>>>
>> Thanks, Harish.
>>
>> This returns an "unexpected '}' error" for the first line.
>>
>> Wish I could do more with php than write includes. Do you see an error
>> here?
>>
>> _______________________________________________
>> wp-hackers mailing list
>> wp-hackers at lists.automattic.com
>> http://lists.automattic.com/mailman/listinfo/wp-hackers
>>
>
>
>
> -- 
> osCommerce Expert
> www.ezosc.com
>
>
> ------------------------------
>
> Message: 8
> Date: Fri, 26 Dec 2008 14:15:13 -0600
> From: RePost <repost_08 at yahoo.com>
> Subject: Re: [wp-hackers] Displaying date on archive pages
> To: wp-hackers at lists.automattic.com
> Message-ID: <49553B51.9000905 at yahoo.com>
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> Harish Narayanan wrote:
>> I apologise, I hastily copied and pasted it from my old theme.
>>
>> Just remove the first } and add it to the end of the final elseif and it
>> should be OK.
>>
> Thanks again to you and Kim, and to Dan for pointing me to archive.php
> in Kubrick.
>
>
> ------------------------------
>
> Message: 9
> Date: Fri, 26 Dec 2008 22:47:49 +0200
> From: scribu at gmail.com
> Subject: Re: [wp-hackers] Any alternative to $_SERVER['QUERY_STRING']
> for SEO friendly URLs?..
> To: wp-hackers at lists.automattic.com
> Message-ID:
> <349fe48b0812261247q267863d9h48b8ea692b4762cd at mail.gmail.com>
> Content-Type: text/plain; charset=UTF-8
>
> Do a var_dump on the global $wp_query and see if you can use that.
>
> On 12/26/08, dave jaggy <jayarjo at gmail.com> wrote:
>> I'm writing plugin, which heavily depends on the current url. It's ok
>> when everything is set to default and I got usual query_string uri's.
>> But when I switch on SEO friendly urls, my plugin stops working. Or in
>> other words $_SERVER['QUERY_STRING'] on which I base my switch()
>> syntax becomes empty. Is there any alternative for SEO friendly urls?
>> Maybe components of the permalink got dumped in some structure
>> somewhere in WP's global space? Or something else?..
>>
>> Dave
>> _______________________________________________
>> wp-hackers mailing list
>> wp-hackers at lists.automattic.com
>> http://lists.automattic.com/mailman/listinfo/wp-hackers
>>
>
>
> -- 
> http://scribu.net
>
>
> ------------------------------
>
> _______________________________________________
> wp-hackers mailing list
> wp-hackers at lists.automattic.com
> http://lists.automattic.com/mailman/listinfo/wp-hackers
>
>
> End of wp-hackers Digest, Vol 47, Issue 77
> ****************************************** 



More information about the wp-hackers mailing list