need to change toggle settings of php.ini file in SSH

Discussion in 'Installation/Configuration' started by bpstyle, Jan 31, 2007.

  1. bpstyle

    bpstyle New Member

    I desperately need assistance performing some simple tasks with the settings of the PHP.ini file:

    I have a virtual/dedicated server with godaddy.com and I need to 'ENABLE' the registar_globals in the php.ini file.

    I recently restored a backed up oscommerce shopping cart which uses MySql database. The database and its tables have been restored successfully and the html files are uploaded, but when I access the shopping cart, I get this browser eror:

    FATAL ERROR: register_globals is disabled in php.ini, please enable it!

    I've tried using the SSH client, putty to go into the /bin directory to access the php.ini file, but after I enter my username successfully, putty prompts me for the password, but I cannot login because the prompt cursor does not move when I type the password....and when I type the password and hit the 'Enter' key, it simply prompts me for the password again and says access denied.

    I know for sure that I have the correct password because I am able to log into Plesk 8.0 from my internet browser and I am also able to ftp into the server with WSftp.

    I also checked with godaddy and they were able to login, but they will not go any further to asist me.

    I know this is a simple task, so it shouldn't take much for a knowledgable person to help me. I need help ASAP.

    Can anyone please come to my assistance?
     
  2. falko

    falko Super Moderator Howtoforge Staff

    That's the normal behaviour.

    Are you absolutely sure the password is correct, and that you have shell access (having FTP access doesn't mean you have shell access as well).

    If you cannot log in to your shell, you could use an .htaccess file to enable register_globals: http://www.howtoforge.com/forums/showthread.php?t=3011&highlight=register_globals+.htaccess
     
  3. Zerko

    Zerko New Member

  4. bpstyle

    bpstyle New Member

    ssh login finally good-how to toggle registar_globals

    Thanks for the replies.

    I finally got the correct password and logged in successfully.

    can you help me with the code to modify that php.ini file?:)
     
  5. sjau

    sjau Local Meanie Moderator

    well, it is not recommended turning it off globally... first try to create a .htaccess file in your webroot for that site and add this:

    Code:
    php_admin_value register_globals Off
    
     

Share This Page