Page 1 of 2 12 LastLast
Results 1 to 10 of 15

Thread: Errors on installation

  1. #1
    directory52 is offline Member
    Join Date
    Oct 2009
    Posts
    5

    Unhappy Errors on installation

    Greetings All,

    I keep getting error msg's on the index.php page prior to configuring my crm installation. I see the files and the pages correctly, however I have thes error msg's on the screen:

    Warning: session_start() [function.session-start]: open(/path/sess_881c88551f888e50f39d0e46808cf892, O_RDWR) failed: No such file or directory (2) in /home/directn/public_html/salesintranet/crm/install.php on line 42

    Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/directn/public_html/salesintranet/crm/install.php:42) in /home/directn/public_html/salesintranet/crm/install.php on line 42

    Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/directn/public_html/salesintranet/crm/install.php:42) in /home/directn/public_html/salesintranet/crm/install.php on line 42

    Warning: Unknown: open(/path/sess_f5a1c65531be72cacff12207dd0f6647, O_RDWR) failed: No such file or directory (2) in Unknown on line 0

    Warning: Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (N;/path) in Unknown on line 0

    I have change the permissions to the correct files and folders as well. I still have this issue. Can you please assist, as I am not sure what my issue is. THANK YOU ALL IN ADVANCE!

    Operating system - linux
    Sugar version is SugarCRM 5.2.0j
    Webserver type & version - Apache 2.0.63 Unix,I886
    PHP version-5.2.9
    MySQL- 5.0.81-community

  2. #2
    Angel's Avatar
    Angel is offline Sugar Community Member
    Join Date
    Jul 2005
    Location
    Los Angeles
    Posts
    4,813

    Default Re: Errors on installation

    Something is still not quite right with your permissions. I don't know of any reason why you would get permissions errors otherwise.

    Check your PHP.INI and take note of the session.save_path setting. Verify that the web user has access to the specified directory.
    Regards,

    Angel Magaña
    Co-Author: Implementing SugarCRM 5.x (Packt Publishing -- Sept. 2010)
    Blog: http://cheleguanaco.blogspot.com.
    Twitter: @cheleguanaco.

    ________
    | Projects: |_____________________________________
    |
    | CandyWrapper (.NET Wrapper for SugarCRM SOAP API). Source now available on GitHub!
    | GoldMine to SugarCRM Express Conversion. Latest: 1.0.1.7 (Nov. 3, 2009)
    | CRM SkyDialer (Skype Integration). Latest: 1.0.2 (Feb. 17, 2010)
    | Round Robin Leads Assignment
    | Phone Number Formatter
    | CaseTwit (Twitter Integration)
    ______________________________________________

  3. #3
    directory52 is offline Member
    Join Date
    Oct 2009
    Posts
    5

    Default Re: Errors on installation

    Thanks so much for oyur response. Is it possible to let me know wher I can find the php.ini and session.save_path setting. I am not sure wher eto find this and make the necessary changes. thank you again!

  4. #4
    andopes's Avatar
    andopes is offline A Sugar Hero | Help Forum Moderator
    Join Date
    Jul 2006
    Location
    São Paulo - Brazil
    Posts
    8,335

    Default Re: Errors on installation

    Create a simple php script, on your server, containing this code:
    PHP Code:
    <?PHP
    phpinfo
    ();
    ?>
    Access this script through your browser.
    You will see a page containing all php information.
    At the beginning of page you will see the attribute "Loaded Configuration File". Its value displays where the php.ini is saved.
    Then you need to edit this file. The session.save_path is one of the named attributes inside this file.
    Probably this attribute is commented. You can confirm that looking for this its on php information page you just loaded.
    You need to add a line like that:
    session.save_path = "/tmp"

    Then restart the apache and load again the php information page.
    Make sure the session.save_path attribute had been updated accordingly.

    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 7636-5859
    e-mail: andre@lampadaglobal.com

    Lampada Global delivers offshore software development and support services to customers around the world.
    Lampada is proud to be a SugarCRM Gold Partner, revolutionizing Customer Relationship Management.

    I DO NOT answer questions through PM and Email. If you need some help post your question into SugarForum.

  5. #5
    directory52 is offline Member
    Join Date
    Oct 2009
    Posts
    5

    Default Re: Errors on installation

    Thanks for the reply. After doing those updates, I get these errors on the perform setup part:

    Creating Sugar configuration file (config.php)

    Creating Sugar application tables, audit tables and relationship metadata
    Creating the database crm on salesintranet.directory52.net...
    Warning: mysql_close(): supplied argument is not a valid MySQL-Link resource in /home/directn/public_html/salesintranet/crm/install/install_utils.php on line 782
    done

    Warning: require_once(modules/Contacts/Contact.php) [function.require-once]: failed to open stream: No such file or directory in /home/directn/public_html/salesintranet/crm/modules/Opportunities/Opportunity.php on line 46

    Fatal error: require_once() [function.require]: Failed opening required 'modules/Contacts/Contact.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/directn/public_html/salesintranet/crm/modules/Opportunities/Opportunity.php on line 46

    Warning: mysql_connect() [function.mysql-connect]: Host 'zoom.directory52.biz' is not allowed to connect to this MySQL server in /home/directn/public_html/salesintranet/crm/include/database/MysqlManager.php on line 467
    Could not connect to server salesintranet.directory52.net as directn_crm.Host 'zoom.directory52.biz' is not allowed to connect to this MySQL server

    What could be the issue now? Thanks again!

  6. #6
    directory52 is offline Member
    Join Date
    Oct 2009
    Posts
    5

    Default Re: Errors on installation

    I corrected the last issue somehow but now I have this:

    Fatal error: Allowed memory size of 41943040 bytes exhausted (tried to allocate 14 bytes) in /home/directn/public_html/salesintranet/crm/include/Sugar_Smarty.php on line 58

    Any suggestions? thanks again!

  7. #7
    Angel's Avatar
    Angel is offline Sugar Community Member
    Join Date
    Jul 2005
    Location
    Los Angeles
    Posts
    4,813

    Default Re: Errors on installation

    Take a look at your PHP.INI and make sure the memory_limit setting is set to something higher than 40M.

    Don't forget to restart your web service if you do need to adjust your PHP.INI.
    Regards,

    Angel Magaña
    Co-Author: Implementing SugarCRM 5.x (Packt Publishing -- Sept. 2010)
    Blog: http://cheleguanaco.blogspot.com.
    Twitter: @cheleguanaco.

    ________
    | Projects: |_____________________________________
    |
    | CandyWrapper (.NET Wrapper for SugarCRM SOAP API). Source now available on GitHub!
    | GoldMine to SugarCRM Express Conversion. Latest: 1.0.1.7 (Nov. 3, 2009)
    | CRM SkyDialer (Skype Integration). Latest: 1.0.2 (Feb. 17, 2010)
    | Round Robin Leads Assignment
    | Phone Number Formatter
    | CaseTwit (Twitter Integration)
    ______________________________________________

  8. #8
    directory52 is offline Member
    Join Date
    Oct 2009
    Posts
    5

    Default Re: Errors on installation

    Hello,
    Thanks for your response. before I got your response, my server had a glitch. I will try setting my memory higher if need be. I have a new problem. I have different errors, I've not seen before.

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp1.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp1.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp1.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp1.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp1.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp1.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp1_yui.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp1_yui.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp1_yui.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp1_yui.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp1_yui.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp1_yui.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp1_yui.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp1_yui.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp1_yui.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp_yui_ext.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp_yui_ext.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp_yui_ext.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp_yui_ext.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp_yui2.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp_yui2.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp_overlib.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp_overlib.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp_ytree.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp_ytree.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    Warning: fopen(/home/directn/public_html/salesintranet/crm/include/javascript/sugar_grp_ytree.js) [function.fopen]: failed to open stream: Permission denied in /home/directn/public_html/salesintranet/crm/include/utils/sugar_file_utils.php on line 103

    This is on the index.php prior to me hitting the next button to set up the configuration. I did change all of the necessary permission, or so I thought. Can you please help? THANKS A MILLION!

  9. #9
    Angel's Avatar
    Angel is offline Sugar Community Member
    Join Date
    Jul 2005
    Location
    Los Angeles
    Posts
    4,813

    Default Re: Errors on installation

    These are all errors due to permissions problems as well. The web server is not able to read the referenced files.
    Regards,

    Angel Magaña
    Co-Author: Implementing SugarCRM 5.x (Packt Publishing -- Sept. 2010)
    Blog: http://cheleguanaco.blogspot.com.
    Twitter: @cheleguanaco.

    ________
    | Projects: |_____________________________________
    |
    | CandyWrapper (.NET Wrapper for SugarCRM SOAP API). Source now available on GitHub!
    | GoldMine to SugarCRM Express Conversion. Latest: 1.0.1.7 (Nov. 3, 2009)
    | CRM SkyDialer (Skype Integration). Latest: 1.0.2 (Feb. 17, 2010)
    | Round Robin Leads Assignment
    | Phone Number Formatter
    | CaseTwit (Twitter Integration)
    ______________________________________________

  10. #10
    carlosferrandis is offline Junior Member
    Join Date
    Oct 2009
    Posts
    4

    Default Re: Errors on installation

    Haya everyone

    I copied the whole fresh installation files into one folder on my server to try to install sugarcrm, them I've got the following error:

    http://mysite/crm/install.php

    Parse error: syntax error, unexpected $end in /home/mysite1/public_html/crm/include/pclzip/pclzip.lib.php on line 2884

    any information or direction will be much appreciated.

    carlos

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Errors After Installation Ver 5.2
    By tackyminds in forum Installation and Upgrade Help
    Replies: 10
    Last Post: 2009-06-15, 03:05 PM
  2. Errors after the Installation
    By stargroup in forum Installation and Upgrade Help
    Replies: 2
    Last Post: 2008-12-17, 09:34 AM
  3. Installation errors
    By doubleone in forum Installation and Upgrade Help
    Replies: 5
    Last Post: 2008-02-23, 04:28 PM
  4. Errors after installation...
    By davidtoohey in forum Installation and Upgrade Help
    Replies: 0
    Last Post: 2006-11-22, 07:25 PM
  5. many errors after installation
    By Maurice in forum Help
    Replies: 9
    Last Post: 2005-05-09, 12:01 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •