Kirwan - if you see anything, just post it here.
floppy - I'm going to post the contents of you PM here, because I want other people to be able to read what's being discussed so that they can learn for the problems we encountered on your site as well. Generally, if you have to send me email addresses or FTP login information, send it via PM, but everything else - just post it publicly here so others can learn.
see and it is now ok

. Now the post approved automatically.
But I find these problems:

1) On my joomla I have 1154 articles and in the board comment there are 52 argoments
Where is the other article??
2) When the plugin is On in lot of articole articles I have this error:
[phpBB Debug] PHP Notice: in file /home...[redacted].../public_html/libraries/joomla/database/database/mysql.php on line 359: mysql_fetch_row(): supplied argument is not a valid MySQL result resource
[phpBB Debug] PHP Notice: in file /home/...[redacted].../public_html/libraries/joomla/database/database/mysql.php on line 362: mysql_free_result(): supplied argument is not a valid MySQL result resource
3) I have the forum in a subdomain:
forum.filpiweb.com
How can I change the code for the subdomain?
When the plugin is finished I give you the translation to Italian

thanks lot for your work. now it is very very good

Again, thanks for the kind words. Hearing people use it and like it just motivates me to make it better.
As for your problems:
1) Currently, the plugin is disabled, so no more comment threads are being created. The threads are only created when an article is visited by someone, so turning on the plugin does not instantly create a comments thread for every article on your site. You've either have to load every article yourself or just wait and let the spiders crawling your site to basically do it for you over a few days. It's not really a problem, as you don't need a comment thread for an article no one has read.
2) Yes, that is correct -
here is the bug in the bugtracker for it. I hope to fix that shortly as well.
3) Currently, the comment thread link at the bottom of each article is created by joining the directory of the forum, the forum id and the topic id. All are automatically generated, except for the forum directory, which is a plugin parameter. This is just a relative URL, so it takes on the domain that your are currently visiting. When I create the component, I will let you override this. Until then, you can change the three instances of this code:
- Code: Select all
$html .= '<div class="phpbbComments"><a href="' . trim($Commentparams->get('phpBBRootPath', './forum/')) ...
to this:
- Code: Select all
$html .= '<div class="phpbbComments"><a href="INSERT_DOMAIN_OF_FORUM_HERE' . trim($Commentparams->get('phpBBRootPath', './forum/')) ...
Of course, you'll want to replace INSERT_DOMAIN_OF_FORUM_HERE with your forum's domain name - which in your case would be forum.filpiweb.com .
Hopefully I'll have an updated plugin in the next 12 hours. Then it's back to working on the component.
And I thank you again for offering the Italian translation. When I'm ready to release it to the JED, I'll send a list of phrases to translate your way first. Everybody helps just a little bit and things get better. For others reading this, I'll gladly take translations when it's time, or simply feedback on how it's working. Every little bit helps.
Thanks,
Chris