I'm not sure if I can set the category, but it looks like this should be listed under Languages.
Hi Josh,
you're right! I changed the category to languages. It seems that whole plugins feature has changed since I first uploaded the language pack.
Cheers!
I am using elgg 1.7.4 and it works fine uploading and creating members. I tested is with the option "Send email to new users" set to No, but, it did send the email. Does anyone have a fix for this?
Thanks Steve
Email or not Email is controlled by upload_form.php
--------------------------------------------------
/// Display send emails pull down
$options = array('1' => elgg_echo('upload_users:yes'), '0' => elgg_echo('upload_users:no'));
echo '<h4>' . elgg_echo('upload_users:send_email') . '</h4>';
echo elgg_view('input/pulldown', array('options_values' => $options, 'internalname' => 'email'));
echo '<br />';
this is passed to class.UploadUsers.php
-----------------------------------------------
/**
* Set wether to send user accounts on email or not
*
* @param $email boolean
*/
function setEmail($email){
$this->email = $email;
}
//and here --------------------------------------
/// Send an email to the user if this was needed
if($this->email){
$subject = sprintf(elgg_echo('upload_users:email:subject'), $CONFIG->sitename);
$message = sprintf(elgg_echo('upload_users:email:message'), $user['name'], $CONFIG->sitename, $user['username'], $user['password'], $CONFIG->wwwroot);
notify_user($guid, 1, $subject, $message);
}
}
-----------------------------------------------------
It looks to me like if($this->email) is not complete and should be if($this->email =='1')
but that does not work either, any thoughts of what I am overlooking?
Steve
commenting out this in class.UploadUsers.php, stopped the notification
//if($this->email){
//$subject = sprintf(elgg_echo('upload_users:email:subject'), $CONFIG->sitename);
//$message = sprintf(elgg_echo('upload_users:email:message'), $user['name'], $CONFIG->sitename, //$user['username'], $user['password'], $CONFIG->wwwroot);
//notify_user($guid, 1, $subject, $message);
//}
I am using elgg 1.7.4 and it works fine uploading and creating members. I tested is with the option "Send email to new users" set to No, but, it did send the email. Does anyone have a fix for this?
Thanks Steve
Email or not Email is controlled by upload_form.php
--------------------------------------------------
/// Display send emails pull down
$options = array('1' => elgg_echo('upload_users:yes'), '0' => elgg_echo('upload_users:no'));
echo '<h4>' . elgg_echo('upload_users:send_email') . '</h4>';
echo elgg_view('input/pulldown', array('options_values' => $options, 'internalname' => 'email'));
echo '<br />';
this is passed to class.UploadUsers.php
-----------------------------------------------
/**
* Set wether to send user accounts on email or not
*
* @param $email boolean
*/
function setEmail($email){
$this->email = $email;
}
//and here --------------------------------------
/// Send an email to the user if this was needed
if($this->email){
$subject = sprintf(elgg_echo('upload_users:email:subject'), $CONFIG->sitename);
$message = sprintf(elgg_echo('upload_users:email:message'), $user['name'], $CONFIG->sitename, $user['username'], $user['password'], $CONFIG->wwwroot);
notify_user($guid, 1, $subject, $message);
}
}
-----------------------------------------------------
It looks to me like if($this->email) is not complete and should be if($this->email =='1')
but that does not work either, any thoughts of what I am overlooking?
Steve
commenting out this in class.UploadUsers.php, stopped the notification
//if($this->email){
//$subject = sprintf(elgg_echo('upload_users:email:subject'), $CONFIG->sitename);
//$message = sprintf(elgg_echo('upload_users:email:message'), $user['name'], $CONFIG->sitename, //$user['username'], $user['password'], $CONFIG->wwwroot);
//notify_user($guid, 1, $subject, $message);
//}
Hey Jaakko, i have a suggestion for you. Currently one clicks submit and it provides the output on the screen. Can we take that one step forward... and run the output first.. then a Confirm button? This would allow the site administrator to fix his csv file prior to having any issues.
This is a great great plugin. thanks so much.
I will also be attempting antifmradio's idea with flexprofile
Hi Kirb,
sorry for being quite for a while but I've been busy working and enjoying the summer :) I needed to make some changes and enhancements to this plugin for a client and I just uploaded a new version. Here are the most important changes:
V0.2 now includes preview, which is very userful if there are errors in the csv file or if the user chose wrong encoding etc. I hope you like it!
I am using elgg 1.7.4 and it works fine uploading and creating members. I tested is with the option "Send email to new users" set to No, but, it did send the email. Does anyone have a fix for this?
Thanks Steve
Email or not Email is controlled by upload_form.php
--------------------------------------------------
/// Display send emails pull down
$options = array('1' => elgg_echo('upload_users:yes'), '0' => elgg_echo('upload_users:no'));
echo '<h4>' . elgg_echo('upload_users:send_email') . '</h4>';
echo elgg_view('input/pulldown', array('options_values' => $options, 'internalname' => 'email'));
echo '<br />';
this is passed to class.UploadUsers.php
-----------------------------------------------
/**
* Set wether to send user accounts on email or not
*
* @param $email boolean
*/
function setEmail($email){
$this->email = $email;
}
//and here --------------------------------------
/// Send an email to the user if this was needed
if($this->email){
$subject = sprintf(elgg_echo('upload_users:email:subject'), $CONFIG->sitename);
$message = sprintf(elgg_echo('upload_users:email:message'), $user['name'], $CONFIG->sitename, $user['username'], $user['password'], $CONFIG->wwwroot);
notify_user($guid, 1, $subject, $message);
}
}
-----------------------------------------------------
It looks to me like if($this->email) is not complete and should be if($this->email =='1')
but that does not work either, any thoughts of what I am overlooking?
Steve
commenting out this in class.UploadUsers.php, stopped the notification
//if($this->email){
//$subject = sprintf(elgg_echo('upload_users:email:subject'), $CONFIG->sitename);
//$message = sprintf(elgg_echo('upload_users:email:message'), $user['name'], $CONFIG->sitename, //$user['username'], $user['password'], $CONFIG->wwwroot);
//notify_user($guid, 1, $subject, $message);
//}
what do I need to do IF I need to delete the ACTIVE MEMBERS tag? This will be handy when I don't have enough active members on my community. Will wait for your reply.
Thanks for the plugin! I was just about to do the same but I'm glad I didn't have to :) Thanks!
Hey Jaakko, i have a suggestion for you. Currently one clicks submit and it provides the output on the screen. Can we take that one step forward... and run the output first.. then a Confirm button? This would allow the site administrator to fix his csv file prior to having any issues.
This is a great great plugin. thanks so much.
I will also be attempting antifmradio's idea with flexprofile
Hi Kirb,
sorry for being quite for a while but I've been busy working and enjoying the summer :) I needed to make some changes and enhancements to this plugin for a client and I just uploaded a new version. Here are the most important changes:
V0.2 now includes preview, which is very userful if there are errors in the csv file or if the user chose wrong encoding etc. I hope you like it!
Hey Jaakko, i have a suggestion for you. Currently one clicks submit and it provides the output on the screen. Can we take that one step forward... and run the output first.. then a Confirm button? This would allow the site administrator to fix his csv file prior to having any issues.
This is a great great plugin. thanks so much.
I will also be attempting antifmradio's idea with flexprofile
Hi Kirb,
sorry for being quite for a while but I've been busy working and enjoying the summer :) I needed to make some changes and enhancements to this plugin for a client and I just uploaded a new version. Here are the most important changes:
V0.2 now includes preview, which is very userful if there are errors in the csv file or if the user chose wrong encoding etc. I hope you like it!
Hey Jaakko, i have a suggestion for you. Currently one clicks submit and it provides the output on the screen. Can we take that one step forward... and run the output first.. then a Confirm button? This would allow the site administrator to fix his csv file prior to having any issues.
This is a great great plugin. thanks so much.
I will also be attempting antifmradio's idea with flexprofile
Hi Kirb,
sorry for being quite for a while but I've been busy working and enjoying the summer :) I needed to make some changes and enhancements to this plugin for a client and I just uploaded a new version. Here are the most important changes:
V0.2 now includes preview, which is very userful if there are errors in the csv file or if the user chose wrong encoding etc. I hope you like it!
Hey Jaakko, i have a suggestion for you. Currently one clicks submit and it provides the output on the screen. Can we take that one step forward... and run the output first.. then a Confirm button? This would allow the site administrator to fix his csv file prior to having any issues.
This is a great great plugin. thanks so much.
I will also be attempting antifmradio's idea with flexprofile
Hi Kirb,
sorry for being quite for a while but I've been busy working and enjoying the summer :) I needed to make some changes and enhancements to this plugin for a client and I just uploaded a new version. Here are the most important changes:
V0.2 now includes preview, which is very userful if there are errors in the csv file or if the user chose wrong encoding etc. I hope you like it!
Hey Jaakko, i have a suggestion for you. Currently one clicks submit and it provides the output on the screen. Can we take that one step forward... and run the output first.. then a Confirm button? This would allow the site administrator to fix his csv file prior to having any issues.
This is a great great plugin. thanks so much.
I will also be attempting antifmradio's idea with flexprofile
Hi Kirb,
sorry for being quite for a while but I've been busy working and enjoying the summer :) I needed to make some changes and enhancements to this plugin for a client and I just uploaded a new version. Here are the most important changes:
V0.2 now includes preview, which is very userful if there are errors in the csv file or if the user chose wrong encoding etc. I hope you like it!
