stuck at step 1 'INSTL_INSTALLATION'

Joomla versions 2.5, 1.7 and 1.6 are all end-of-life since December 31st 2014 and are no longer supported. Please use Joomla 3.x instead.

Moderator: General Support Moderators

Forum rules
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.
Locked
User avatar
carsten888
Joomla! Ace
Joomla! Ace
Posts: 1224
Joined: Sat Feb 11, 2006 8:32 am
Contact:

stuck at step 1 'INSTL_INSTALLATION'

Post by carsten888 » Fri Feb 11, 2011 7:20 pm

I uploaded 1.6 stable and opened the installer. All language strings show untranslated and the button 'jnext' gives a javascript error.

I wondered if I missed something in the upload so uploaded everything again, with same result.

I installed the same 1.6 package 10-20 times on my WAMP without any problem, but not online until now.
http://www.pages-and-items.com my extensions:
User-Private-Page, Redirect-on-Login, Admin-Help-Pages, Dynamic-Menu-Links, Admin-Menu-Manager, plugin load module in article, plugin pure css tooltip and more...

User avatar
den Bart
Joomla! Intern
Joomla! Intern
Posts: 80
Joined: Sat Sep 03, 2005 10:58 am
Location: Brugge, Belgium
Contact:

Re: stuck at step 1 'INSTL_INSTALLATION'

Post by den Bart » Sat Feb 12, 2011 6:20 pm

Same problem with me. The frontend and the backend have the same problem. But I don't know how to solve it ...
den Bart

zonnehart.be
katydebock.com
calleeuw.be

User avatar
kenmcd
Joomla! Champion
Joomla! Champion
Posts: 5672
Joined: Thu Aug 18, 2005 2:09 am
Location: California
Contact:

Re: stuck at step 1 'INSTL_INSTALLATION'

Post by kenmcd » Tue Feb 15, 2011 8:13 am

.
This issue may be caused by your host disabling certain PHP functions required by Joomla 1.6.
In J1.6 the language files now rely on the parse_ini_file function (or parse_ini_string in PHP 5.3+).

You can check to see if the functions are disabled by looking at PHP Information (phpinfo).
In the Core section there is a disable_functions line.
If those functions are listed there, you have an issue which you need to resolve with your host.

There are actually four PHP functions which if disabled can be a problem:
- parse_ini_file
- parse_ini_string
- json_encode
- json_decode

You can see more background information here:
[#20613] Missing parse_ini_file, parse_ini-string, json_encode or json_decode cause show-stopper behaviour
http://joomlacode.org/gf/project/joomla ... m_id=20613

An excerpt from that tracker item:
If the functions parse_ini_file (PHP 5.2) or parse_ini_string (PHP 5.3) are disabled,
the user experiences untranslated screens throughout the whole Joomla! experience, starting with its installation.
Many hosts mistakenly disable them on false pretexts regarding security, probably confusing them with ini_set().
This also accounts for the elusive "untranslated strings during installation" issue reports received by various unofficial channels (e.g. Twitter) from users attempting to install Joomla! 1.6.b1.
.
██ LibreTraining

User avatar
carsten888
Joomla! Ace
Joomla! Ace
Posts: 1224
Joined: Sat Feb 11, 2006 8:32 am
Contact:

Re: stuck at step 1 'INSTL_INSTALLATION'

Post by carsten888 » Tue Feb 15, 2011 8:27 am

Thank you. that is helpfull info.
http://www.pages-and-items.com my extensions:
User-Private-Page, Redirect-on-Login, Admin-Help-Pages, Dynamic-Menu-Links, Admin-Menu-Manager, plugin load module in article, plugin pure css tooltip and more...

User avatar
den Bart
Joomla! Intern
Joomla! Intern
Posts: 80
Joined: Sat Sep 03, 2005 10:58 am
Location: Brugge, Belgium
Contact:

Re: stuck at step 1 'INSTL_INSTALLATION'

Post by den Bart » Tue Feb 15, 2011 7:24 pm

Thank you for the help.
The COM_ADMIN_PHP_INFORMATION shows "disable_functions no value no value", so it seems to be an other problem.
den Bart

zonnehart.be
katydebock.com
calleeuw.be

User avatar
kenmcd
Joomla! Champion
Joomla! Champion
Posts: 5672
Joined: Thu Aug 18, 2005 2:09 am
Location: California
Contact:

Re: stuck at step 1 'INSTL_INSTALLATION'

Post by kenmcd » Wed Feb 16, 2011 5:52 am

.
That makes me wonder if this an issue with ModSecurity (mod_security).
Something is blocking access to the language INI files.
There are cases where ModSecurity has been an issue with INI files.

For testing that theory, you could temporarily disable mod_security.
Some website control panels have a setting called "Enhanced Web Security" (or similar).
That setting could be used to toggle ModSecurity on and off.
It also may be possible to disable ModSecurity in the .htaccess file.
Near the top of the .htaccess file add:

Code: Select all

SecFilterEngine Off
Note that turning-off ModSecurity is not the solution and should only be done for testing.
If the issue is actually caused by ModSecurity settings, the long-term fix should be in the configuration.


You could also ask your hosting service about the issue.
They may have already seen this issue before and know the solution.
.
██ LibreTraining

User avatar
carsten888
Joomla! Ace
Joomla! Ace
Posts: 1224
Joined: Sat Feb 11, 2006 8:32 am
Contact:

Re: stuck at step 1 'INSTL_INSTALLATION'

Post by carsten888 » Wed Feb 16, 2011 6:46 am

if this an issue with ModSecurity (mod_security).
Something is blocking access to the language INI files.
I tried this on a server where I got a Jooml 1.5 running without lang problems. In a subdirectory I tried to install Joomla 1.6 with the language problem. So problems with langs in 1.6 and NO problem with langs in 1.5 on the exact same server with the same config.
http://www.pages-and-items.com my extensions:
User-Private-Page, Redirect-on-Login, Admin-Help-Pages, Dynamic-Menu-Links, Admin-Menu-Manager, plugin load module in article, plugin pure css tooltip and more...

User avatar
kenmcd
Joomla! Champion
Joomla! Champion
Posts: 5672
Joined: Thu Aug 18, 2005 2:09 am
Location: California
Contact:

Re: stuck at step 1 'INSTL_INSTALLATION'

Post by kenmcd » Wed Feb 16, 2011 7:18 am

.
It is not just the access of an INI file, it how those files are accessed in J1.6.
That has changed in J1.6.
If the required PHP functions are available, then the "blockage" is coming from somewhere else.
So my next guess is some ModSecurity settings are perhaps too aggressive.

I have seen an issue where a standard ModSecurity rule blocked access to an MP3 file simply because the URL to the player and MP3 was constructed in a particular way.
Disable that one ModSecurity rule and the MP3 played fine.

So that is why my guess is it could be an issue with a ModSecurity setting.

p.s. Have you looked in the log files to see if anything there can shed some light on this?
.
██ LibreTraining


Locked

Return to “Installation Joomla! 2.5”