post #4 of this topic
Resolved
Thanks for all
You are not logged in. Please login or register.
PunBB Forums → Posts by pascal63
Pages 1
post #4 of this topic
Resolved
Thanks for all
And you can delete the English directory without bugs
Yes, you can delete it.
Resolved
I had this errormessage because I delete the English directory
For the other Admin : Never delete the English : copy your lang in it or change code
like this
in profile.php
find
// Make sure we got a valid language string
if (isset($form['language']))
{
$form['language'] = preg_replace('#[\.\\\/]#', '', $form['language']);
if (!file_exists(PUN_ROOT.'lang/'.$form['language'].'/common.php'))
message($lang_common['Bad request']);
}
replace by :
// Make sure we got a valid language string
//Modif Nico because bug when you don't have lang list... :/
if(empty($form['language']))
$form['language'] = 'YOURLANGUAGE';
$form['language'] = preg_replace('#[\.\\\/]#', '', $form['language']);
if (!file_exists(PUN_ROOT.'lang/'.$form['language'].'/common.php'))
message($lang_common['Bad request']);
// choose your language //
thanks Nico and his post http://www.punbb.fr/forums/viewtopic.ph … 511#p10511
The name of the member don't change
and I have this error message :
Bad request. The link you followed is incorrect or outdated.
header.php
on Top
<?php require("yourheader.php"); ?>
for an example : see my website
(sorry for my english)
I'm administrator of a punBB forum but I can't rename the login of my users
I explain to you
I have the possibility to change (normal : i'm admin)
But when I validate
I have an errormessage (not normal)
and the user isn't rename
How can I change it ?
or what is the file who have an error (because i did any modifications in my forum)
Pages 1
PunBB Forums → Posts by pascal63
Powered by PunBB, supported by Informer Technologies, Inc.