Forum Activity for @michael

michael
@michael
03/23/17 12:57:58AM
7,826 posts

Genosis & Gallerys


Genosis

from there with images added
sample_gallery.jpg sample_gallery.jpg - 334KB
michael
@michael
03/23/17 12:55:33AM
7,826 posts

Genosis & Gallerys


Genosis

(screenshot). It sounds like you havent enabled the IMAGE GALLERIES module for any Quotas.

After a module is installed it needs to be activated. From there you have to allow certain quotas to be able to use it. The screenshot shows how to turn it on for everybody.

Video Learning: "The Admiin Handbook: Learning Quotas"
https://www.jamroom.net/video-training/81/admin-handbook-learning-quotas

Once its turned on then you will see the GALLERIES tab on the profiles (second screenshot)
activate_image_module.jpg activate_image_module.jpg - 321KB
michael
@michael
03/23/17 12:36:20AM
7,826 posts

Trouble in substituting Vimeo image


Using Jamroom

Steps, in the location where that image comes out the code looks like this:
<img src="https://i.vimeocdn.com/video/625084120_1280x2276.jpg?r=pad" class="iloutline img_scale">
That image is being put there by a template in your skin, a row template. It looks very much like its being passed in to a {jrCore_list} call to output the videos, so the first step is to locate that.


The first guess at where it would be would be the skins, any template named videos.tpl could possibly control the url site.com/videos so check your skin for that template.

If you find its not there, then the next thing to think about is "Is a module controlling the site.com/videos url perhaps...." so check through your ACP to see if any module is responsible for the output on /videos. you will find that module_url on the INFO tab of each module in the ACP.

In your case that module exists at this location:
http://yourstie.com/video/admin/info

The regular thing that will show at the default location for a module is the [I](in the file system via SFTP)[/I]/modules/THAT MODULE/templates/index.tpl

BUT.... that template could be over-ridden by the skins. so if you have a skin template called (module_name)_index.tpl

In your case there isn't that override.

In your case its the jrSeamless module thats providing that list of videos:
{jrSeamless_list modules=$mods order_by="_created numerical_desc" pagebreak=10 page=$_post.p pager=true}

That brings us around to the jrVimeo module. its default way to show items in a list is the item_list.tpl file.

Usually that file would be [I](in the file system via SFTP)[/I]/modules/jrVimeo/templates/item_index.tpl but in this case we DO have a skin over-ride of that template so the file you want to edit is:
/skins/YOUR SKIN/jrVimeo_item_index.tpl (or via the acp at)
ACP -> SKINS -> YOUR SKIN -> TEMPLATES -> jrVimeo_item_index.tpl

We want to add another CSS class to that image so we can target it with some new CSS rules.

So in that file you will see
.....
    {foreach from=$_items item="item"}
    <div class="item">

        <div class="container">
            <div class="row">
                <div class="col2">
                    <div class="block_image">
                        <a href="{$jamroom_url}/{$item.profile_url}/{$murl}/{$item._item_id}/{$item.vimeo_title_url}"><img src="{$item.vimeo_artwork_url}" class="iloutline img_scale"></a>
                    </div>
                </div>
.....

We want to add another class to class="iloutline img_scale", lets make it class="iloutline img_scale video_thumbnail"

We could call it anything, but something currently not being used is probably best.

Then into a css file in your skin add this css
.video_thumbnail {
    height: 85px;
}

Reset the caches and you should be fixed.
michael
@michael
03/22/17 01:30:28PM
7,826 posts

google maps api key in time map


Genosis

got it, thanks. you can delete the attachment now if its private
michael
@michael
03/22/17 12:53:20PM
7,826 posts

google maps api key in time map


Genosis

Thanks, I'll get a dev site setup to see what happens with your gedcom file.
michael
@michael
03/22/17 12:52:13PM
7,826 posts

Bridge Hook to JR data


Jamroom Developers

on the jamroom side of things, the only time the clear text password comes in is during signup form submission or user password update.

If you need it in cleartext then you'd have to listen for those events.
michael
@michael
03/22/17 12:48:12PM
7,826 posts

seeing errors in logs


Using Jamroom

During the maintanence schedule some servers needed a reboot after system updates. For some reason they got hung up and couldnt communicate with jamroom.net during the time they were hung up. The servers were all still working, but things like the marketplace system couldn't get updates.

If you see errors related to communication with jamroom.net thats this.

your second screenshot seams to be related to amazon S3 not being able to back up the Vimeo module. doesnt seam realated. would expect that you can download the vimeo module from jamroom.net if the backup of it didnt work for any reason. See if it happens again next time the S3 backup runs.
michael
@michael
03/22/17 12:43:22PM
7,826 posts

node-fetch client in log


Using Jamroom

not sure about the backup module idea, the idea that jumps to me is, is there any external javascript links to external services.

If something was calling, say, google analytics, then google analytics would know the url. Any other external links that may be sending back that fetch bot to pickup more information for their records perhaps.
michael
@michael
03/22/17 12:08:09AM
7,826 posts

Bridge Hook to JR data


Jamroom Developers

not sure what WHMCS is, but why not just use oneall for both. is there anything that needs to be passed between the two systems.

--edit--
The user passwords are not stored in cleartext in the database, you can not retrieve them. When a user logs in their password is run through a system to get a hash, then that hash is checked against the hash stored in the database. So we can check if the password is correct, but not check what that password IS.
updated by @michael: 03/22/17 12:10:31AM
michael
@michael
03/21/17 11:49:46PM
7,826 posts

Image crop=portrait


Using Jamroom

looks good to me if you've tested it and it works. I'll add it in and see if it gets brians OK.

Thanks Steve.

--edit--
Added it in to jrImage ver 2.0.0b1
Added (int) to force to integer.
updated by @michael: 03/22/17 12:04:11AM
  244