Cole
Joined: 29 Jul 2004 Posts: 1 Location: Reading, England
|
Posted: Thu Jul 29, 2004 2:45 pm Post subject: MAJOR PROBLEMS WITH b2mail.php |
|
|
Hello anyone and everyone,
I'm having major problems with b2mail.php and I really do want to get it working. My first problem is a problem that a few people seem to be having on this board and it's with the following error:
Ooops POP3: premature NOOP OK, NOT an RFC 1939 Compliant server
Now before you go and say it, the code ALREADY states if(!$this->RFC1939) so the exclamation mark is not fixing the problem, I have managed to work my way around this problem by commenting out the while if statment so it now looks like this:
Code: | $this->RFC1939 = $this->noop();
/* if(!$this->RFC1939) {
$this->ERROR = _("POP3: premature NOOP OK, NOT an RFC 1939 Compliant server");
$this->quit();
return false;
} else */
return true;
} |
By doing this I get another problem, but not one that I think is directly linked to commenting out the code as it is again a problem that some other people on the board seem to be having. The problem is to do with the username and password located within the email set for blogging. It ALWAYS comes back with an error of WRONG USER OR PASSWORD with the username and password are both infact correct. The problem to me looks to be the comma [,] used to split the two.
Here is an example of what I mean, if my username was qwerty and my password was 12345 then in my email I would have qwerty:12345 at the top of my page. The b2mail.php script however seems to read this as
Login: qwerty, (with the comma)
Pass: 12345
I can't seem to find ANY answers to these questions and I'm about ready to pack the whole lot in and give up. Is there anyone out there that has some answers to these problems ?
Thanking you in advanced ! |
|