Your requirements could not be resolved to an installable set of packages.
Problem 1 - This package requires php ^7.1.3 but your PHP version (7.0.14) does not satisfy that requirement. Problem 2 - laravel/framework v5.7.9 requires php ^7.1.3 -> your PHP version (7.0.14) does not satisfy that requirement. и т.д.
Но в cmd теперь ругается на отсутствие кучи библиотек
PHP Warning: PHP Startup: Unable to load dynamic library 'php_mbstring.dll' (tried: w:/modules/php/PHP-7.2-x64/ext/php_mbstring.dll (▒▒ ▒▒▒▒▒▒ ▒▒▒▒▒▒▒▒▒ ▒▒▒▒▒▒. ), w:/modules/php/PHP-7.2-x64/ext/php_php_mbstring.dll.dll (▒▒ ▒▒▒▒▒▒ ▒▒▒▒▒▒▒▒▒ ▒▒▒▒▒▒. )) in Unknown on line 0 PHP Warning: PHP Startup: Unable to load dynamic library 'php_bz2.dll' (tried: w:/modules/php/PHP-7.2-x64/ext/php_bz2.dll (▒▒ ▒▒▒▒▒▒ ▒▒▒▒▒▒▒▒▒ ▒▒▒▒▒▒. ), w:/modules/php/PHP-7.2-x64/ext/php_php_bz2.dll.dll (▒▒ ▒▒▒▒▒▒ ▒▒▒▒▒▒▒▒▒ ▒▒▒▒▒▒. )) in Unknown on line 0 PHP Warning: PHP Startup: Unable to load dynamic library 'php_curl.dll' (tried: w:/modules/php/PHP-7.2-x64/ext/php_curl.dll (▒▒ ▒▒▒▒▒▒ ▒▒▒▒▒▒▒▒▒ ▒▒▒▒▒▒. ), w:/modules/php/PHP-7.2-x64/ext/php_php_curl.dll.dll (▒▒ ▒▒▒▒▒▒ ▒▒
[Composer\Exception\NoSslException]
The openssl extension is required for SSL/TLS protection but is not available. If you can not enable the openssl ex
tension, you can disable this error, at your own risk, by setting the 'disable-tls' option to true.
return $this->check($builder->latest()->get());
public function getArticles($alias = FALSE) {
$where = FALSE;
if($alias) {
// WHERE `alias` = $alias
$id = Category::select('id')->where('alias',$alias)->first()->id;
//WHERE `category_id` = $id
$where = ['category_id',$id];
}
$articles = $this->a_rep->get(['id','title','alias','created_at','img','desc','user_id','category_id','keywords','meta_desc'],FALSE,TRUE,$where);
if($articles) {
$articles->load('user','category','comments');
}
return $articles;
}
Route::group(['middleware'=>'web'],function() {
Route::match(['get','post'],'/',['uses'=>'IndexController@execute','as'=>'home']);
Route::get('/page/{alias}',['uses'=>'PageController@execute','as'=>'page']);
Route::auth();
});
Route::group([],function() {
Route::match(['get','post'],'/',['uses'=>'IndexController@execute','as'=>'home']);
Route::get('/page/{alias}',['uses'=>'PageController@execute','as'=>'page']);
Route::auth();
});
Route::group(['middleware'=>'web'],function() {
protected function mapWebRoutes(Router $router)
{
$router->group([
'namespace' => $this->namespace, 'middleware' => 'web',
], function ($router) {
require app_path('Http/routes.php');
});
}
}
Blade файл покажите,
вызов вьюхи из контроллера
Что это за дичь? Что за App\Http\Requests?
<?php
namespace App\Http\Requests;
use App\Http\Requests\Request;
class ContactRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'name'=>'required',
'email'=>'max:20|required'
];
}
public function messages()
{
return [
'name.required' => 'ПОЛЕ :attribute обязательно для заполнения',
'email.max' => 'Mаксимально допустимое количество символов - :max',
];
}
}
<script src="/catalog/view/javascript/wow.js"></script>
<?php if ($_SESSION["split"] == "wow") { ?>
<script src="/catalog/view/javascript/wow.js"></script>
<?php } ?>
const DELAY = 500;
/*код вып.только после полной загр.стр*/
$(document).ready(function() {
/*при сплит тестах выкл. анализ. внизу index.php*/
/*var wow = new WOW();
wow.init(); */
/*для выравнивания меню задаём css стиль*/
$("#menu").css("width", $(window).width() + "px");
/*адаптивность*/
$(window).on("resize", function() {
$("#menu").css("width", $(window).width() + "px");
});
/*обращаемся к ссылкам через селектор п.156. <div class="site">*/
$(".site a").fancybox({
minWidth: 900 /*ширина img в окне*/
});
/*обращаемся ко всем ссылкам за искл.тех у кот.класс order (оформить заявку)*/
$("#menu a:not(a.order)").on("click", function() {
/*вызываем методы анимации, обращ. к объект на кот.был cделан
клик (attr) кот. находится в this берём атриб. href п.42 т.к.
* есть # обращ. как к селектору -offset и измеряем длину scroll*/
$("html, body").stop().animate({
scrollTop: $($(this).attr("href")).offset().top - $("#menu").innerHeight()
}, DELAY);
});
$("#popup_close img").on("click", function() {
$("#parent_popup").hide(DELAY);
});
$(".button, .but, button wow swing, #wrapp-contact a.order").on("click", function() {
$("#parent_popup").show(DELAY);
return false; /*чтобы не было перехода по ссылке*/
});
});