Ich hatte dieses Plugin schon einmal benutzt, aber jetzt, wenn ich es für ein anderes Projekt verwenden möchte, funktioniert es einfach nicht, was mache ich falsch?
Hier ist der Code, den ich in meiner Root index.php Datei verwende
<html>
<head>
<link href="stackoverflow.com/uploadify/uploadify.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="/uploadify/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="/uploadify/swfobject.js"></script>
<script type="text/javascript" src="/uploadify/jquery.uploadify.v2.1.4.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#file_upload').uploadify({
'uploader' : '/uploadify/uploadify.swf',
'script' : '/uploadify/uploadify.php',
'cancelImg' : '/uploadify/cancel.png',
'folder' : '/uploads',
'auto' : true
});
});
</script>
</head>
<body>
<input id="file_upload" name="file_upload" type="file" />
</body>
</html>
und wie pro die Anweisung habe ich die folgende Datei in den uploadify Ordner in Root-Verzeichnis hier ist der Screenshot deruploadify Verzeichnis.
Was mache ich falsch?
für den Fall, dass Sie die Dokumentation des Plugins einsehen möchten, hier ist der Pfad.