我正在使用 elfinder filemanager 来管理 laravel 中的文件。我也在使用jquery mobile。
问题是。离线文件管理器工作。网上没有。
这是我的 filemanager.php 视图的第一部分:
@extends('master')
@section('content2')
{{HTML::style('http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.14/themes/smoothness/jquery-ui.css', array('media' => 'screen'))}}
{{HTML::script('http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js', array('type' => 'text/javascript'))}}
{{HTML::script('http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.14/jquery-ui.min.js', array('type' => 'text/javascript'))}}
{{HTML::style('filemanager1/css/elfinder.min.css', array('media' => 'screen'))}}
{{HTML::script('filemanager1/js/elfinder.min.js', array('type' => 'text/javascript'))}}
<!-- Mac OS X Finder style for jQuery UI smoothness theme (OPTIONAL) -->
{{HTML::style('filemanager1/css/theme.css', array('media' => 'screen'))}}
{{HTML::script('filemanager1/js/i18n/elfinder.nl.js', array('type' => 'text/javascript'))}}
这是我在其中加载视图的 master.php 的第一部分:
<!doctype html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
{{HTML::script('//code.jquery.com/jquery-1.9.1.js', array('type' => 'text/javascript'))}}
{{HTML::script('//code.jquery.com/ui/1.10.4/jquery-ui.js', array('type' => 'text/javascript'))}}
<link rel="stylesheet" href="/resources/demos/style.css">
<?php
/// DIT WAREN DE IMPORTS voordat de agenda niet meer werkte.
//echo HTML::script('http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js', array('type' => 'text/javascript'));
//echo HTML::script('http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.14/jquery-ui.min.js', array('type' => 'text/javascript'));
//echo HTML::script('http://code.jquery.com/jquery-1.9.1.js', array('type' => 'text/javascript'));
//echo HTML::script('http://code.jquery.com/ui/1.10.3/jquery-ui.js', array('type' => 'text/javascript'));
?>
<!-- Normal -->
{{HTML::script(asset('js/bootstrap.js'), array('type' => 'text/javascript'))}}
{{HTML::script(asset('js/expandingbox.js'), array('type' => 'text/javascript'))}}
{{HTML::script(asset('js/jscolor/jscolor.js'), array('type' => 'text/javascript'))}}
{{HTML::style(asset('css/bootstrap.css'), array('media' => 'screen'))}}
</head>
同样离线我试图将我所有的样式和脚本放在我的主文件中。然后文件管理器也停止工作。
这部分我稍后添加
我在检查员中看到了错误。我的链接之一:
http://dev-certificering.safetyanalyse.nl/public/laravel4_test2/public/filemanager1/css/elfinder.min.css
但我似乎无法在线更改任何内容。在我看来,我将我的一个 elfinder 导入更改为:
{{HTML::script('filemanager1/js/i18n/elfinder.nl.js??', array('type' => 'text/javascript'))}}
当我现在打开检查器类型 ctrl-u 时,我一直看到旧页面。从几天前开始。我尝试清除 chrome 中的现金和 cookie。还尝试了资源管理器。
他们都向我展示了旧的 laravel 进口。laravel 有现金吗?