#1  
Old 2009-10-04, 04:33 PM
skepsis skepsis is offline
Member
 
Join Date: Oct 2009
Posts: 16
Unhappy Strange problem after installation

Hi everybody,

I have installed SugarCrm5.2.0 in a Win Svr 2003 system with Apache 2.2, php 5.2.11 and sql server 2005. I configure php.ini and httpd.conf and everything goes fine at the installation. At the end of the installation and when I try to finally log into the crm, when I hit the url let's say http://localhost/crm an explorer error pops up says that "Internet Explorer was not able to open this Internet site. The requested site is either unavailable or cannot be found."

I must say that if i put another php file in the folder works ok.

Any recommendations please???

Thanks for your time
Reply With Quote
  #2  
Old 2009-10-04, 05:10 PM
salesagility's Avatar
salesagility salesagility is offline
A Sugar Hero
 
Join Date: Aug 2006
Location: UK
Posts: 2,332
Send a message via Skype™ to salesagility
Default Re: Strange problem after installation

what happens in other browsers like firefox?

what version of ie on what o/s?
__________________
Apache/2.2.3 (Debian) PHP/5.2.0-8+etch11 MySQL 5.0.32

SalesAgility.com - SugarCRM Experts (UK)

UK's longest established SugarCRM consultancy

Quotations and Products - Advanced OpenSales for SugarCRM

Please do not PM me with questions. The value of the forum is shared knowledge.
Reply With Quote
  #3  
Old 2009-10-04, 09:20 PM
skepsis skepsis is offline
Member
 
Join Date: Oct 2009
Posts: 16
Default Re: Strange problem after installation

I have tried in IE6 on Win Server 2003 (which is the server), IE7 on Windows Xp and I have the message that I mentioned above. However I install Mozilla in my xp pc after your question and the screen fills up with strange characters. I've attached a screenshot.
Attached Images
 
Reply With Quote
  #4  
Old 2009-10-04, 11:42 PM
BrentR BrentR is offline
Member
 
Join Date: Oct 2006
Posts: 5
Default Re: Strange problem after installation

I'd like to echo the issue -- I'm seeing the same thing! Fresh install of 5.2.0j on PHP 5.2.11 on CentOS 5.3. In both FF 3.0.14, Safari 4, and Opera 10 it look like this:
��������Z{s�6�[��w@�i(O������Gώ=���...

Interestingly, when I wget the page I see some reasonable HTML. Of course that's not something any of my users will be using...
Reply With Quote
  #5  
Old 2009-10-05, 05:01 AM
salesagility's Avatar
salesagility salesagility is offline
A Sugar Hero
 
Join Date: Aug 2006
Location: UK
Posts: 2,332
Send a message via Skype™ to salesagility
Default Re: Strange problem after installation

looks like you are trying to render encrypted characters ... what happens if you enter https://www.sugarcrminstance?
__________________
Apache/2.2.3 (Debian) PHP/5.2.0-8+etch11 MySQL 5.0.32

SalesAgility.com - SugarCRM Experts (UK)

UK's longest established SugarCRM consultancy

Quotations and Products - Advanced OpenSales for SugarCRM

Please do not PM me with questions. The value of the forum is shared knowledge.
Reply With Quote
  #6  
Old 2009-10-05, 05:39 AM
skepsis skepsis is offline
Member
 
Join Date: Oct 2009
Posts: 16
Default Re: Strange problem after installation

This url does not open at all. It is correct ?
Reply With Quote
  #7  
Old 2009-10-05, 11:28 AM
andopes's Avatar
andopes andopes is offline
A Sugar Hero | Help Forum Moderator
 
Join Date: Jul 2006
Location: São Paulo - Brazil
Posts: 6,419
Send a message via MSN to andopes Send a message via Skype™ to andopes
Default Re: Strange problem after installation

Quote:
Originally Posted by skepsis View Post
This url does not open at all. It is correct ?
That should not open if you did not configure ssl over http on your stack.
Make sure there is some error message at the tail of error log of your IIS.

Cheers
__________________
André Lopes
DevToolKit / Project of the Month - June 2009
Lampada Global Services- Open Source Solutions
Avenida Ipiranga, 318
Bloco B - CJ 1602
São Paulo, SP 01046-010
Brazil
Office: +55 11 3237-3110
Mobile: +55 11 9249-5188
USA: +1 908 998-2278e-mail: equipe@lampadaglobal.com

Lampada Global Services delivers enterprise software and offshore programming services to customers around the world.

I DO NOT answer questions through PM and Email. If you need some help post your question into SugarForum.
Reply With Quote
  #8  
Old 2009-10-05, 12:55 PM
skepsis skepsis is offline
Member
 
Join Date: Oct 2009
Posts: 16
Default Re: Strange problem after installation

I have an apache server and I haven't enable nothing about ssl. I must enable SSL in order to execute SugarCRM?
Reply With Quote
  #9  
Old 2009-10-05, 04:09 PM
salesagility's Avatar
salesagility salesagility is offline
A Sugar Hero
 
Join Date: Aug 2006
Location: UK
Posts: 2,332
Send a message via Skype™ to salesagility
Default Re: Strange problem after installation

No ... you do not REQUIRE SSL ... the last time I saw characters like that was SSL rendered to http.

Andopes' advise is good ... check your sugar.log ... you should make sure that the logger level if set to debug admin>system settings>logger settings
__________________
Apache/2.2.3 (Debian) PHP/5.2.0-8+etch11 MySQL 5.0.32

SalesAgility.com - SugarCRM Experts (UK)

UK's longest established SugarCRM consultancy

Quotations and Products - Advanced OpenSales for SugarCRM

Please do not PM me with questions. The value of the forum is shared knowledge.
Reply With Quote
  #10  
Old 2009-10-05, 05:53 PM
skepsis skepsis is offline
Member
 
Join Date: Oct 2009
Posts: 16
Smile Re: Strange problem after installation

Found solution

The solution is proposed by jaakon and jebeauchamp. It is a problem in the zlib compression in PHP 5.2.11

At /include/utils.php at function setPhpIniSettings() change

Code:
// zlib module
if(function_exists('gzclose') && headers_sent() == false) {
ini_set('zlib.output_compression', 1);
}
to

PHP Code:
  // zlib module 
    
if(function_exists('gzclose') && headers_sent() == false) { 
        
ini_set('zlib.output_compression''true'); 
    } 
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
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

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
strange problem on mac os x fsauer65 Help 1 2009-10-13 06:20 PM
LDAP strange problem Rugo Help 0 2009-07-21 04:24 PM
ZuckerReports Strange Problem asimzaidi Help 3 2007-07-30 05:44 PM
Strange problem .. pasgou13 Help 2 2006-11-27 07:36 AM
Installation Issue - Something strange Missing! amrselim Help 2 2006-03-22 08:07 PM


All times are GMT. The time now is 08:20 AM.


Powered by: vBulletin
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
SourceForge.net Logo