herbert
Forum Replies Created
-
Forum: Plugins
In reply to: [Theme My Login] [Plugin: Theme My Login] Reset password problem@Jeff-> For your information I am running PHP Version: 5.3.2-1 on the webserver. I will try later to test it on another server with different PHP version.
@Onglai-> Can you check what version PHP you are running on?!
Forum: Plugins
In reply to: [MailPress] [Plugin: MailPress] Per post sending not working in wp 3.0.1UPDATE: For testing I had activated a directory password on the installation. After removing the password protection all worked fine again.
Forum: Plugins
In reply to: [Theme My Login] [Plugin: Theme My Login] Reset password problemDoes this error happen via wp-login.php as well? Because the core does not pass the parameter as a reference neither.
@Jeff-> wp-login has no problem. When I switched of theme-my-login addon there where no errors retrieving password via wp-login.
I tried switching off all other plugins, but the error was still there using theme-my-login.I’ll try and do some more testing later in a clean wp install. Note that I am using wp 2.9.2 with NL language.
Forum: Plugins
In reply to: [Theme My Login] [Plugin: Theme My Login] Reset password problemFor now I just switched off all error reporting on the server. At least the user will not see the strange error.
Anyone with a permanent solution out there?
Forum: Plugins
In reply to: [Theme My Login] [Plugin: Theme My Login] Reset password problem@onglai-> Same problem here in wp 2.9.2. I’m looking for the solution too…
Forum: Plugins
In reply to: [MailPress] [Plugin: MailPress] Use of the_excerpt();You can use the_excerpt() by changing wp-content/plugins/mailpress/mp-content/themes/your-theme-name/_loop.php
change:
<?php $this->the_content( __( '(more...)' ) ); ?>
to:
<?php the_excerpt(); ?>
Hope this helps someone…
Forum: Plugins
In reply to: [MailPress] [Plugin: MailPress] Per post sending not working in wp 3.0.1UPDATE
=======
It looks like it is not a wordpress issue.Tested wp 292 and 301 on a different webserver and there mailpress ‘per post’ option is working fine. I will look into it further and post an update as soon as I know more…
Forum: Plugins
In reply to: [MailPress] [Plugin: MailPress] Weekly mails stopped working@John25-> Did you recently upgrade to wp 3.0.1? It looks like taht for me it stopped working after I upgraded wp from 2.9.2 to 3.0.1! My only fix for now is to fall back on wp 2.9.2 for now…
I will start testing this…Forum: Plugins
In reply to: [Theme My Login] Dutch Language files for Theme My Login@jeff: Where can I download the Dutch language files?
Forum: Themes and Templates
In reply to: please add HEADER_IMAGE filterI added some code to RavanH’s code to automaticly create a thumbnail for a header image… So no need to create them by hand.
if (!strpos($file, '-thumbnail') > 0) { // exclude thumbnails from list if (!strpos($file, '-thumbnail')) { // create thumbnail image_resize( $imagepath.$file, 240, 48, true, 'thumbnail'); } $header = array( 'url' => $imageurl .'/images/headers/' .$file, 'thumbnail_url' => $imageurl .'/images/headers/' .$filename[0] .'-thumbnail.' .$ext, 'description' => __( $filename[0], $themename ) ); array_push($list, $header); } }
Forum: Networking WordPress
In reply to: Ajax in subsiteSOLVED:
In the domain mapping configuration do NOT select: “Redirect administration pages to site’s original domain (remote login disabled if redirect disabled)”.Now my ajax content is working on the virtual domain!
Forum: Networking WordPress
In reply to: Ajax in subsiteUPDATE:
I checked in FireBug for the post to /wp-admin/admin-ajax.php it shows a “302 Moved Temporarily” that is why it is not working I guess. It also refers to jQuery.js line 130.Ideas anybody…?
Forum: Networking WordPress
In reply to: Ajax in subsiteWhen you change to domain mapping, go Edit the site so all the references to the subdomain are gone.
Thanks for the response.
Can you explain what you mean with ‘edit the site’?
I am not using subdomain but virtual domain and the sub-sites are set up as sub-directory sites in the main blog.
There is no problem with the sub-site it works perfectly under the virtual domain. There is only the problem that the ajax content doesn’t load anymore…Forum: Fixing WordPress
In reply to: How to disable Comments Feed in WordPress 3 Twentytenwow, must be sill sleeping here… I meant:
bloginfo(‘rss_url’);
Could have used the comment edit for correcting my mistake, but still sleeping here.. hahaha ??
Forum: Fixing WordPress
In reply to: How to disable Comments Feed in WordPress 3 Twentytensorry blog_info (‘stylesheet_url’) should be blog_info (‘rss_url’)