Author Topic: Date.timezone NOT OK  (Read 49397 times)

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,876
    • SKaero - Custom Roundcube development
Re: Date.timezone NOT OK
« Reply #15 on: December 18, 2012, 04:20:36 PM »
Is allow_url_fopen enabled?

Offline El Vergatario

  • Jr. Member
  • **
  • Posts: 14
Re: Date.timezone NOT OK
« Reply #16 on: December 19, 2012, 07:20:47 AM »
Yes it is on:

allow_url_fopen = on

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,876
    • SKaero - Custom Roundcube development
Re: Date.timezone NOT OK
« Reply #17 on: December 19, 2012, 11:17:31 AM »
Does it work if you switch the server name to the ip address? (ie: mail.example.com > 192.0.43.10)

Offline El Vergatario

  • Jr. Member
  • **
  • Posts: 14
Re: Date.timezone NOT OK
« Reply #18 on: December 19, 2012, 12:39:50 PM »
No, but now I get login failed rather than connection failure.

Forget that, I had the address encased in ' '

Tried the IP without the apostrophe and I just get a blank screen. Do not even get the login screen.
« Last Edit: December 19, 2012, 12:53:27 PM by El Vergatario »

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,876
    • SKaero - Custom Roundcube development
Re: Date.timezone NOT OK
« Reply #19 on: December 19, 2012, 01:07:05 PM »
What does you main.inc.php look like?

Offline El Vergatario

  • Jr. Member
  • **
  • Posts: 14
Re: Date.timezone NOT OK
« Reply #20 on: December 20, 2012, 06:12:28 AM »
Here you go. I bet it is something simple that I have overlook. That would be typical of me ::)


http://pastebin.com/eG0xpEKc

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,876
    • SKaero - Custom Roundcube development
Re: Date.timezone NOT OK
« Reply #21 on: December 20, 2012, 09:46:22 AM »
You need to have quotes around the default_host,
Code: [Select]
$rcmail_config['default_host'] = 'example.com';

Try setting imap_auth_type to null,
Code: [Select]
$rcmail_config['imap_auth_type'] = null;

Offline El Vergatario

  • Jr. Member
  • **
  • Posts: 14
Re: Date.timezone NOT OK
« Reply #22 on: December 20, 2012, 10:37:27 AM »
I have done as you said but it still says login failed.

I have tried the default host as the server ip, and the server name with & without mail at the beginning. When I put mail it say Connection to the storage server failed.

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,876
    • SKaero - Custom Roundcube development
Re: Date.timezone NOT OK
« Reply #23 on: December 20, 2012, 11:23:54 AM »
Is there any way you could send me a test email account and ftp access so I could take a look?

Offline El Vergatario

  • Jr. Member
  • **
  • Posts: 14
Re: Date.timezone NOT OK
« Reply #24 on: January 03, 2013, 10:57:58 AM »
Hope you had a great time over the festive period.

I can give you access via TeamViewer?

Offline El Vergatario

  • Jr. Member
  • **
  • Posts: 14
Re: Date.timezone NOT OK
« Reply #25 on: January 08, 2013, 01:44:57 PM »
I HAVE DONE IT!!!!!!!  :) :) :) :)  :)

I change the default_host to:

$rcmail_config['default_host'] = 'ssl://localhost';

Originally I had the domain name without ssl. I tried it with ssl and got nothing, then tried ssl with localhost and I managed to log in.

I also changed the login to PLAIN.


Thanks for the help along the way SKaero.

Offline SKaero

  • Administrator
  • Hero Member
  • *****
  • Posts: 5,876
    • SKaero - Custom Roundcube development
Re: Date.timezone NOT OK
« Reply #26 on: January 08, 2013, 01:49:51 PM »
Good to hear. Sorry I missed your last message, I might have been able to help.