Hallo beo217,
deine admin_style.php ist ziemlich verstümmelt.
öffne die datei auf deinem Rechner und schau ob du dort in der Zeile 761 folgendes findest:
Code: Alles auswählen
"MESSAGE_TITLE" => $lang['ExPORT 84,56,106,176,130,27']
Wenn dort aber
steht, dann laden deine FTP-Programme die dateien nicht richtig hoch.
Steht in der Datei bei dir auf dem Rechner aber
Code: Alles auswählen
"MESSAGE_TITLE" => $lang['ExPORT 84,56,106,176,130,27']
mußt du dies mit
Code: Alles auswählen
"MESSAGE_TITLE" => $lang['Export_themes'],
"MESSAGE_TEXT" => $lang['Download_theme_cfg'] . "<br /><br />" . $download_form)
);
$template->pparse('body');
exit();
}
$result = @fputs($fp, $theme_data, strlen($theme_data));
fclose($fp);
$message = $lang['Theme_info_saved'] . "<br /><br />" . sprintf($lang['Click_return_styleadmin'], "<a href=\"" . append_sid("admin_styles.$phpEx") . "\">", "</a>") . "<br /><br />" . sprintf($lang['Click_return_admin_index'], "<a href=\"" . append_sid("index.$phpEx?pane=right") . "\">", "</a>");
message_die(GENERAL_MESSAGE, $message);
}
else if($HTTP_POST_VARS['send_file'])
{
header("Content-Type: text/x-delimtext; name=\"theme_info.cfg\"");
header("Content-disposition: attachment; filename=theme_info.cfg");
echo stripslashes($HTTP_POST_VARS['theme_info']);
}
else
{
$template->set_filenames(array(
"body" => "admin/styles_exporter.tpl")
);
if( $dir = @opendir($phpbb_root_path . 'templates/') )
{
$s_template_select = '<select name="export_template">';
while( $file = @readdir($dir) )
{
if( !is_file(phpbb_realpath($phpbb_root_path . 'templates/' . $file)) && !is_link(phpbb_realpath($phpbb_root_path . 'templates/' .$file)) && $file != "." && $file != ".." && $file != "CVS" )
{
$s_template_select .= '<option value="' . $file . '">' . $file . "</option>\n";
}
}
$s_template_select .= '</select>';
}
else
ersetzen.
danach suchst du das erste
und löscht alles was danach kommt, dass gehört dort nicht hin.
Gruß Takoda
PS: es gibt aber auch noch die möglichkeit, dir das ganze Packet neu runter zu laden und neu zu entpacken. Dann nimmst du die neu entpackte datei und versuchst es damit.