kjup
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Urls get appended with a hypen and number at the end like -2Thanks, I have discovered a plugin to get around this as I never use the paging feature if you wish to get around this issue. http://wordpress.org/extend/plugins/allow-numeric-stubs/
Forum: Fixing WordPress
In reply to: Urls get appended with a hypen and number at the end like -2Did you ever come up with a resolution to this one? I too am having the same issue and the only way it seems to work is by adding a letter in front of the numbers or after the numbers. It seems that when it’s just numbers in the permalink it’s forcing the hypen in after the numbers you add in.
Forum: Plugins
In reply to: Postie plugin issuesI have discovered that this was indeed a permissions error so no need to reply.
Thanks,
KjupForum: Plugins
In reply to: Postie deleting messages from the pop serverin postie-functions.php it looks like there is a call to delete the mail on lines 231-252:
// loop through messages for ($i=1; $i <= $msg_count; $i++) { $emails[$i] = implode ('',$pop3->get($i)); if ( $config["DELETE_MAIL_AFTER_PROCESSING"]) { if( !$pop3->delete($i) ) { echo 'Oops '.$pop3->ERROR.'\n'; $pop3->reset(); exit; } else { echo "Mission complete, message $i deleted.\n"; } } else { print("Not deleting messages!\n"); } } //clean up $pop3->quit(); return $emails; } /**There is also another reference in postieIMAP.php on lines 103-108:
/** * Marks a message for deletion */ function deleteMessage($index){ imap_delete($this->_connection,$index); }tinker with those lines in those files or possibly just remove and see what happens.
Best of luck,
Kjup