+ Reply to Thread (include dating software, release, and patch number!)
Results 1 to 5 of 5

Thread: install http-500 error 6.1.4

  1. #1

    Join Date
    Dec 2008
    Posts
    4

    Unhappy install http-500 error 6.1.4

    Hello all,

    Im surprised that I get this error and that it is still not fixed. How can someone install this script properly?

    I downloaded the package and upload it all to my root folder.
    I did everything in the install.txt I make all permissions to 777 of the folders and all the files to 666.

    Its a linux server and register_globals are off. I tried to delete the second line in the .htaccess files in the install folder.
    I tried to delete both .htaccess files, because I thought it was mod_rewrite related.


    I tried all of these things, but still gives me the same http-500 request.

    I can access the exec.php just fine.

    On my windows machine locally everything works fine.

    Please help me

    Thanks

    Danny

  2. #2
    Administrator Smoge's Avatar
    Join Date
    Mar 2005
    Posts
    6,642
    Blog Entries
    5

    Default

    Quote Originally Posted by dannyman12345 View Post
    http-500 request.
    You are perhaps running phpSUexec on your server... if so, your max permissions can be 755, not 777.

    You need to check with your hosting company, ask them if they run phpSuExec.

    If they are - set your permissions as needed (max 755), and edit in the /install/install.php the two lines that check if permissions are 777 to always return true.

    Code:
    function isFullAccessible($filename)
    {
    	clearstatcache();
    	$perms = fileperms($filename);
    	return ($perms & 0x0004 && $perms & 0x0002 && $perms & 0x0001 && !($perms & 0x0200)) ? true : false;
    }
    
    function isRWAccessible($filename)
    {
    	clearstatcache();
    	$perms = fileperms($filename);
    	return ($perms & 0x0004 && $perms & 0x0002) ? true : false;
    }
    to

    Code:
    function isFullAccessible($filename)
    {
    	clearstatcache();
    	$perms = fileperms($filename);
    	return true;
    }
    
    function isRWAccessible($filename)
    {
    	clearstatcache();
    	$perms = fileperms($filename);
    	return true;
    }
    Smoge
    ModMySite Administrator

    Problems? Questions? Need modifications or other help with your site?

    Open A Ticket , Send Us An Email Or Give Us A Telephone Call +1 518-632-4152.

  3. #3

    Join Date
    Dec 2008
    Posts
    4

    Default

    Thanks for your message.

    You probably mean change the file install/index.php instead in install/install.php which does not exisit in my directory.

    I see that the module mod_suexec is loaded. For more information please check: phpinfo()

    I changed the index.php file and the chmod to 755 of all files and dirs.

    Its still not working.

    Regards

    Danny
    Last edited by dannyman12345; 12-29-2008 at 11:38 PM.

  4. #4
    Administrator Smoge's Avatar
    Join Date
    Mar 2005
    Posts
    6,642
    Blog Entries
    5

    Default

    Quote Originally Posted by dannyman12345 View Post
    You probably mean change the file install/index.php instead in install/install.php which does not exisit in my directory.
    Right /install/index.php

    I changed the index.php file and the chmod to 755 of all files and dirs.

    Its still not working.
    With phpSuExec, the files / dirs need under public_html to be owned by the user apache is running under for that domain.

    If you have problems with this - your hosting company should be able to fix it in a matter of minutes.

    Also, check your apache error_log for details.

    Smoge
    ModMySite Administrator

    Problems? Questions? Need modifications or other help with your site?

    Open A Ticket , Send Us An Email Or Give Us A Telephone Call +1 518-632-4152.

  5. #5

    Join Date
    Dec 2008
    Posts
    4

    Default

    Thanks again,

    But Why don't I have the same problems with other OS scripts on the same server?

    Can I put phpSuExec off with htaccess?

    Isnt there another way to install it manually? What if i import the sql with phpmyadmin am I done as well?

    I did ask my hoster and according to him, phpSuExec is not used, while I see on loaded modules: mod_suexec is loaded. But according to my hoster it is loaded, but nothing is done with it.

    Now I see in the server log:

    PHP Fatal error: Call to undefined function mb_internal_encoding() in /home/path/www/install/index.php on line 541

    Do you know what the problem is?

    Thanks





    Danny
    Last edited by dannyman12345; 12-30-2008 at 06:18 AM. Reason: new information

+ Reply to Thread (include dating software, release, and patch number!)

Thread Information

Users Browsing this Thread

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

     

Similar Threads

  1. HTTP 500 Internal Server Error (PHP Fatal error)
    By Nitrofish in forum Boonex Dolphin 7
    Replies: 3
    Last Post: 04-28-2010, 09:29 AM
  2. install error dolphin 6.00
    By boifromoz in forum Dolphin General Discussion v6.00 and above
    Replies: 1
    Last Post: 09-10-2007, 06:39 AM
  3. Error on New Install
    By Diveanx in forum General Troubleshooting
    Replies: 3
    Last Post: 03-13-2006, 01:00 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