2003-05-22 14:12:53 +02:00
< ? php
2004-02-05 15:28:02 +01:00
$title = 'Upload Image or File' ;
2003-05-22 14:12:53 +02:00
2004-02-05 15:28:02 +01:00
require_once ( 'admin-header.php' );
2003-05-22 14:12:53 +02:00
if ( $user_level == 0 ) //Checks to see if user has logged in
2004-02-05 15:28:02 +01:00
die ( " Cheatin' uh ? " );
2003-05-22 14:12:53 +02:00
2004-03-01 07:13:32 +01:00
if ( ! get_settings ( 'use_fileupload' )) //Checks if file upload is enabled in the config
2004-02-05 15:28:02 +01:00
die ( " The admin disabled this function " );
2003-05-22 14:12:53 +02:00
2004-04-12 19:25:59 +02:00
$allowed_types = explode ( ' ' , trim ( strtolower ( get_settings ( 'fileupload_allowedtypes' ))));
2003-10-17 21:26:05 +02:00
2004-02-05 15:28:02 +01:00
if ( $HTTP_POST_VARS [ 'submit' ]) {
$action = 'upload' ;
} else {
$action = '' ;
2003-05-22 14:12:53 +02:00
}
2004-03-01 07:13:32 +01:00
if ( ! is_writable ( get_settings ( 'fileupload_realpath' )))
2004-02-05 15:28:02 +01:00
$action = 'not-writable' ;
2003-10-17 21:26:05 +02:00
?>
2003-05-22 14:12:53 +02:00
2004-02-05 15:28:02 +01:00
< div class = " wrap " >
2003-05-22 14:12:53 +02:00
2004-02-05 15:28:02 +01:00
< ? php
switch ( $action ) {
case 'not-writable' :
2003-05-22 14:12:53 +02:00
?>
2004-03-05 08:26:38 +01:00
< p > It doesn 't look like you can use the file upload feature at this time because the directory you have specified (<code><?php echo get_settings(' fileupload_realpath '); ?></code>) doesn' t appear to be writable by WordPress . Check the permissions on the directory and for typos .</ p >
2003-05-22 14:12:53 +02:00
2004-02-05 15:28:02 +01:00
< ? php
break ;
case '' :
foreach ( $allowed_types as $type ) {
$type_tags [] = " <code> $type </code> " ;
}
$i = implode ( ', ' , $type_tags );
?>
2004-03-16 15:41:39 +01:00
< p > You can upload files with the extension < ? php echo $i ?> as long as they are no larger than <?php echo get_settings('fileupload_maxk'); ?> <abbr title="Kilobytes">KB</abbr>. If you’re an admin you can configure these values under <a href="options.php">options</a>.</p>
2004-02-05 15:28:02 +01:00
< form action = " upload.php " method = " post " enctype = " multipart/form-data " >
< p >
< label for = " img1 " > File :</ label >
< br />
2004-03-01 07:13:32 +01:00
< input type = " hidden " name = " MAX_FILE_SIZE " value = " <?php echo get_settings('fileupload_maxk') * 1024 ?> " />
2004-02-05 15:28:02 +01:00
< input type = " file " name = " img1 " id = " img1 " size = " 35 " class = " uploadform " /></ p >
< p >
< label for = " imgdesc " > Description :</ label >< br />
< input type = " text " name = " imgdesc " id = " imgdesc " size = " 30 " class = " uploadform " />
</ p >
< p > Create a thumbnail ? </ p >
< p >
< label for = " thumbsize_no " >
< input type = " radio " name = " thumbsize " value = " none " checked = " checked " id = " thumbsize_no " />
No thanks </ label >
< br />
< label for = " thumbsize_small " >
< input type = " radio " name = " thumbsize " value = " small " id = " thumbsize_small " />
Small ( 200 px largest side ) </ label >
< br />
< label for = " thumbsize_large " >
< input type = " radio " name = " thumbsize " value = " large " id = " thumbsize_large " />
Large ( 400 px largest side ) </ label >
< br />
< label for = " thumbsize_custom " >
< input type = " radio " name = " thumbsize " value = " custom " id = " thumbsize_custom " />
Custom size </ label >
:
< input type = " text " name = " imgthumbsizecustom " size = " 4 " />
px ( largest side ) </ p >
< p >< input type = " submit " name = " submit " value = " Upload File " /></ p >
</ form >
</ div >< ? php
break ;
case 'upload' :
?>
2003-05-22 14:12:53 +02:00
2004-02-05 15:28:02 +01:00
< ? php //Makes sure they choose a file
2003-05-22 14:12:53 +02:00
//print_r($HTTP_POST_FILES);
//die();
2004-02-05 15:28:02 +01:00
$imgalt = ( isset ( $HTTP_POST_VARS [ 'imgalt' ])) ? $HTTP_POST_VARS [ 'imgalt' ] : $imgalt ;
$img1_name = ( strlen ( $imgalt )) ? $HTTP_POST_VARS [ 'imgalt' ] : $HTTP_POST_FILES [ 'img1' ][ 'name' ];
$img1_type = ( strlen ( $imgalt )) ? $HTTP_POST_VARS [ 'img1_type' ] : $HTTP_POST_FILES [ 'img1' ][ 'type' ];
$imgdesc = str_replace ( '"' , '&quot;' , $HTTP_POST_VARS [ 'imgdesc' ]);
$imgtype = explode ( " . " , $img1_name );
2004-04-12 19:25:59 +02:00
$imgtype = strtolower ( $imgtype [ count ( $imgtype ) - 1 ]);
2004-02-05 15:28:02 +01:00
if ( in_array ( $imgtype , $allowed_types ) == false ) {
die ( " File $img1_name of type $imgtype is not allowed. " );
}
if ( strlen ( $imgalt )) {
2004-03-01 07:13:32 +01:00
$pathtofile = get_settings ( 'fileupload_realpath' ) . " / " . $imgalt ;
2004-02-05 15:28:02 +01:00
$img1 = $HTTP_POST_VARS [ 'img1' ];
} else {
2004-03-01 07:13:32 +01:00
$pathtofile = get_settings ( 'fileupload_realpath' ) . " / " . $img1_name ;
2004-02-05 15:28:02 +01:00
$img1 = $HTTP_POST_FILES [ 'img1' ][ 'tmp_name' ];
}
// makes sure not to upload duplicates, rename duplicates
$i = 1 ;
$pathtofile2 = $pathtofile ;
$tmppathtofile = $pathtofile2 ;
$img2_name = $img1_name ;
while ( file_exists ( $pathtofile2 )) {
$pos = strpos ( $tmppathtofile , '.' . trim ( $imgtype ));
$pathtofile_start = substr ( $tmppathtofile , 0 , $pos );
$pathtofile2 = $pathtofile_start . '_' . zeroise ( $i ++ , 2 ) . '.' . trim ( $imgtype );
$img2_name = explode ( '/' , $pathtofile2 );
$img2_name = $img2_name [ count ( $img2_name ) - 1 ];
}
if ( file_exists ( $pathtofile ) && ! strlen ( $imgalt )) {
2004-03-01 07:13:32 +01:00
$i = explode ( ' ' , get_settings ( 'fileupload_allowedtypes' ));
$i = implode ( ', ' , array_slice ( $i , 1 , count ( $i ) - 2 ));
2004-02-05 15:28:02 +01:00
$moved = move_uploaded_file ( $img1 , $pathtofile2 );
// if move_uploaded_file() fails, try copy()
if ( ! $moved ) {
$moved = copy ( $img1 , $pathtofile2 );
}
if ( ! $moved ) {
die ( " Couldn't Upload Your File to $pathtofile2 . " );
} else {
2004-04-18 09:10:44 +02:00
chmod ( $pathtofile2 , 0666 );
2004-02-05 15:28:02 +01:00
@ unlink ( $img1 );
}
2004-04-18 09:10:44 +02:00
//
2004-02-05 15:28:02 +01:00
// duplicate-renaming function contributed by Gary Lawrence Murphy
?>
< p >< strong > Duplicate File ? </ strong ></ p >
< p >< b >< em > The filename '<?php echo $img1_name; ?>' already exists !</ em ></ b ></ p >
< p > filename '<?php echo $img1; ?>' moved to '<?php echo "$pathtofile2 - $img2_name"; ?>' </ p >
< p > Confirm or rename :</ p >
< form action = " upload.php " method = " post " enctype = " multipart/form-data " >
2004-03-01 07:13:32 +01:00
< input type = " hidden " name = " MAX_FILE_SIZE " value = " <?php echo get_settings('fileupload_maxk') *1024 ?> " />
2004-02-05 15:28:02 +01:00
< input type = " hidden " name = " img1_type " value = " <?php echo $img1_type ;?> " />
< input type = " hidden " name = " img1_name " value = " <?php echo $img2_name ;?> " />
< input type = " hidden " name = " img1_size " value = " <?php echo $img1_size ;?> " />
< input type = " hidden " name = " img1 " value = " <?php echo $pathtofile2 ;?> " />
< input type = " hidden " name = " thumbsize " value = " <?php echo $_REQUEST['thumbsize'] ;?> " />
< input type = " hidden " name = " imgthumbsizecustom " value = " <?php echo $_REQUEST['imgthumbsizecustom'] ;?> " />
Alternate name :< br />< input type = " text " name = " imgalt " size = " 30 " class = " uploadform " value = " <?php echo $img2_name ;?> " />< br />
< br />
Description :< br />< input type = " text " name = " imgdesc " size = " 30 " class = " uploadform " value = " <?php echo $imgdesc ;?> " />
< br />
< input type = " submit " name = " submit " value = " Rename " class = " search " />
</ form >
</ div >
< ? php
require ( 'admin-footer.php' );
die ();
}
if ( ! strlen ( $imgalt )) {
@ $moved = move_uploaded_file ( $img1 , $pathtofile ); //Path to your images directory, chmod the dir to 777
// move_uploaded_file() can fail if open_basedir in PHP.INI doesn't
// include your tmp directory. Try copy instead?
2004-04-18 09:10:44 +02:00
if ( ! $moved ) {
2004-02-05 15:28:02 +01:00
$moved = copy ( $img1 , $pathtofile );
}
// Still couldn't get it. Give up.
if ( ! moved ) {
die ( " Couldn't Upload Your File to $pathtofile . " );
} else {
2004-04-18 09:10:44 +02:00
chmod ( $pathtofile , 0666 );
2004-02-05 15:28:02 +01:00
@ unlink ( $img1 );
}
} else {
rename ( $img1 , $pathtofile )
or die ( " Couldn't Upload Your File to $pathtofile . " );
}
if ( $HTTP_POST_VARS [ 'thumbsize' ] != 'none' ) {
if ( $HTTP_POST_VARS [ 'thumbsize' ] == 'small' ) {
$max_side = 200 ;
}
elseif ( $HTTP_POST_VARS [ 'thumbsize' ] == 'large' ) {
$max_side = 400 ;
}
elseif ( $HTTP_POST_VARS [ 'thumbsize' ] == 'custom' ) {
$max_side = $HTTP_POST_VARS [ 'imgthumbsizecustom' ];
}
$result = wp_create_thumbnail ( $pathtofile , $max_side , NULL );
if ( $result != 1 ) {
print $result ;
}
}
2003-05-22 14:12:53 +02:00
if ( ereg ( 'image/' , $img1_type )) {
2004-03-01 07:13:32 +01:00
$piece_of_code = " <img src=" " . get_settings ( 'fileupload_url' ) . " / $img1_name " alt=" $imgdesc " /> " ;
2003-05-22 14:12:53 +02:00
} else {
2004-03-01 07:13:32 +01:00
$piece_of_code = " <a href=" " . get_settings ( 'fileupload_url' ) . " / $img1_name " title=" $imgdesc " /> $imgdesc </a> " ;
2003-05-22 14:12:53 +02:00
};
?>
2004-02-05 15:28:02 +01:00
< h3 > File uploaded !</ h3 >
< p > Your file < code >< ? php echo $img1_name ; ?> </code> was uploaded successfully !</p>
< p > Here & #8217;s the code to display it:</p>
< p >< code >< ? php echo $piece_of_code ; ?> </code>
2003-05-22 14:12:53 +02:00
</ p >
< p >< strong > Image Details </ strong >: < br />
2004-02-05 15:28:02 +01:00
Name :
< ? php echo $img1_name ; ?>
2003-05-22 14:12:53 +02:00
< br />
2004-02-05 15:28:02 +01:00
Size :
< ? php echo round ( $img1_size / 1024 , 2 ); ?> <abbr title="Kilobyte">KB</abbr><br />
Type :
< ? php echo $img1_type ; ?>
2003-05-22 14:12:53 +02:00
</ p >
2004-02-05 15:28:02 +01:00
</ div >
2004-04-18 09:10:44 +02:00
< p >< a href = " upload.php " > Upload another </ a >.</ p >
2004-02-05 15:28:02 +01:00
< ? php
break ;
}
include ( 'admin-footer.php' );
2004-03-05 08:26:38 +01:00
?>