Forum Activity for @michael

michael
@michael
09/11/17 05:44:46PM
7,826 posts

How do I change a form?


Genosis

This is released in the marketplace now.
michael
@michael
09/11/17 04:59:43AM
7,826 posts

Skin design


Installation and Configuration

That's the #content div.

The structure of your page will be something like:
<body>
...
  <div id="wrapper">
....
     <div id="content">
...

and the content will have a max-width on it.

OR.....
it could be the .row class.

One of those will have a max-width of about 1280px on it. change it to max-width of 100% should fix it.

Hard to know without looking at the exact page what the right element is.
michael
@michael
09/10/17 10:30:57PM
7,826 posts

Skin design


Installation and Configuration

Im not sure about the code in relation to the question, just trying to make sure steps to edit the .css file are appearing in your site after you upload them, so..

What you have there are 2 separate systems, the STYLE tab in the ACP and the upload the .css file. If possible I would recommend using just one or the other rather than mixing them. My preference is for the .css files because you have more control.

The way the STYLE tab works is it stores extra CSS in the database that is applied after all the .css files have been processed, so it gets the final word. It also uses the !important tag a lot so if its defined as a rule there, then no changes to the .css files are going to make any difference while there is a STYLE tab rule defined for the same thing.
michael
@michael
09/10/17 06:17:40PM
7,826 posts

Skin design


Installation and Configuration

After making changes to the .css files and re-uploading them, make sure you clear the caches to see the effect:
ACP -> MODULES -> CORE -> SYSTEM CORE -> TOOLS -> RESET CACHE

Alternatively you can run with the caches off, but turning on developer mode:
ACP -> MODULES -> DEVELOPER -> DEVELOPER TOOLS -> GLOBAL CONFIG -> run in developer mode
michael
@michael
09/10/17 05:31:32PM
7,826 posts

uploaded video conversions still not right


Installation and Configuration

the ALLOW_ALL_DOMAINS was just so that I could see the video from its url:
https://www.dreadlockssite.com/uploaded_video/stream/video_file/366/key=PBGskU4Z/file.m4v

Its playing for me here.

--edit--
Its playing for me here in FireFox, but its not playing for me in Edge browser on win10.

I've seen this happen recently and have been looking for the cause, but don't have a reason for why yet.
updated by @michael: 09/10/17 05:34:02PM
michael
@michael
09/10/17 04:35:27AM
7,826 posts

uploaded video conversions still not right


Installation and Configuration

Those URL's look correct, I cant see it playing unless you add the ALLOW_ALL_DOMAINS to
ACP -> MODULES -> CORE -> SYSTEM CORE -> GLOBAL CONFIG -> ALLOWED DOMAINS

The URL looks correct.
michael
@michael
09/09/17 12:52:23AM
7,826 posts

uploaded video conversions still not right


Installation and Configuration

queue latency 763,025 s for conversion of one file? That's too long, something is not right with the setup.

I'll run some conversion tests here, see if I can replicate.
michael
@michael
09/08/17 10:21:38PM
7,826 posts

uploaded video conversions still not right


Installation and Configuration

I'm getting confused on the issue now, are you saying that all videos are in this state (without a player) ? or that only some videos are in this state?

--edit--
ok, seems like the issue is only some videos do not have a player, this one does:
https://www.dreadlockssite.com/soaring-eagle/uploaded_video/46/dreads-update-20-years-003

Have you tried running the video reconvert tool at:
ACP -> MODULES -> PROFILES -> VIDEO -> TOOLS -> VERIFY VIDEO FILES

My guess is the player is not showing up because the format is not available. Might be a good idea to also check the "support flash video" setting at
ACP -> MODULES -> PROFILES -> VIDEO -> GLOBAL CONFIG -> SUPPORT FLASH VIDEO
updated by @michael: 09/08/17 10:27:04PM
michael
@michael
09/08/17 01:20:25AM
7,826 posts

Audio not showing on profile after update.


Installation and Configuration

Working on a default skin?

Thinking maybe something in your templates. First thing that jumps to mind is the default went from "flv" to "m4v" so the
video modules 'item_detail.tpl' page used to have:
{elseif $item.video_file_extension == 'flv'}
but now it has:
{elseif $item.video_file_extension == 'm4v'}
.

Some of the jamroom skins over-ride the default video detail page with a template at:
/skins/(some skins)/jrVideo_item_detail.tpl

So if you've cloned a skin that has that file, it probably needs the update.

Docs: "Using the Compare tool to keep cloned skins up to date"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-admin-handbook/2394/using-the-compare-tool-to-keep-cloned-skins-up-to-date
updated by @michael: 09/08/17 01:20:44AM
michael
@michael
09/08/17 01:16:12AM
7,826 posts

uploaded video conversions still not right


Installation and Configuration

Im seeing the video image, but there is no code in the page for the player.

I searched the source for a file.m4v reference and its not there. Check your templates contain a video player.
  188