icon Learn how to get the most out of Surmunity - read our forum tips here! | Welcome! Please register to access all of our features.
Old February 1st, 2008, 12:08 AM   #10 (permalink)
Race Surpass
Super #1
 
MarkRH's Avatar
 
Joined in Jul 2006
Lives in Oklahoma City, OK
Hosted on sh102
1,103 posts
Gave thanks: 17
Thanked 79 times
While you can add the fix to get it to work with webmail in cPanel 11 from the Sourceforge site, I've decided to go ahead and post the correction here (starts at line 218):
PHP Code:
while (true) {
  
$data fgets($server10240); // FIXME: Can we optimize here with another buffer-size?
  
if (strlen(trim($data))==0) break;

  
// Fix hostname in redirects, cookies...
  
$data preg_replace('_([^.]*)/webmail_''$1/webmail_'$data);  // line added to fix webmail in cPanel 11
  
$data str_replace(
          array(
'localhost:2095''localhost:2082''localhost:2086'),
          array(
$webmailhost,      $cpanelhost,     $whmhost),
          
$data);
  if (
substr($data011) == 'Set-Cookie:') {
    
$data str_replace(
            
'; domain=localhost'
            
'; domain='.$_SERVER['HTTP_HOST'], 
            
$data);
  }

  
header($datafalse);

Now I can access both my cpanel and webmail from work.
MarkRH is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old February 1st, 2008, 11:28 AM   #11 (permalink)
Surpass Fan
Comfy Contributor
 
psfrog's Avatar
 
Joined in Jun 2004
Lives in Sweden
Hosted on Muy and Dedicated
195 posts
Gave thanks: 1
Thanked 16 times
And don't forgot about the Wiki:
http://wiki.surpasshosting.com/index...ll_Cpanelproxy
__________________
:: Have a great day! /Erik at http://www.psychofrog.se and http://www.manufrog.com ::
Server: Muy and Dedicated
psfrog is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old February 1st, 2008, 1:05 PM   #12 (permalink)
Race Surpass
Super #1
 
MarkRH's Avatar
 
Joined in Jul 2006
Lives in Oklahoma City, OK
Hosted on sh102
1,103 posts
Gave thanks: 17
Thanked 79 times
Guess I should check the Wiki more often, heh...
MarkRH is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may 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