您可以帮助我使用xampp在Windows 7上安装laravel 5.1吗?但是在创建项目时失败了,我已经安装了我的作曲家
错误回复
angular.module('app').run(['$rootScope','$location','security', function($rootScope, $location, security) {
// Get the current user when the application starts
// (in case they are still logged in from a previous session)
security.requestCurrentUser();
$rootScope.$on("$routeChangeStart", function (event, next, current) {
if (!security.authorize(next.access)) {
$location.path('/');
}
});
}]);
答案 0 :(得分:1)
尝试使用" - no-scripts"
运行它composer create-project laravel/laravel blog1 "5.1.*" --no-scripts
" - 无脚本"意味着它并没有在"脚本中执行任何命令"在安装所有必要的依赖项时,你的composer.json文件的一部分,所以一定要运行" php artisan key:generate" (或者在安装项目后需要从脚本部分运行的任何其他命令(如优化等) 附:一定要删除" blog1"执行此操作之前的文件夹,或重命名项目名称