Search found 4 matches

by HSorgYves
Thu May 19, 2005 5:17 pm
Forum: Installing EasyMOD
Topic: German translation for EasyMOD 0.1.13 available !
Replies: 0
Views: 1430

German translation for EasyMOD 0.1.13 available !

The German translation for EasyMOD 0.1.13 is now available for download here thanks to Fabian! ;-)
MOD Center
-----------------------
Install MODs
EasyMOD Settings
EasyMOD History
It is also possible to change the administration menus to German.
#
#-----[ OPEN ...
by HSorgYves
Wed May 18, 2005 10:33 pm
Forum: General EM Discussion
Topic: [0.1.13] Option idunno not working in step 1b during install
Replies: 0
Views: 3762

[0.1.13] Option idunno not working in step 1b during install

If you select the option idunno ("I have now modified my file permissions, try rescanning to see if EasyMOD has access.") in step 1b, then the following code will be executed (in easymod_install.php):
else if ( $option == 'idunno')
{
display_step1_substep_b() ;
}
The function display_step1 ...
by HSorgYves
Wed May 18, 2005 10:18 pm
Forum: General EM Discussion
Topic: [0.1.13] Access MKDIR only works 1st time if UNLINK disabled
Replies: 0
Views: 3786

[0.1.13] Access MKDIR only works 1st time if UNLINK disabled

function check_access_mkdir( &$access_msg)
{
global $lang ;

// check for server mkdir access
if ( mkdir( 'EM_test_dir', 0777))
{
// clean up!
rmdir( 'EM_test_dir') ;

$access_msg = 'OK' ;
return true ;
}
else
{
$access_msg = $lang['EM_failed'] ;
return false ;
}
}
The function (in ...
by HSorgYves
Wed May 18, 2005 9:57 pm
Forum: General EM Discussion
Topic: [0.1.13] Access (CHMOD, UNLINK, MKDIR) listed uncorrectly
Replies: 0
Views: 4112

[0.1.13] Access (CHMOD, UNLINK, MKDIR) listed uncorrectly

The original code (in easymod_display_functions.php)
else
{
// check for server chmod access
$access['chmod_access'] = check_access_chmod( $access_msg) ;
$variables['ACCESS_CHMOD'] = ($access['copy_access']) ? $ok_msg &#58 $no_msg ;

// check for server unlink access
$access['unlink_access ...