Kayako logo
SupportSuite, eSupport and LiveResponse Discussion, troubleshooting and feedback related to Kayako's flagship support desk products SupportSuite, eSupport and LiveResponse.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  (#1) Old
Shawn Offline
New Member
 
Posts: 13
Join Date: Jan 2006
POP3/IMAP Setup on Windows - 30-01-2006, 04:21 PM

I am currently trying to get my pop3/imap Setup on a windows 2000 server. When i go to the php.ini and uncomment the "extension=php_imap.dll" everything quits responding. as well as support site, staff site, and the admin site. I have it currently commented out and the site works fine. What am i doing wrong. None of my email for anything currently works having to do with Kayako.
Any help appreciated.
Current Config looks like the following.
http://www.milestonemortgage.com/support/phpinfo.php
My sql version is "5"
Thanks in advance.


No trees were harmed in the submission of this email, but a bunch of electrons were terribly Inconvenienced.
   
Reply With Quote
  (#2) Old
Shawn Offline
New Member
 
Posts: 13
Join Date: Jan 2006
30-01-2006, 09:46 PM

I believe i have found the problem. The extension themselves do not exist
EX: php_imap in the extensions folder
how or where do i get extension for my php and install them. I am running windows 2000
and iis 5
Thanks in advance.


No trees were harmed in the submission of this email, but a bunch of electrons were terribly Inconvenienced.
   
Reply With Quote
  (#3) Old
mmay Offline
Member
 
Posts: 52
Join Date: Oct 2005
30-01-2006, 10:08 PM

POP3 is broken in in the current version of eSupport on Windows IIS, IMAP does not work 100% either. They know about the problem, but it's been 6 weeks with no fix yet.

Your problem with PHP tho is to just uncomment the imap line the php.ini file. You just need to make sure you do it on the right copy of it (usually the one in C:/Windows but not always depending on the rest of the stuff you have.) There is a sticky thread here in this forum that touches on this too I believe.
   
Reply With Quote
  (#4) Old
netFusion Offline
Member
 
Posts: 393
Join Date: Sep 2003
Location: My wife calls it the doghouse...
31-01-2006, 12:57 AM

Quote:
Originally Posted by Shawn
I believe i have found the problem. The extension themselves do not exist
EX: php_imap in the extensions folder
how or where do i get extension for my php and install them. I am running windows 2000
and iis 5
Thanks in advance.

Go here:

http://www.php.net/downloads.php

You will want the complete package, not the Windows installer version. The complete package zip file is about 8 meg and should include the extensions.


netFusion Computer and Network Solutions
Web Site: http://www.netFusionKC.com
Web Store: https://www.netfusionkc.com/store/

Anything I say or do is my own opinion and may make absolutely no sense to anyone but me...
   
Reply With Quote
  (#5) Old
Shawn Offline
New Member
 
Posts: 13
Join Date: Jan 2006
31-01-2006, 02:22 PM

Thankyou all for your responses im off to get the package now. will let everyone know what happens.


No trees were harmed in the submission of this email, but a bunch of electrons were terribly Inconvenienced.
   
Reply With Quote
  (#6) Old
nickm Offline
New Member
 
Posts: 27
Join Date: Feb 2006
02-02-2006, 01:05 AM

I installed the php_imap.dll - and uncommented the line for it, but still can't get it to work. I get this error:

Code:
No input file specified. PHP Warning: Unknown(): Unable to load dynamic library './php_imap.dll' - The specified module could not be found. in Unknown on line 0
When I go to http://support.oursite.com/support/c....php?_t=parser.

Can anyone help?

Thank you.
   
Reply With Quote
  (#7) Old
netFusion Offline
Member
 
Posts: 393
Join Date: Sep 2003
Location: My wife calls it the doghouse...
02-02-2006, 03:26 AM

Quote:
Originally Posted by nickm
I installed the php_imap.dll - and uncommented the line for it, but still can't get it to work. I get this error:

Code:
No input file specified. PHP Warning: Unknown(): Unable to load dynamic library './php_imap.dll' - The specified module could not be found. in Unknown on line 0
When I go to http://support.oursite.com/support/c....php?_t=parser.

Can anyone help?

Thank you.

Again, it sounds like you either have not copied the extension DLL's into the C:\PHP\ folder (where your PHP.EXE file is located) or you do not the have C:\PHP folder in the system path.

Did you follow the steps that I suggested in the following thread that I posted?

Setup PHP on a Windows 2000 server


netFusion Computer and Network Solutions
Web Site: http://www.netFusionKC.com
Web Store: https://www.netfusionkc.com/store/

Anything I say or do is my own opinion and may make absolutely no sense to anyone but me...
   
Reply With Quote
  (#8) Old
nickm Offline
New Member
 
Posts: 27
Join Date: Feb 2006
02-02-2006, 06:44 PM

Went through your steps ... I'm assuming that I have to restart IIS before this'll work?
   
Reply With Quote
  (#9) Old
mmay Offline
Member
 
Posts: 52
Join Date: Oct 2005
02-02-2006, 08:36 PM

Honestly, get Apache up and running instead, POP3 and IMAP don't work on the current version of eSupport 3.0 and IIS...
   
Reply With Quote
  (#10) Old
nickm Offline
New Member
 
Posts: 27
Join Date: Feb 2006
02-02-2006, 08:53 PM

apache on a windows box? wouldn't taht require a bunch of reconfiguring? (by the way, we host about 15 different sites for our clients, so a restart is a really really big deal.) Unfortunately, our IT guy isn't familiar with php or mysql.
   
Reply With Quote
  (#11) Old
netFusion Offline
Member
 
Posts: 393
Join Date: Sep 2003
Location: My wife calls it the doghouse...
03-02-2006, 03:36 AM

Quote:
Originally Posted by nickm
Went through your steps ... I'm assuming that I have to restart IIS before this'll work?
If you are running PHP as an ISAPI module or using FastCGI, yes you do because the PHP.INI file is read only when the module is loaded with IIS the first time.

The fastest way to restart IIS is to open a command prompt on the server and type in "IISRESET". It will only take about 2 or 3 seconds for IIS to stop and start back up.

If you are running PHP in CGI mode, you do not to restart because it will reread the PHP.INI file each time the PHP.EXE file is executed.


netFusion Computer and Network Solutions
Web Site: http://www.netFusionKC.com
Web Store: https://www.netfusionkc.com/store/

Anything I say or do is my own opinion and may make absolutely no sense to anyone but me...
   
Reply With Quote
  (#12) Old
ehoffman Offline
Member
 
Posts: 200
Join Date: Dec 2005
03-02-2006, 04:15 AM

Quote:
Originally Posted by mmay
Honestly, get Apache up and running instead, POP3 and IMAP don't work on the current version of eSupport 3.0 and IIS...
Ours works fine. You can use IIS and Win2k3.
   
Reply With Quote
  (#13) Old
netFusion Offline
Member
 
Posts: 393
Join Date: Sep 2003
Location: My wife calls it the doghouse...
03-02-2006, 05:01 AM

I've run SupportSuite on IIS 5 (Win 2000), IIS 6 (Win 2003) and Apache (Linux/CentOS). My own personal experience is that it is easier to setup and manage on my IIS 6 / Win 2003 machine....


netFusion Computer and Network Solutions
Web Site: http://www.netFusionKC.com
Web Store: https://www.netfusionkc.com/store/

Anything I say or do is my own opinion and may make absolutely no sense to anyone but me...
   
Reply With Quote
  (#14) Old
mmay Offline
Member
 
Posts: 52
Join Date: Oct 2005
03-02-2006, 11:06 PM

Quote:
Originally Posted by ehoffman
Ours works fine. You can use IIS and Win2k3.
Then please go enter detailed info on this bug report: http://bugs.kayako.net/index.php?do=details&id=1092 , cause it's a known bug and does NOT work, past 3.00.26. At best it will parse 1/2 of the message in a POP3 account at once, it will not succesfully create tickets for all of them.
   
Reply With Quote
  (#15) Old
ehoffman Offline
Member
 
Posts: 200
Join Date: Dec 2005
05-02-2006, 01:41 AM

Don't know about POP, use IMAP. Many messages a day get processed without error.
   
Reply With Quote
Reply

Tags
pop3 or imap, setup, windows

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Email piping on Windows v0lc4n0 E-mail Piping Issues 17 19-09-2008 06:44 AM
How to Setup Windows 2003 and Exchange 2003 SMTP Relaying bluesquares Installation & Upgrading 1 27-10-2007 10:11 PM
Setup PHP on a Windows 2000 server netFusion Technical Chat 5 03-10-2007 09:01 AM
Email Piping with Windows & SmarterMail fusion E-mail Piping Issues 1 24-01-2007 08:39 AM
Need Help Installing MySQL & PHP on Windows 2003 with IIS 6 sjvtech Installation & Upgrading 3 20-04-2006 01:17 AM



Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
vBulletin Skin developed by: vBStyles.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46