Forum Activity for @michael

michael
@michael
03/12/15 12:19:00AM
7,832 posts

[bug like report] forum/blog etc image size issues


Ning To Jamroom

in jrElastic there is a css file:
/skins/jrElastic/css/override_mobile.css

Which has mobile specific CSS. Could you do the same with your skin? Put one default px width in for mobiles and another in for non-mobile perhaps.
michael
@michael
03/12/15 12:15:24AM
7,832 posts

Usign Site Builder features instead of default item_list.tpl


Using Jamroom

nope, this is pushing the boundaries. You're creating new ways of building modules that I didn't even think of. ;)

Maybe if Site Builder becomes the standard way then we can think of putting it in, but not yet.

The main issue is that when building modules, usually its the module builder who builds that default layout for the users of the module. You're approaching it from the point of view where you are both the module builder AND the module user.

If a user who is not the module builder went to that page they would expect something to be there for them already, not a page for them to create.
michael
@michael
03/11/15 11:49:01PM
7,832 posts

Usign Site Builder features instead of default item_list.tpl


Using Jamroom

Its actually a great question. I'd never considered using the Site Builder to put a page on a module's index.tpl page, but there's no reason it wouldn't work.

Give it a go. Just 'coz I didn't think of it doesn't mean its wrong. :)

--edit--
Maybe use the module URL as the panel name so it doesnt break if the modules URL is changed.

{jrCore_module_url module="xxLesson" assign="murl"}
{jrPanel_display name=$murl}

updated by @michael: 03/11/15 11:52:15PM
michael
@michael
03/11/15 11:35:22PM
7,832 posts

Site Builder Panels - Image Tab


Using Jamroom

Got it, the URL is wrong. Its pointing to
* site.com/image/img/skin/jrPanel/filename.jpg
but should be
* site.com/image/img/module/jrPanel/filename.jpg

You said its wrong in the skins too? probably the switch is round the wrong way. I'll get it fixed up. Thanks very much.
michael
@michael
03/11/15 11:32:46PM
7,832 posts

Site Builder Panels - Image Tab


Using Jamroom

I might have missed the point. I understood it as "You've uploaded some images via FTP to /modules/jrPanels/img/*" but if that's not the case, what were you trying to achieve?

Ah, I see what you mean. Thanks, I'll go check it out. It does look wrong.
michael
@michael
03/11/15 11:29:16PM
7,832 posts

Ning to Jamroom - Step by Step Link is broken


Ning To Jamroom

I think the biggest plusses of Jamroom hosting are:
* its fast
* You get VIP PREMIUM support included (normally $29/month )
* You get all the modules/skins for free while hosted so its cheaper to get started.

If I'm being totally honest; reasons NOT to use Jamroom hosting:
* You have a very small site with very little traffic. Shared hosting can be had for less than the smallest Jamroom Hosting plans.
* You like doing server administration. You don't need a managed solution.
michael
@michael
03/11/15 11:24:50PM
7,832 posts

Estimating hosting costs


Jamroom Hosting

Go with the smallest one to start with, its easy to upgrade later if you need it. The smallest one has 24Gig of space so it should be plenty.

Download your Ning archive to your PC and see how big that is, if its under 24Gig, then the smallest will work.

Best thing about that is you get all the modules for free with the Jamroom Hosting, so you don't need to buy any of them.

So to get that underway, purchase the hosting from the HOSTING button on your profile.:
* https://www.jamroom.net/restmin/hosting/dashboard

and pick whichever one of these corresponds closely to the size of your Ning Archive:
* https://www.jamroom.net/ning-to-jamroom/serviceshop

and we'll get that sorted out for you. :)
michael
@michael
03/11/15 11:19:14PM
7,832 posts

[bug like report] forum/blog etc image size issues


Ning To Jamroom

You could do the same inside the mobile view to limit it to less. There should be a mobile specific .css sheet for most skins. Would that work?

If it wasn't done via CSS how wide would you like it? 100%?
michael
@michael
03/11/15 11:03:40PM
7,832 posts

Ning to Jamroom - Step by Step Link is broken


Ning To Jamroom

It is too, sorry about that. Looks like the correct location is supposed to be the docs page:

https://www.jamroom.net/ning-to-jamroom/documentation

Installing Jamroom is pretty straight forward. If your hosting company has Softaculous then its even simpler.

There is a video of installing via softaculous here:
Easy Install Jamroom 5 CMS into cPanel server

And if your host doesnt have that, then the basic steps are:
* download the jamroom package from here: https://www.jamroom.net/networkmarket/core_download/jamroom-core-latest.zip
* un-zip that and upload it via FTP to your server.
* load the url in a web-browser
* (on your server) create a database
* enter the database details

and that should get you up and running. The first user you create is the admin user. From there you can install Ning stuff.

I'll get that link fixed up. Let us know if you have trouble anywhere or any questions. :)
michael
@michael
03/11/15 10:10:40PM
7,832 posts

[bug like report] forum/blog etc image size issues


Ning To Jamroom

Those images are not going through the image processing system, so there's not much your Jamroom can do to take control of them.

You could put a CSS limiter in there to bring them down to size.
.forum_post_text img{
  max-width:500px;
}
should do it.

That's not going to help the processing time though as each image will still be massive. A better solution would be to get those images being passed through Jamroom's image functions to resize and cache them.

I'll take a look and see if that's possible.
  570