2.5.x - 90% complete, want to beta it ?
From Another Web Company
 Viewed 60899 times, With a total of 334 Posts
| Have a suggestion, improvement, change or non-beta Forum Entension bug ? Please add them to the todo list
|
|
|
|
|
| 1:43:01 AM - Saturday 14th, November 2009 |
|
TDeeming, what operating system are you running on ?
And the following is correct for your live site
MW 1.9, PHP 5.253 and MYSQL 5.041
Tell me what wiki version you want me to trouble shoot for, so i know what to install.
_
|
|
~ What was once an opinion, became a fact, to be later proven wrong ~
|
|
|
|
Clicked A Few Times
Wiki Edits: 0
Threads 0
Posts 8
|
|
| 6:32:30 AM - Monday 16th, November 2009 |
|
Quote:AWC Nov 14th 6:35 amTDeeming, what operating system are you running on ?
And the following is correct for your live site
MW 1.9, PHP 5.253 and MYSQL 5.041
Tell me what wiki version you want me to trouble shoot for, so i know what to install.
_
Hi and thanks for the help.
The OS is XP Professional SP3.
MW (1.93)
PHP 5.2.1 (apace2handler)
MySQL 5.0.33
Standard Mail and messaging uses $wgSMTP
$wgSMTP = array(
'host' => "mail.example.com", //could also be an IP address
'IDHost' => "example.com",
'port' => 25,
'auth' => true,
'username' => "my_user_name",
'password' => "my_password"
);
For a special extension called MassMailer I also have Mercury Mail running.
I am wary about upgrading the wiki to a newer version as I am using many extensions... and the functionality of them is not always guaranteed with newer versions. So if possible, please target for MW 1.93.
Thanks,
Tim
|
|
|
|
|
|
|
| 7:33:32 AM - Monday 16th, November 2009 |
|
That might be a problem with the forum. A while back someone posted a problem with blank pages and Windows XP (IIS 6). At the time i tried to trouble shoot it but could not find a solution.
Are you using IIS 6 or Apache as your http server ?
To be completely honest with you, and i do not mean to be rude with this, but XP-pro and IIS6 are not gonna be a top priority for the forum extension. Theres just too few people using that combo.
I'll look into $wgSMTP (thanks for the link) and see how it works and try and work something out for that.
_
|
|
|
|
|
|
Clicked A Few Times
Wiki Edits: 0
Threads 0
Posts 8
|
|
|
|
|
|
|
|
| 6:14:21 AM - Wednesday 18th, November 2009 |
|
Quote:TDeeming Nov 13th 5:18 am
- No email notification when subscribed to a thread... but also no warning about failure. The informaion is just entered into the email list.
- When I try to send a PM the following message is displayed.
- Catchable fatal error: Object of class MailAddress could not be converted to string in C:\Programme\xampp\htdocs\wiki\includes\UserMailer.php on line 46
Just tested that under linux, apache, wiki 1.9.6, forum 2.5.x and received the same error.
Try the following edits and post back the results if you have time.
Edit (make a back-up first ) the following file: /extensions/awc/forums/send_mail.php
Find foreach($email_addresses as $email){
$to_address[] = new MailAddress( $emai );
}
and replace it with: foreach($email_addresses as $email){
$addr = $email->address;
$name = $email->name;
$to_address[] = new MailAddress( $addr, $name );
}
Find and delete:
if ( is_array( $to ) ) {
wfDebug( __METHOD__.': sending mail to ' . implode( ',', $to ) . "\n" );
} else {
wfDebug( __METHOD__.': sending mail to ' . implode( ',', array( $to->toString() ) ) . "\n" );
}
Have not had time to look into the other bugs, will do soon.
_
|
|
|
|
|
|
Clicked A Few Times
Wiki Edits: 0
Threads 0
Posts 8
|
|
| 8:31:07 AM - Wednesday 18th, November 2009 |
|
Made changes as you suggested
|
Hi,
I made the changes you posted above.
- I no longer get an Error mesage when I send a PM...
- Question: Are PM's sent to the Users email address?
Maybe I misunderstood that part because of the error message. Anyway, no mail was recieved. So I just tried on this forum... to send myself a PM and I also didn't receive an email... but it is entered into the MemCP as an unread PM... so I am assuming that this is the proper operation... which is fine.
- I still do not get an email when subscribed threads are changed... but then you may not have addressed that matter yet.
Anyways... thanks for your efforts 
Tim
|
|
|
|
|
|
|
| 3:23:06 AM - Thursday 19th, November 2009 |
|
Quote:TDeeming Nov 18th 7:23 am: I still do not get an email when subscribed threads are changed... but then you may not have addressed that matter yet.
Replace that last edit with...
#
foreach($email_addresses as $email){
$addr = $email->address;
$name = $email->name;
if($addr == ''){
$addr = $email;
$name = '';
}
$to_address[] = new MailAddress( $addr, $name );
}
|
|
|
|
|
|
Clicked A Few Times
Wiki Edits: 0
Threads 0
Posts 8
|
|
| 5:21:07 AM - Thursday 19th, November 2009 |
|
No change!
|
I made the changes... but still no emails.
What do you mean by valid "Wiki Email"?
|
|
|
|
|
|
|
| 2:07:38 AM - Sunday 22nd, November 2009 |
|
The forum sends emails to people using the email address they have saved in there wiki-preferences.
So if a person does not have a working email address in their wiki-preferences, then the forum will not be able to send emails to them. The forum does a check, if the person does not have an email, the forum will ignore and move on.
_
|
|
|
|
|
|
Clicked A Few Times
Wiki Edits: 0
Threads 0
Posts 8
|
|
| 5:39:01 AM - Monday 23rd, November 2009 |
|
Quote:AWC Nov 22nd 6:59 amThe forum sends emails to people using the email address they have saved in there wiki-preferences.
So if a person does not have a working email address in their wiki-preferences, then the forum will not be able to send emails to them. The forum does a check, if the person does not have an email, the forum will ignore and move on.
_
Okay, this being the case... all users have valid addresses... and they are being notified by email when watched wiki pages are changed. However it does not currently work with the AWC Forum software.
Tim
|
|
|
|
|
|
Just Got Here
Wiki Edits: 0
Threads 0
Posts 2
|
|
| 9:27:41 AM - Tuesday 01st, December 2009 |
|
Hi all,
I just upgraded from the latest stable to 2.5.7. This version is so muuuccchhhh better Thank you. Just 2 questions:
- Is it possible to download 2.5.8 somewhere? Or is it not released yet?
- How to display the unread threads in bold (like in phpBB2)? Is this possible? Any CSS style for this?
Thank you.
|
|
|
|
|
|
|
| 2:00:50 AM - Wednesday 02nd, December 2009 |
|
Thanks glad you like it
- Theres not a 2.5.8 public release, still working on it and it wont be ready for a while.
- Nope, no setting like that (if you want, you can add it to the "todo list" and ill try and work it in), just the indicator at the begining of the thread title. You can change that in the AdminCP Lang section to something else or even an image you have stored on your wiki (you can use wiki syntax in the land section). If you fell like changing the forums code, look in the /forums/includes/thread_list_tools.php and find the function new_thread_check($tID, $t_lastdate){ function. Thats where the "check" is.
_
|
|
Edited On 2:02:04 AM - Wednesday 02nd, December 2009 by AWC
|
|
|
|
|
|
Just Got Here
Wiki Edits: 0
Threads 0
Posts 2
|
|
| 6:13:13 AM - Wednesday 02nd, December 2009 |
|
Thank you.
I can live with the AdminCP Lang solution Thanks again and keep up the good work
|
|
|
|
|
|
|
| 2:42:54 AM - Saturday 19th, December 2009 |
|
| TDeeming are you still having problems with the email ?
|
|
|
|
|
|
Gets Around
Wiki Edits: 29
Threads 22
Posts 170
|
|
| 8:25:17 AM - Wednesday 23rd, December 2009 |
|
Hello,
when sombody write a space letter before a smileycode at the first letter in the line:
|emotion_tag|/extensions/awc/forums/images/emotions/default/wub.gif|emotion_tag|_end|
The smiley is rendering wrong ...
Greets,
freggern
|
|
| Freggers Wiki (German)
|
|
|
|
Gets Around
Wiki Edits: 4
Threads 28
Posts 161
|
|
| 4:03:20 PM - Friday 19th, March 2010 |
|
@TDeeming
I can attest that 2.5.7 works fine with emails. However, I'm overriding the default logic but the handling is still there.
You know that only after uses "visit" the thread will the email be triggered again? If a uses doesnt view the thread, said user will never get an email
My 2-cents
|
|
|
AWC's:
2.6.0 MediaWiki - Stand Alone Forum Extension Forum theme style by: AWC
|