You need to restart php-fpm or just the whole server depending on your usage with libcurl. For most restarting the server should fix everything.
Automatic updates are great! :D
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
cURL error 28: Resolving timed out after 2625 milliseconds (see http://curl.haxx.se/libcurl/c/libcurl-errors.html)
I am using windows 8.1 .my code is as follows:
register.blade.php
@extends('layouts.app')
@section('content')
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div class="panel panel-default">
<div class="panel-heading">Register</div>
<div class="panel-body">
<form class="form-horizontal" role="form" method="POST" action="{{ url('/site-register') }}">
{{ csrf_field() }}
<div class="form-group{{ $errors->has('name') ? ' has-error' : '' }}">
<label for="name" class="col-md-4 control-label">Name</label>
<div class="col-md-6">
<input id="name" type="text" class="form-control" name="name" value="{{ old('name') }}" required autofocus>
@if ($errors->has('name'))
<span class="help-block">
<strong>{{ $errors->first('name') }}</strong>
</span>
@endif
</div>
</div>
<div class="form-group{{ $errors->has('email') ? ' has-error' : '' }}">
<label for="email" class="col-md-4 control-label">E-Mail Address</label>
<div class="col-md-6">
<input id="email" type="email" class="form-control" name="email" value="{{ old('email') }}" required>
@if ($errors->has('email'))
<span class="help-block">
<strong>{{ $errors->first('email') }}</strong>
</span>
@endif
</div>
</div>
<div class="form-group{{ $errors->has('Team') ? ' has-error' : '' }}">
<label for="Team" class="col-md-4 control-label">Team</label>
<div class="col-md-6">
<select name="Team" class="form control">
@foreach($teams as $team)
<option value="{{ $team->Team_id }}" <?php echo ($team->Team_id==2)? 'selected':'';?> >{{ $team->Team }}</option>
@endforeach
</select>
@if ($errors->has('Team'))
<span class="help-block">
<strong>{{ $errors->first('Team') }}</strong>
</span>
@endif
</div>
</div>
<div class="form-group{{ $errors->has('Vendor') ? ' has-error' : '' }}">
<label for="Vendor" class="col-md-4 control-label">Vendor</label>
<div class="col-md-6">
<select name="Vendor" class="form control">
@foreach($vendors as $vendor)
<option value="{{ $vendor->Vendor_id }}" <?php echo ($vendor->Vendor_id==2)? 'selected':'';?> >{{ $vendor->Vendor }}</option>
@endforeach
</select>
@if ($errors->has('Vendor'))
<span class="help-block">
<strong>{{ $errors->first('Vendor') }}</strong>
</span>
@endif
</div>
</div>
<div class="form-group{{ $errors->has('password') ? ' has-error' : '' }}">
<label for="password" class="col-md-4 control-label">Password</label>
<div class="col-md-6">
<input id="password" type="password" class="form-control" name="password" required>
@if ($errors->has('password'))
<span class="help-block">
<strong>{{ $errors->first('password') }}</strong>
</span>
@endif
</div>
</div>
<div class="form-group">
<label for="password-confirm" class="col-md-4 control-label">Confirm Password</label>
<div class="col-md-6">
<input id="password-confirm" type="password" class="form-control" name="password_confirmation" required>
</div>
</div>
<div class="form-group">
<label class="col-md-4 control-label">Captcha</label>
<div class="form-group{{ $errors->has('g-recaptcha-response') ? ' has-error' : '' }}">
<div class="col-md-6">
@if ($errors->has('g-recaptcha-response'))
<span class="help-block">
<strong>{{ $errors->first('g-recaptcha-response') }}</strong>
</span>
@endif
</div>
</div>
<div class="form-group">
<div class="col-md-6 col-md-offset-4">
<button type="submit" class="btn btn-primary">
Register
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
@endsection
Yipee i solved the error by just changing the url to
<form class="form-horizontal" role="form" method="POST" action="{{ url('/register') }}">
```in register.blade.php
Please or to participate in this conversation.