Forum Activity for @michael

michael
@michael
06/05/17 07:56:01PM
7,832 posts

Thai date show wrong.


Using Jamroom

Looks like your server does not have the thai language pack in stalled. I don't know what the correct language code is for thai, do you?

For turkish the correct code is 'tr_TR' so to add that language pack to a server you would login via SSH as 'root' and do
locale-gen tr_TR
locale-gen tr_TR.UTF-8
then
update-locale

Ask your hosting company to add thai local to your server.
michael
@michael
06/05/17 07:20:35AM
7,832 posts

ffmpeg issue revisited (nearer a solution)


Using Jamroom

maybe not use php-cli (cgi) and run it as mod_ruid2 as is outlined in the guide:

Guide: "Configuring apache with mod ruid2"
https://www.jamroom.net/brian/documentation/guides/1202/configuring-apache-with-mod-ruid2
michael
@michael
06/05/17 03:47:42AM
7,832 posts

bug report disqus no longer works in forums


Using Jamroom

You used this code:
{jrDisqus_comments disqus_identifier="jrBlog_`$item._item_id`"}
The update to the module should not effect you at all.
michael
@michael
06/05/17 03:09:49AM
7,832 posts

help- what is the Timeline "Quick share" feature?


Using Jamroom

Thanks Steve, should be able to now. I think the issue was my timezone date selector vs server timezone when to publish set it to show tomorrow. dated it yesterday now it seems to be there I think.
michael
@michael
06/05/17 12:00:05AM
7,832 posts

bug report disqus no longer works in forums


Using Jamroom

If you've added that, it should still be working. The problem that was fixed was that disqus got added as a feature to every item_detail.tpl page with
 {jrDisqus_comments disqus_identifier="jrDisquss_`$item._item_id`"}
so a blog of item_id 599 and a forum post of item_id 599 would be linked because they both had the disqus identifier of "jrDisqus_599".

Your code look correct.
michael
@michael
06/04/17 11:01:50PM
7,832 posts

help- what is the Timeline "Quick share" feature?


Using Jamroom

Nobody can post on someone elses timeline. They can post on their own timeline and @stumelia mention the person.

I could post on my own timeline:
* "Hi @strumelia, hows it going?"
and that would appear to you in your MENTIONS section ( https://www.jamroom.net/strumelia/timeline/mentions )

Does that sound like what you are seeing?
michael
@michael
06/04/17 10:42:14PM
7,832 posts

help- what is the Timeline "Quick share" feature?


Using Jamroom

Seems like an important question, so I wrote a blog post about it here:

Michaels Blog: "What is the Quick Share Feature"
https://www.jamroom.net/michael/blog/94/what-is-the-timeline-quick-share-feature
michael
@michael
06/04/17 09:55:32PM
7,832 posts

bug report disqus no longer works in forums


Using Jamroom

disqus on forums? How are you setting that one up.

There was an update to the jrDisqus module recently in 1.1.0 if you're using that. What version are you using?
michael
@michael
06/04/17 09:50:28PM
7,832 posts

Forum Replies Not Working?


Using Jamroom

Is that a question or reporting an issue?

I've just tried here on the beta versions (which I believe you are on) and with caching enabled the forum comments are being output immediately for others to view.

Need setup instructions to investigate further in for this one zach.
michael
@michael
06/03/17 11:42:59PM
7,832 posts

Newsletters not working anymore?


Using Jamroom

That's the issue then. In the betas there's a lot of new queue improvements. The newsletter module needed an update to make it work with it.

If you're in a rush for the fix, its:
/modules/jrNewsLetter/include.php around line 120 ish
where you see:
                    jrCore_queue_create('jrNewsLetter', 'send_newsletter', $_queue, $delay);
change it to:
                    unset($_queue['queue_id']);
                    jrCore_queue_create('jrNewsLetter', 'send_newsletter', $_queue, $delay);

There are 2 locations.
  220