2003-05-22 14:12:53 +02:00
< ? php
2003-10-25 23:14:06 +02:00
$title = " Template & file editing " ;
2003-05-22 14:12:53 +02:00
function add_magic_quotes ( $array ) {
foreach ( $array as $k => $v ) {
if ( is_array ( $v )) {
$array [ $k ] = add_magic_quotes ( $v );
} else {
$array [ $k ] = addslashes ( $v );
}
}
return $array ;
}
2004-03-30 00:43:07 +02:00
function validate_file ( $file ) {
if ( '..' == substr ( $file , 0 , 2 ))
die ( 'Sorry, can’t edit files with ".." in the name. If you are trying to edit a file in your WordPress home directory, you can just type the name of the file in.' );
if ( ':' == substr ( $file , 1 , 1 ))
die ( 'Sorry, can’t call files with their real path.' );
if ( '/' == substr ( $file , 0 , 1 ))
$file = '.' . $file ;
$file = stripslashes ( $file );
$file = str_replace ( '../' , '' , $file );
return $file ;
}
2003-05-22 14:12:53 +02:00
if ( ! get_magic_quotes_gpc ()) {
$HTTP_GET_VARS = add_magic_quotes ( $HTTP_GET_VARS );
$HTTP_POST_VARS = add_magic_quotes ( $HTTP_POST_VARS );
$HTTP_COOKIE_VARS = add_magic_quotes ( $HTTP_COOKIE_VARS );
}
2003-12-18 10:36:13 +01:00
$wpvarstoreset = array ( 'action' , 'standalone' , 'redirect' , 'profile' , 'error' , 'warning' , 'a' , 'file' );
for ( $i = 0 ; $i < count ( $wpvarstoreset ); $i += 1 ) {
$wpvar = $wpvarstoreset [ $i ];
if ( ! isset ( $$wpvar )) {
if ( empty ( $HTTP_POST_VARS [ " $wpvar " ])) {
if ( empty ( $HTTP_GET_VARS [ " $wpvar " ])) {
$$wpvar = '' ;
2003-05-22 14:12:53 +02:00
} else {
2003-12-18 10:36:13 +01:00
$$wpvar = $HTTP_GET_VARS [ " $wpvar " ];
2003-05-22 14:12:53 +02:00
}
} else {
2003-12-18 10:36:13 +01:00
$$wpvar = $HTTP_POST_VARS [ " $wpvar " ];
2003-05-22 14:12:53 +02:00
}
}
}
switch ( $action ) {
2003-05-23 02:12:22 +02:00
case 'update' :
2003-05-22 14:12:53 +02:00
2003-05-23 02:12:22 +02:00
$standalone = 1 ;
2004-01-29 06:51:29 +01:00
require_once ( " admin-header.php " );
2003-05-22 14:12:53 +02:00
if ( $user_level < 3 ) {
2004-03-01 20:55:45 +01:00
die ( '<p>You have do not have sufficient permissions to edit templates for this blog.</p>' );
2003-05-22 14:12:53 +02:00
}
2003-12-08 02:55:38 +01:00
$newcontent = stripslashes ( $HTTP_POST_VARS [ 'newcontent' ]);
$file = $HTTP_POST_VARS [ 'file' ];
2004-03-30 00:43:07 +02:00
$file = validate_file ( $file );
$real_file = '../' . $file ;
if ( is_writeable ( $real_file )) {
$f = fopen ( $real_file , 'w+' );
fwrite ( $f , $newcontent );
fclose ( $f );
header ( " Location: templates.php?file= $file &a=te " );
} else {
header ( " Location: templates.php?file= $file " );
}
2003-05-22 14:12:53 +02:00
exit ();
break ;
default :
2003-12-11 01:22:36 +01:00
require_once ( 'admin-header.php' );
2003-05-22 14:12:53 +02:00
if ( $user_level <= 3 ) {
2004-03-01 20:55:45 +01:00
die ( '<p>You have do not have sufficient permissions to edit templates for this blog.</p>' );
2003-05-22 14:12:53 +02:00
}
2003-05-23 02:12:22 +02:00
if ( '' == $file ) {
2004-02-26 17:15:48 +01:00
if ( '' != get_settings ( 'blogfilename' )) {
$file = get_settings ( 'blogfilename' );
2003-05-22 14:12:53 +02:00
} else {
2003-05-23 02:12:22 +02:00
$file = 'index.php' ;
2003-05-22 14:12:53 +02:00
}
}
2004-03-30 00:43:07 +02:00
$file = validate_file ( $file );
$real_file = '../' . $file ;
2003-05-22 14:12:53 +02:00
2004-03-30 00:43:07 +02:00
if ( ! is_file ( $real_file ))
2003-05-22 14:12:53 +02:00
$error = 1 ;
2003-12-16 03:10:52 +01:00
if (( substr ( $file , 0 , 2 ) == 'wp' ) and ( substr ( $file , - 4 , 4 ) == '.php' ) and ( $file != 'wp.php' ))
2003-05-23 02:12:22 +02:00
$warning = ' — this is a WordPress file, be careful when editing it!' ;
2003-05-22 14:12:53 +02:00
if ( ! $error ) {
2004-03-30 00:43:07 +02:00
$f = fopen ( $real_file , 'r' );
$content = fread ( $f , filesize ( $real_file ));
2003-05-22 14:12:53 +02:00
$content = htmlspecialchars ( $content );
// $content = str_replace("</textarea","</textarea",$content);
}
?>
2003-12-08 02:55:38 +01:00
< div class = " wrap " >
< ? php
echo " Editing <strong> $file </strong> $warning " ;
2003-05-23 02:12:22 +02:00
if ( 'te' == $a )
echo " <em>File edited successfully.</em> " ;
2003-05-22 14:12:53 +02:00
if ( ! $error ) {
2003-12-08 02:55:38 +01:00
?>
< form name = " template " action = " templates.php " method = " post " >
< textarea cols = " 80 " rows = " 20 " style = " width:100%; font-family: 'Courier New', Courier, monopace; font-size:small; " name = " newcontent " tabindex = " 1 " >< ? php echo $content ?> </textarea>
< input type = " hidden " name = " action " value = " update " />
< input type = " hidden " name = " file " value = " <?php echo $file ?> " />
< br />
< ? php
2004-03-30 00:43:07 +02:00
if ( is_writeable ( $real_file )) {
2004-02-10 16:53:32 +01:00
echo " <input type='submit' name='submit' value='Update File' tabindex='2' /> " ;
2003-05-22 14:12:53 +02:00
} else {
2004-02-10 16:53:32 +01:00
echo " <input type='button' name='oops' value='(You cannot update that file/template: must make it writable, e.g. CHMOD 666)' tabindex='2' /> " ;
2003-05-22 14:12:53 +02:00
}
2003-12-08 02:55:38 +01:00
?>
</ form >
< ? php
2003-05-22 14:12:53 +02:00
} else {
2003-05-23 02:12:22 +02:00
echo '<p>Oops, no such file exists! Double check the name and try again, merci.</p>' ;
2003-05-22 14:12:53 +02:00
}
2003-12-08 02:55:38 +01:00
?>
</ div >
2004-02-05 15:48:55 +01:00
< div class = " wrap " >
2004-02-10 16:53:32 +01:00
< p > To edit a file , type its name here . You can edit any file writable by the server , e . g . CHMOD 766. </ p >
2003-12-08 02:55:38 +01:00
< form name = " file " action = " templates.php " method = " get " >
< input type = " text " name = " file " />
< input type = " submit " name = " submit " class = " search " value = " go " />
</ form >
2004-02-05 15:48:55 +01:00
< p > Common files :</ p >
< ul >
< li >< a href = " templates.php?file=index.php " > Main Index </ a ></ li >
< li >< a href = " templates.php?file=wp-comments.php " > Comments </ a ></ li >
< li >< a href = " templates.php?file=wp-comments-popup.php " > Popup comments </ a ></ li >
< li >< a href = " templates.php?file=.htaccess " >. htaccess ( for rewrite rules ) </ a ></ li >
< li >< a href = " templates.php?file=my-hacks.php " > my - hacks . php </ a ></ li >
</ ul >
< p > Note : of course , you can also edit the files / templates in your text editor of choice and upload them . This online editor is only meant to be used when you don ' t have access to a text editor or FTP client .</ p >
2003-12-08 02:55:38 +01:00
</ div >
< ? php
2003-05-22 14:12:53 +02:00
break ;
}
2003-12-11 01:22:36 +01:00
include ( " admin-footer.php " ) ?>