3
BTW, modules can be built to support renaming... this will usually be mentioned in the module's readme, but you can check by looking in the top few lines of xoops_version.php for something like this:
(the important part regarding renaming is the first line, second part makes sure you have not renamed the directory with bad characters and may not be there.)
$mydirname = basename( dirname( __FILE__ ) ) ;
if( ! preg_match( '/^(D+)(d*)$/' , $mydirname ) ) echo ( "invalid dirname: " . htmlspecialchars( $mydirname ) ) ;
the actual variable name (in above example $mydirname) may not be the same.
IF you see this code, that means you can rename the module simply by changing the folder name before installing the module.
HTH