Forum Activity for @brian

brian
@brian
05/16/15 07:22:50AM
10,149 posts

profile image


Using Jamroom

Sounds like the file is not being stored correctly on the file system - make sure the web user can write to the data/media directory (and all subdirectories), as well as data/cache

Hope this helps!
brian
@brian
05/16/15 07:20:54AM
10,149 posts

Upgrading YouTube to newest version 1.2.0


Announcements

That's not a problem at all, and is normal - there's no changes on our end needed.

How "queues" work in Jamroom is that a module can create a queue entry which goes into a database table. A request for a page at a later point can "kick off" the worker for that queue entry. So in this case, a visitor to the URL "/ashley" is what started the daily maintenance worker.

It will likely be a different URL every day that kicks off the maintenance work, but that's "how it works".

We store that URL as part of the debug collection so if it is an actual error we have an idea of where to go to try and replicate the issues.

Let me know that helps.
brian
@brian
05/14/15 03:51:53PM
10,149 posts

Disappearing Events


Genosis

When you say the event "disappears" do you mean the funeral event? Or the death or other event?

Thanks!
brian
@brian
05/14/15 03:51:08PM
10,149 posts

Blog Question


Genosis

lisa:
Hi, Brian! It does help! I have 2 genealogy blogs... pretty much names and dates just to get that information "out there" and I have met cousins that way! Do you do the blog on your family site at all? I would be interested in seeing it live before I change stuff up again. :-) Lisa

I don't currently do it - it's easy to turn on/off though, so check it out and if you don't like it you can turn it off :)
brian
@brian
05/14/15 03:50:22PM
10,149 posts

Admin Hover menu


Jamroom Developers

It looks for the opening body tag - make sure your body tag looks like:

<body>

i.e. no "id" or other params.
brian
@brian
05/14/15 02:51:02PM
10,149 posts

Video aspect ratio


Ning To Jamroom

White Agency:
Desktop version is now OK but mobile versions are appearing in 4:3 ratio

I know why this is happening and will be working on a fix for it.

Thanks!
brian
@brian
05/14/15 02:47:26PM
10,149 posts

Blog Question


Genosis

lisa:
Hello! I am not sure what checking the blog box does? Do you have an example somewhere on your site? Thanks! ~ Lisa

If you enable the site blog, then instead of the showing the "Recent" section to the right of the highlighted profiles on your index page, it will show a list of Blog entries. It's designed for genealogists that like to Blog about their ancestors.

Let me know if that helps.

Thanks!
brian
@brian
05/14/15 02:42:28PM
10,149 posts

No sprite_icons, template images


Genosis

All of these are related to file writing:

- the sprite background image is written to data/media/0/0
- updating a module or skin must be able to write to data/cache/jrMarket - the md5 will fail since the file is likely 0 bytes.

Without access to the server I really don't know what the issue would be.
brian
@brian
05/14/15 02:40:14PM
10,149 posts

Photo Pro date and time rendering


Design and Skin Customization

The key you want is called "gallery_image_exif_filedatetime" - it may not exist on every image though, so make sure and check for it - i.e.

{if isset($item.gallery_image_exif_filedatetime)}
Photo taken: {$item.gallery_image_exif_filedatetime|jrCore_format_time}
{/if}

Hope this helps!
brian
@brian
05/14/15 02:32:07PM
10,149 posts

PHP in TPL file?


Design and Skin Customization

Actually you want to use the php tag - i.e.

{php}
PHP goes here
{/php}

http://www.smarty.net/docs/en/language.function.php.tpl
  372