Koozali.org: home of the SME Server
Legacy Forums => Experienced User Forum => Topic started by: Lazo on June 14, 2002, 08:05:24 PM
-
Hi fellows!! i just installed popper (a pop mail reader in the browser), I follow the how to that comes in the tar file (it is the same how to that someone post in this forum), I create the database, untar the file, grant the access to the user. edit the php files, all looks ok, but when I try to access popper, i got this error, does any body try install popper and get this one to???
Fatal error: Failed opening required '/home/e-smith/files/primary/html/popper.inc.php' (include_path='.:/usr/share/php') in /home/e-smith/files/primary/html/popper/class.db_tool.inc.php on line 80
all the files are in their place (well I think)
If anybody can help me, i'll really appreciated!!
thanks!!
-
Does /home/e-smith/files/primary/html/popper.inc.php exist? Seems to me that it would be in /home/e-smith/files/primary/html/popper/ not /home/e-smith/files/primary/html/
Nathan
-
Thanks for your replay!!
I did edit the php file and put the right path, and it works!! thanks!!
The only problem I have is doble messages displayed (or more if I login or click over send/receive). I allready made the corrections that in popper forum says, but still having the same error!! If you can help me with this, i'll really appreciated)
This is what I edit:
Try to edit the file
class.mailer.inc.php
and search for server_uidl and replace the following line
if ( $server_uidl != 0 && !$uidl ) {
you replaced with one of the two commands!! (I did the first one, because the other gave me an error, I don't really know if :wink: is part of the code or some mess by the forum)
if (($server_uidl != "0" ) && (!$uidl) && ($server_uidl != NULL)) {
This is the original posted, I put the other one!!
if (($server_uidl != "0":wink: && (!$uidl) && ($server_uidl != NULL)) {
and this is other you have to edit
The repeated mail download may be due to your settings but also due to a sql string error.
Try changing
$uidl = addslashes($this->headers->get("X-UIDL"));
to
$uidl = addslashes(addslashes($this->headers->get("X-UIDL")));
in
class.mailer.inc.php
Some people said that it seems to work, but not for me, maybe for you!
Thanks!!