Forum Activity for @michael

michael
@michael
05/20/16 04:43:52PM
7,832 posts

Free SSL Certificates


Installation and Configuration

We use lets encrypt too, more info in this blog post:

"Jamroom.net Redesign + New Hosting Features"
https://www.jamroom.net/the-jamroom-network/blog/76/jamroomnet-redesign-new-hosting-features
michael
@michael
05/19/16 06:53:14PM
7,832 posts

Former Ning CEO Speaks...


Ning To Jamroom

my offer of $10 was rejected for being too low. It appears the lowest they would consider is $500.
screenshot_ning_sale.jpg screenshot_ning_sale.jpg - 111KB
michael
@michael
05/18/16 08:00:08PM
7,832 posts

New Stuff Forum


Suggestions

JR4 had one forum and developers got a small section of it. JR5 made all developers equal with the core developers, they each have their own full forum.

Feels like what's being asked for is a way to see the other developers forums too.

Thinking that the solution might be a NEWEST POSTS section for all forums so that there is a central location to see all activity on the site without needing to visit the forums individually.

Current flow seams to be:
* user visits 'The Jamroom Network' 's profile forum.
* wants to know what is new on other profiles.

The logical solution seams to be "Go visit the other profiles". While the objection feels like it is "but i want a central location to see whats new."
michael
@michael
05/18/16 06:43:11PM
7,832 posts

Media Url Scanner


Using Jamroom

fixed in jrYouTube 1.4.0. If you want the fix before that module is released, update jrYouTube/include.php function to this:
/**
 * Extract a YouTube ID from a string
 * @param $str string YouTube ID/URL
 * @return bool|string
 */
function jrYouTube_extract_id($str)
{ if (strlen($str) === 11 && !preg_match('/[^a-zA-Z0-9_-]/', $str)) { return $str; } // http://youtu.be/VXWF_yi5WB0 if (strpos($str, 'http://youtu.be/') === 0) { $id = trim(substr($str, 16)); if (strlen($id) === 11) { return $id; } } // https://youtu.be/VXWF_yi5WB0 if (strpos($str, 'https://youtu.be/') === 0) { $id = trim(substr($str, 17)); if (strlen($id) === 11) { return $id; } } // fall through parse_str(parse_url($str, PHP_URL_QUERY), $_tmp); if (isset($_tmp['v']) && strlen($_tmp['v']) === 11 && !preg_match('/[^a-zA-Z0-9_-]/', $_tmp['v'])) { return $_tmp['v']; } return false; }
michael
@michael
05/18/16 06:36:37PM
7,832 posts

Media Url Scanner


Using Jamroom

Ok, got it now, your getting urls like this from somewhere:
https://youtu.be/yMmrDpsYr0s

Thats failing. Will be fixed in the next version of jrYouTube.

Thanks.
michael
@michael
05/18/16 06:26:34PM
7,832 posts

Media Url Scanner


Using Jamroom

following the steps in the first post, I turned on the jrUrlScan module.

Went to 'Global Config' and checked the 'Expanded Media' (because I like that more) :)

The "Active Text Formatters" were already set to allow 'Convert Embeded Tags'. Just to be sure, I clicked the "Apply to all quotas" anyhow and saved.

Next step, I went to a blog post, and updated. Found a random youtube video and copied its url:
https://www.youtube.com/watch?v=yMmrDpsYr0s
into the blog post.

EXPECTED:
That if there was a bug, the bug would be visible.

ACTUAL:
The video displayed in its converted state and was able to be watched.
Best Parkour and Freerunning
michael
@michael
05/18/16 05:40:17PM
7,832 posts

Media Url Scanner


Using Jamroom

I've been playing with the youtube module over the last couple of days and haven't noticed any issues.

I'll try to setup as per steps here and see if I can recreate so its fixed with the next release. Probably able to figure out some steps from the conversation, but if you have some exact steps...... I like steps :)
michael
@michael
05/16/16 09:59:31PM
7,832 posts

New Stuff Forum


Suggestions

yeah, me too. I hardly ever go to my profile because there is hardly ever anything new posted in the timeline. chicken-egg.

most common places i view are the NEW POSTS thread and the tickets and support questions. After that, probably the docs.
michael
@michael
05/16/16 06:04:36PM
7,832 posts

New Stuff Forum


Suggestions

Caught your meaning, just wondering if you posting an actual timeline update might get the use of the timeline more active here on jamroom.net.

If you write an actual post on the timeline, others can reply to it. Its not used much here.
michael
@michael
05/16/16 04:29:38PM
7,832 posts

Documentation module images out of div


Using Jamroom

Thanks, probably needs a 'img_scale' class added to it, we'll check it out.
  397