Take the 2-minute tour ×
Drupal Answers is a question and answer site for Drupal developers and administrators. It's 100% free, no registration required.

I have installed drupal 8 .

During installation i am getting the below error

Drupal requires you to enable the PHP extensions in the following list (see the <a href="http://drupal.org/requirements">system requirements page</a> for more information):<div class="item-list"><ul><li>fileinfo</li></ul></div>

Which i have solved by uncommenting "extension=php_fileinfo.dll" in php.ini file.

But after successfully installation i am getting connection reset issue like url is not found.

I know d8 is not stable version.

Still some users working/posting issue.

How they able to work on it?

Please suggest is there any alternative link to download d8.

Thank you.

share|improve this question

2 Answers 2

Still some users working/posting issue. How they able to work on it?

They have set up a working web server, installed Drupal core files and a database, and configured a vhost for it. Once you've got your web server working you'll be able to work on it too. That should be your focus; check your web server error logs and fix everything that it says is wrong.

is there any alternative link to download d8.

There might be, but why would you want to get it from somewhere other than the official Drupal repository? You wouldn't be able to trust that it was up-to-date or that integrity had been maintained with the official release (without manually checking, obviously, but that seems pointless).

share|improve this answer
    
thanks for your suggestion. Do you mean by this is my local server setting issue? if i can solve that then i can work on d8. –  Tushar Sep 29 at 14:35
1  
Almost certainly. I've been using D8 for over a year on several machines, and I know plenty of others who have been doing the same, so there shouldn't be any problem. Looks like you're on Windows, there's a pretty in-depth guide here that may help –  Clive Sep 29 at 14:39
    
Yes you are right i am using windows and xampp. –  Tushar Sep 29 at 14:44
1  
I think the most important part of @Clive's answer is that you should check your web server error logs. –  Johnathan Elmore Sep 29 at 14:59

Make sure you are using PHP 5.4 or higher per the System Requirements.

share|improve this answer
    
It's not likely to be that; that would throw a very specific syntax error –  Clive Sep 29 at 14:48
    
I think @clive is right because i am already using PHP 5.4.4 –  Tushar Sep 29 at 14:52
    
@Clive, do you know what that specific syntax error message is? –  Johnathan Elmore Sep 29 at 14:57
2  
I do @JohnathanElmore :) "Parse error: parse error, expecting T_CONSTANT_ENCAPSED_STRING' or '('' in var\www\html\core\includes\bootstrap.inc on line 3" –  Clive Sep 29 at 14:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.